This commit is contained in:
J. Nick Koston 2023-06-07 19:40:34 -05:00
parent d4f0389372
commit 197fc7902f
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -32,9 +32,9 @@ namespace ratgdo {
void RATGDOLightOutput::write_state(light::LightState* state)
{
bool binary;
bool current_state = state == LightState::LIGHT_STATE_ON;
bool currentState = this->parent_->lightsState == esphome::ratgdo::LightState::LIGHT_STATE_ON;
state->current_values_as_binary(&binary);
if (binary == current_state)
if (binary == currentState)
return;
if (binary) {
ESP_LOGD(TAG, "output call lightOn");