Skip to content

Commit

Permalink
Fix EP32xx state detection (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
TillFleisch committed Apr 17, 2024
1 parent 120dfc5 commit e710147
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ namespace esphome
}

// Steam selected
if (data[3] == led_off && data[4] == led_off && data[5] == led_off && data[6] != led_off)
if (data[3] == led_off && data[4] == led_off && data[5] == led_off && (data[6] == led_on || data[6] == led_third))
{
#ifdef PHILIPS_EP2235
if (is_play_pause_blinking)
Expand Down

0 comments on commit e710147

Please sign in to comment.