mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
midea_ac: Fix turbo mode. Preset BOOST. (#2029)
This commit is contained in:
parent
99d2db42cd
commit
d2ed3b9bec
1 changed files with 5 additions and 2 deletions
|
@ -102,8 +102,11 @@ class PropertiesFrame : public midea_dongle::BaseFrame {
|
|||
void set_sleep_mode(bool state) { this->set_bytemask_(20, 0x01, state); }
|
||||
|
||||
/* TURBO MODE */
|
||||
bool get_turbo_mode() const { return this->pbuf_[18] & 0x20; }
|
||||
void set_turbo_mode(bool state) { this->set_bytemask_(18, 0x20, state); }
|
||||
bool get_turbo_mode() const { return this->pbuf_[18] & 0x20 || this->pbuf_[20] & 0x02; }
|
||||
void set_turbo_mode(bool state) {
|
||||
this->set_bytemask_(18, 0x20, state);
|
||||
this->set_bytemask_(20, 0x02, state);
|
||||
}
|
||||
|
||||
/* FREEZE PROTECTION */
|
||||
bool get_freeze_protection_mode() const { return this->pbuf_[31] & 0x80; }
|
||||
|
|
Loading…
Reference in a new issue