1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-01 15:41:52 +00:00
This commit is contained in:
J. Nick Koston
2025-10-30 20:53:30 -05:00
parent f6e8fdcd91
commit d7f55e9977

View File

@@ -258,6 +258,7 @@ void BedJetClimate::on_status(const BedjetStatusPacket *data) {
case MODE_HEAT:
this->mode = CLIMATE_MODE_HEAT;
this->action = CLIMATE_ACTION_HEATING;
this->preset.reset();
if (this->heating_mode_ == HEAT_MODE_EXTENDED) {
this->set_custom_preset_("LTD HT");
} else {
@@ -268,6 +269,7 @@ void BedJetClimate::on_status(const BedjetStatusPacket *data) {
case MODE_EXTHT:
this->mode = CLIMATE_MODE_HEAT;
this->action = CLIMATE_ACTION_HEATING;
this->preset.reset();
if (this->heating_mode_ == HEAT_MODE_EXTENDED) {
this->clear_custom_preset_();
} else {