1
0
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:
Otto Winter
2019-10-17 16:53:55 +02:00
committed by GitHub
parent ac48ff1fd6
commit e15071228e

View File

@@ -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)