Fix addressable light control without transitions & effects with transitions (#2187)

This commit is contained in:
Oxan van Leeuwen 2021-08-23 10:44:24 +02:00 committed by Jesse Hills
parent 3869e56521
commit ad953f02d1
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -46,9 +46,14 @@ void AddressableLight::write_state(LightState *state) {
// don't use LightState helper, gamma correction+brightness is handled by ESPColorView
this->all() = esp_color_from_light_color_values(val);
this->schedule_show();
}
void AddressableLightTransformer::start() {
// don't try to transition over running effects.
if (this->light_.is_effect_active())
return;
auto end_values = this->target_values_;
this->target_color_ = esp_color_from_light_color_values(end_values);