mirror of
https://github.com/esphome/esphome.git
synced 2024-11-25 08:28:12 +01:00
0e1d018ce3
* Allow specifying target and current visual steps for climate * Fixes * format * format
15 lines
422 B
C++
15 lines
422 B
C++
#include "climate_traits.h"
|
|
|
|
namespace esphome {
|
|
namespace climate {
|
|
|
|
int8_t ClimateTraits::get_target_temperature_accuracy_decimals() const {
|
|
return step_to_accuracy_decimals(this->visual_target_temperature_step_);
|
|
}
|
|
|
|
int8_t ClimateTraits::get_current_temperature_accuracy_decimals() const {
|
|
return step_to_accuracy_decimals(this->visual_current_temperature_step_);
|
|
}
|
|
|
|
} // namespace climate
|
|
} // namespace esphome
|