devices.esphome.io

Teckin SB50

Teckin SB50

Device Type: light
Electrical Standard: us
Board: esp8266

General Notes

On older firmwares this bulb can use tuya-convert to flash ESPHome.

GPIO Pinout

PinFunction
GPIO14Red Channel
GPIO12Green Channel
GPIO13Blue Channel
GPIO4White Channel

Basic Configuration

esphome:
name: teckin_sb50
esp8266:
board: esp01_1m
# OTA flashing
ota:
- platform: esphome
wifi: # Your Wifi network details
# Enable fallback hotspot in case wifi connection fails
ap:
# Enabling the logging component
logger:
baud_rate: 0
# Enable Home Assistant API
api:
# Enable the captive portal
captive_portal:
# Define output pins
output:
- 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 entity
light:
- platform: rgbw
name: $devicename
id: $devicename
red: output_red
green: output_green
blue: output_blue
white: output_white
Edit this page on GitHub