devices.esphome.io
Feit BPA800/RGBW/AG/2(P)
Feit BPA800/RGBW/AG/2(P)
Device Type: lightElectrical Standard: usBoard: esp8266
Another Costco Variant. Do not confuse with Feit BPA800/RGBW/AG/2 as they use different GPIO pin numbers.
Be warned that you will have to disassemble the device to flash the firmware if it is newer than about March 2020. Tuya changed their firmware such that tuya-convert no longer works as before.
substitutions: comment: "...any comment, like the device hostname..." devicename: my_device
esphome: name: $devicename comment: "${comment}"
esp8266: board: esp01_1m # OTA flashingota: - platform: esphome
wifi: # Your Wifi network details # Enable fallback hotspot in case wifi connection fails ap:
# Enabling the logging componentlogger:
# Enable Home Assistant APIapi:
# Enable the captive portalcaptive_portal:
sm16716: data_pin: GPIO12 clock_pin: GPIO14 num_channels: 3 num_chips: 1
output: - platform: sm16716 id: output_red channel: 2 power_supply: rgb_power - platform: sm16716 id: output_green channel: 1 power_supply: rgb_power - platform: sm16716 id: output_blue channel: 0 power_supply: rgb_power - platform: esp8266_pwm id: output_warm_white pin: GPIO04 - platform: esp8266_pwm id: output_cold_white pin: GPIO05
light: - platform: rgbww name: "${devicename}" red: output_red green: output_green blue: output_blue cold_white: output_cold_white warm_white: output_warm_white cold_white_color_temperature: 6500 K warm_white_color_temperature: 2700 K color_interlock: true gamma_correct: 0.0
power_supply: - id: rgb_power pin: GPIO13