cogito/esphome_dev/esphome/components/climate/climate_traits.cpp

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