mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
set temp log to .5f
This commit is contained in:
parent
d80d9e1395
commit
c1a1cef379
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ void AirConditioner::do_follow_me(float temperature, bool use_fahrenheit, bool b
|
||||||
static_cast<uint8_t>(esphome::clamp<long>(std::lroundf(temperature), 0L, static_cast<long>(UINT8_MAX)));
|
static_cast<uint8_t>(esphome::clamp<long>(std::lroundf(temperature), 0L, static_cast<long>(UINT8_MAX)));
|
||||||
|
|
||||||
char temp_symbol = use_fahrenheit ? 'F' : 'C';
|
char temp_symbol = use_fahrenheit ? 'F' : 'C';
|
||||||
ESP_LOGD(Constants::TAG, "Follow me action called with temperature: %f °%c, rounded to: %u °%c", temperature,
|
ESP_LOGD(Constants::TAG, "Follow me action called with temperature: %.5f °%c, rounded to: %u °%c", temperature,
|
||||||
temp_symbol, temp_uint8, temp_symbol);
|
temp_symbol, temp_uint8, temp_symbol);
|
||||||
|
|
||||||
// Create and transmit the data
|
// Create and transmit the data
|
||||||
|
|
Loading…
Reference in a new issue