You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
802 B
43 lines
802 B
#BlitzWolf BW-LT21 |
|
#https://www.banggood.com/BlitzWolf-BW-LT21-RGBWW-10W-E27-APP-Smart-LED-Light-Bulb-Work-With-Amazon-Alexa-Google-Assistant-AC100-240V-p-1551059.html?rmmds=myorder&cur_warehouse=CN |
|
|
|
esphome: |
|
name: lounge_celieng_light |
|
platform: ESP8266 |
|
board: esp8285 |
|
|
|
wifi: |
|
ssid: !secret wifi-ssid |
|
password: !secret wifi-password |
|
|
|
logger: |
|
api: |
|
ota: |
|
|
|
# Device Specific Config |
|
|
|
light: |
|
- platform: rgbw |
|
id: celing |
|
name: "Lounge Celing" |
|
color_interlock: true |
|
red: Red |
|
green: Green |
|
blue: Blue |
|
white: White |
|
restore_mode: ALWAYS_ON |
|
|
|
output: |
|
- platform: esp8266_pwm |
|
pin: GPIO14 |
|
id: Red |
|
- platform: esp8266_pwm |
|
pin: GPIO12 |
|
id: Green |
|
- platform: esp8266_pwm |
|
pin: GPIO05 |
|
id: Blue |
|
- platform: esp8266_pwm |
|
pin: GPIO15 |
|
id: White |
|
|
|
|