mirror of
https://github.com/esphome/esphome.git
synced 2025-09-02 11:22:24 +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) {
|
void ESPRangeView::fade_to_black(uint8_t amnt) {
|
||||||
for (auto c : *this)
|
for (auto c : *this)
|
||||||
c.fade_to_white(amnt);
|
c.fade_to_black(amnt);
|
||||||
}
|
}
|
||||||
void ESPRangeView::lighten(uint8_t delta) {
|
void ESPRangeView::lighten(uint8_t delta) {
|
||||||
for (auto c : *this)
|
for (auto c : *this)
|
||||||
|
Reference in New Issue
Block a user