mirror of
https://github.com/esphome/esphome.git
synced 2024-11-21 11:37:27 +01:00
[bang-bang] Remove `assert()
` (#7533)
This commit is contained in:
parent
e31a96bfe2
commit
949e61db8d
@ -157,8 +157,11 @@ void BangBangClimate::switch_to_action_(climate::ClimateAction action) {
|
||||
default:
|
||||
trig = nullptr;
|
||||
}
|
||||
assert(trig != nullptr);
|
||||
trig->trigger();
|
||||
if (trig != nullptr) {
|
||||
trig->trigger();
|
||||
} else {
|
||||
ESP_LOGW(TAG, "trig not set - unsupported action");
|
||||
}
|
||||
this->action = action;
|
||||
this->prev_trigger_ = trig;
|
||||
this->publish_state();
|
||||
|
Loading…
Reference in New Issue
Block a user