Skip to content

Commit

Permalink
Update temperature conversion method in ir_Bosch.cpp and ir_Bosch.h
Browse files Browse the repository at this point in the history
  • Loading branch information
zhixuan2333 committed Feb 19, 2024
1 parent 032be85 commit 57f8467
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ir_Bosch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,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 += addTempFloatToString(getTemp());
result += addBoolToString(_.Quiet, kQuietStr);
return result;
}
Expand Down
2 changes: 1 addition & 1 deletion src/ir_Bosch.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const uint16_t kBosch144BytesPerSection = 6;
using irutils::addBoolToString;
using irutils::addModeToString;
using irutils::addFanToString;
using irutils::addTempToString;
using irutils::addTempFloatToString;
using std::min;
using std::max;
using std::memcpy;
Expand Down

0 comments on commit 57f8467

Please sign in to comment.