So basing my ESPHome (via Home-Assistant) configuration on this thread https://www.athom.tech/forum/light/e27-15w-rgbcct-bulb-esphome-config but no matter what, I can't get the Cool White LEDs to come on. I only get RGB and Warm White. I really don't understand it, the 7W config came together quick and easy.
My config is
substitutions:
devicename: dining_light_1
upper_devicename: Dining Light 1
esphome:
name: $devicename
platform: ESP8266
board: esp01_1m
wifi:
ssid: "<SSID>"
password: "<PW>"
ap:
ssid: "${devicename} AP"
password: "<PW>"
# Enable logging to ESPHome
logger:
# Disable logging to serial
baud_rate: 0
# Enable Home Assistant API
api:
password: "<PW>"
# Setup OTA password
ota:
password: "<PW>"
output:
- platform: esp8266_pwm
id: output_red
pin: GPIO4
- platform: esp8266_pwm
id: output_green
pin: GPIO12
- platform: esp8266_pwm
id: output_blue
pin: GPIO14
- platform: esp8266_pwm
id: output_warm_white
pin: GPIO5
- platform: esp8266_pwm
id: output_cold_white
pin: GPIO13
light:
- platform: rgbww
name: "${upper_devicename}"
red: output_red
green: output_green
blue: output_blue
cold_white: output_cold_white
warm_white: output_warm_white
cold_white_color_temperature: 6000 K
warm_white_color_temperature: 3000 K
restore_mode: ALWAYS_ON
color_interlock: true
Yes, you can find more information here
https://github.com/jesserockz/athom-configs