mirror of
https://github.com/esphome/esphome.git
synced 2025-09-02 19:32:19 +01:00
Fix addressable light fade to black function (#752)
Fixes https://github.com/esphome/issues/issues/517
This commit is contained in:
@@ -113,7 +113,7 @@ void ESPRangeView::fade_to_white(uint8_t amnt) {
|
||||
}
|
||||
void ESPRangeView::fade_to_black(uint8_t amnt) {
|
||||
for (auto c : *this)
|
||||
c.fade_to_white(amnt);
|
||||
c.fade_to_black(amnt);
|
||||
}
|
||||
void ESPRangeView::lighten(uint8_t delta) {
|
||||
for (auto c : *this)
|
||||
|
Reference in New Issue
Block a user