esphome / issues

Issue Tracker for ESPHome
https://esphome.io/
290 stars 34 forks source link

RGBW bulbs state OFF but still are DIM. #5302

Closed ThrashinVictim closed 9 months ago

ThrashinVictim commented 9 months ago

The problem

I just updated to ESPHOME 2023.12.5. And for some reason my Wallfire E27 bulbs state they are OFF but still glow very dim.

This didn't happen until I updated. I searched and found a post from March 7th that stated the same issue but was unresolved.

Which version of ESPHome has the issue?

2023.12.5

What type of installation are you using?

Home Assistant Add-on

Which version of Home Assistant has the issue?

2023.12.3

What platform are you using?

ESP8266

Board

No response

Component causing the issue

No response

Example YAML snippet

esphome:
  name: smart-bulb-1-right

esp8266:
  board: esp01_1m

wifi:
  ssid: !secret wifi_ssid
  password: !secret wifi_password

api:

logger:

ota:

# WebServer
web_server:
  port: 80

my9231:
  data_pin: GPIO13
  clock_pin: GPIO15
  num_channels: 4
  num_chips: 1
  bit_depth: 8

output:
  - platform: my9231
    id: output_red
    channel: 3
  - platform: my9231
    id: output_green
    channel: 2
  - platform: my9231
    id: output_blue
    channel: 1
  - platform: my9231
    id: output_cold_white
    channel: 0

light:
  - platform: rgbw
    name: smart-bulb-1-right
    red: output_red
    green: output_green
    blue: output_blue
    white: output_cold_white

Anything in the logs that might be useful for us?

No response

Additional information

No response

ssieb commented 9 months ago

The only relevant change appears to be https://github.com/esphome/esphome/pull/5765.

ssieb commented 9 months ago

What version did you have installed on the bulb before this? That change was made in 2023.11.1

ThrashinVictim commented 9 months ago

I believe it was the version before this one.

ssieb commented 9 months ago

Which should have been the version with that change, unless you installed the .0 version.

ssieb commented 9 months ago

@Mat931 any ideas about this?

Mat931 commented 9 months ago

Try increasing the bit_depth as a workaround. The problem will still happen but the light will be so dim that you can barely see it.

ThrashinVictim commented 9 months ago

Try increasing the bit_depth as a workaround. The problem will still happen but the light will be so dim that you can barely see it.

Increased bit_depth to 12 and that fixed the issue. Thanks.