Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/ir_Bosch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading