Skip to content

Commit e710147

Browse files
authored
Fix EP32xx state detection (#63)
1 parent 120dfc5 commit e710147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/philips_coffee_machine/text_sensor/status_sensor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ namespace esphome
114114
}
115115

116116
// Steam selected
117-
if (data[3] == led_off && data[4] == led_off && data[5] == led_off && data[6] != led_off)
117+
if (data[3] == led_off && data[4] == led_off && data[5] == led_off && (data[6] == led_on || data[6] == led_third))
118118
{
119119
#ifdef PHILIPS_EP2235
120120
if (is_play_pause_blinking)

0 commit comments

Comments
 (0)