We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fb411b commit 5080851Copy full SHA for 5080851
src/ir_Bosch.cpp
@@ -176,7 +176,8 @@ uint8_t IRBosch144AC::getMode(void) const {
176
/// @param[in] on true, the setting is on. false, the setting is off.
177
void IRBosch144AC::setQuiet(const bool on) {
178
_.Quiet = on; // save 1 bit in Section3
179
- setFan(kBosch144FanAuto); // set Fan -> Auto
+ if (on) // if Quiet is on, set Fan to Auto
180
+ setFan(kBosch144FanAuto); // set Fan -> Auto
181
}
182
183
/// Get the Quiet mode of the A/C.
0 commit comments