mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Fix switch log state if inverted (#2960)
This commit is contained in:
parent
f859b346a6
commit
2cf36bdb46
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ void Switch::publish_state(bool state) {
|
|||
this->state = state != this->inverted_;
|
||||
|
||||
this->rtc_.save(&this->state);
|
||||
ESP_LOGD(TAG, "'%s': Sending state %s", this->name_.c_str(), ONOFF(state));
|
||||
ESP_LOGD(TAG, "'%s': Sending state %s", this->name_.c_str(), ONOFF(this->state));
|
||||
this->state_callback_.call(this->state);
|
||||
}
|
||||
bool Switch::assumed_state() { return false; }
|
||||
|
|
Loading…
Reference in a new issue