Skip to content
Open
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions src/ir_Bosch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ stdAc::state_t IRBosch144AC::toCommon(void) const {
result.power = getPower();
result.mode = toCommonMode(getMode());
result.celsius = true;
result.degrees = getTemp();
result.degrees = getTempFloat();
result.fanspeed = toCommonFanSpeed(getFan());
result.quiet = getQuiet();
// Not supported.
Expand Down Expand Up @@ -273,7 +273,7 @@ String IRBosch144AC::toString(void) const {
static_cast<int>(stdAc::fanspeed_t::kAuto),
static_cast<int>(stdAc::fanspeed_t::kAuto),
static_cast<int>(stdAc::fanspeed_t::kMedium));
result += addTempToString(getTemp());
result += addTempToString(getTempFloat());
result += addBoolToString(_.Quiet, kQuietStr);
return result;
}
Expand Down