devices.esphome.io
Teckin SB50
Teckin SB50
Device Type: lightElectrical Standard: usBoard: esp8266
General Notes
On older firmwares this bulb can use tuya-convert to flash ESPHome.
GPIO Pinout
| Pin | Function |
|---|---|
| GPIO14 | Red Channel |
| GPIO12 | Green Channel |
| GPIO13 | Blue Channel |
| GPIO4 | White Channel |
Basic Configuration
esphome: name: teckin_sb50
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: baud_rate: 0
# Enable Home Assistant APIapi:
# Enable the captive portalcaptive_portal:
# Define output pinsoutput: - platform: esp8266_pwm id: output_red pin: GPIO14 - platform: esp8266_pwm id: output_green pin: GPIO12 - platform: esp8266_pwm id: output_blue pin: GPIO13 - platform: esp8266_pwm id: output_white pin: GPIO4
# Define a light entitylight: - platform: rgbw name: $devicename id: $devicename red: output_red green: output_green blue: output_blue white: output_white