mirror of
https://github.com/esphome/esphome.git
synced 2025-03-25 03:58:23 +00:00
16 lines
422 B
C++
16 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
|