devices.esphome.io

Lenovo 800lm RGBCCT Bulb

Lenovo 800lm RGBCCT Bulb

Device Type: light
Electrical Standard: global
Board: esp8266

Lenovo bulb packaging view Lenovo 800 lumen RGB + CCT bulb.

Flashing

This plug can be converted using tuya-convert to flash ESPHome (as of June 2020).

Temperature

Range temperature from 2700 Kelvin to 6500 Kelvin. Information extracted from product description.

GPIO Pinout

PinFunction
GPIO04Red
GPIO12Green
GPIO14Blue
GPIO05White Brightness
GPIO13White Temperature

Basic Configuration

substitutions:
device_name: "lenovo-800lm-rgbcct"
friendly_name: "Lenovo 800lm RGBCCT"
esphome:
name: ${device_name}
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:
# Enable Home Assistant API
api:
# Enable the captive portal
captive_portal:
output:
- platform: esp8266_pwm
id: output_r
pin: GPIO4
- platform: esp8266_pwm
pin: GPIO12
id: output_g
- platform: esp8266_pwm
pin: GPIO14
id: output_b
- platform: esp8266_pwm
id: output_brightness
pin: GPIO5
- platform: esp8266_pwm
pin:
number: GPIO13
inverted: true
id: output_temp
light:
- platform: rgbct
color_interlock: true
name: ${friendly_name}
red: output_r
green: output_g
blue: output_b
white_brightness: output_brightness
color_temperature: output_temp
cold_white_color_temperature: 6500 K
warm_white_color_temperature: 2700 K
Edit this page on GitHub