From 5c9755ecc161e43ce0550148b2897d9ae565d8ba Mon Sep 17 00:00:00 2001 From: Guillermo Ruffino Date: Sun, 11 Aug 2019 07:30:47 -0300 Subject: [PATCH] fix missing schedule call (#690) --- esphome/components/light/automation.h | 1 + 1 file changed, 1 insertion(+) diff --git a/esphome/components/light/automation.h b/esphome/components/light/automation.h index 70c423af0a..2cd55ab6f6 100644 --- a/esphome/components/light/automation.h +++ b/esphome/components/light/automation.h @@ -122,6 +122,7 @@ template class AddressableSet : public Action { range.set_blue(this->blue_.value(x...)); if (this->white_.has_value()) range.set_white(this->white_.value(x...)); + out->schedule_show(); } protected: