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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)