Fixed the bug where the wind speed was always set to auto.

This commit is contained in:
kingingwang
2026-01-01 13:23:31 +08:00
committed by David Conran
parent 8fb411b6a1
commit 5080851068

View File

@@ -176,7 +176,8 @@ uint8_t IRBosch144AC::getMode(void) const {
/// @param[in] on true, the setting is on. false, the setting is off.
void IRBosch144AC::setQuiet(const bool on) {
_.Quiet = on; // save 1 bit in Section3
setFan(kBosch144FanAuto); // set Fan -> Auto
if (on) // if Quiet is on, set Fan to Auto
setFan(kBosch144FanAuto); // set Fan -> Auto
}
/// Get the Quiet mode of the A/C.