Hey Folks,
I recently did a Tuya Cloudcutter for a RGB Smart Bulb and installed ESPHome firmware… everything went smooth and the Bulb works fine and displays all colors, however when the Bulb is in Off state, it randomly starts flickering with around 5-10% brightness…
How do I resolve this issue? is there any settings in yaml that needs to be added ? pls help
Probably, but we can’t help you as you didn’t even bother to provide your yaml
Check (read) this thread on how to help us help you
Before we begin…
This forum is not a helpdesk
The people here don’t work for Home Assistant, that’s an open source project. We are volunteering our free time to help others. Not all topics may get an answer, never mind one that helps you solve your problem.
[image]
This also isn’t a general home automation forum, this is a forum for Home Assistant and things related to it. Any question about Home Assistant, and about using things with Home Assistant, is welcome here. We can’t help you with e…
What could be thing that zero isn’t zero in your configuration maybe (zero_means_zero
)
Yaml file
esphome:
name: smart-bulb-syska
friendly_name: Smart-Bulb-Syska
bk72xx:
board: generic-bk7231n-qfn32-tuya
logger:
web_server:
captive_portal:
mdns:
api:
ota:
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
ap:
text_sensor:
platform: libretiny
version:
name: LibreTiny Version
bp5758d:
clock_pin: P8
data_pin: P7
output:
platform: bp5758d
id: output_red
channel: 5
current: 5
platform: bp5758d
id: output_green
channel: 3
current: 5
platform: bp5758d
id: output_blue
channel: 4
current: 5
platform: bp5758d
id: output_cold
channel: 2
current: 22
platform: bp5758d
id: output_warm
channel: 1
current: 22
light:
platform: rgbww
id: light_rgbww
name: Light
color_interlock: true
cold_white_color_temperature: 6500 K
warm_white_color_temperature: 2700 K
red: output_red
green: output_green
blue: output_blue
cold_white: output_cold
warm_white: output_warm
Check the docs here
and play around with min_power
and zero_means_zero
so that your lights stay off
1 Like