mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 12:43:28 +02:00
afc2b3b74f
* Keep Device Class in Flash. * Remove blank line --------- Co-authored-by: Your Name <you@example.com>
21 lines
483 B
C++
21 lines
483 B
C++
#include "esphome/core/log.h"
|
|
#include "number_traits.h"
|
|
|
|
namespace esphome {
|
|
namespace number {
|
|
|
|
static const char *const TAG = "number";
|
|
|
|
void NumberTraits::set_unit_of_measurement(const std::string &unit_of_measurement) {
|
|
this->unit_of_measurement_ = unit_of_measurement;
|
|
}
|
|
|
|
std::string NumberTraits::get_unit_of_measurement() {
|
|
if (this->unit_of_measurement_.has_value())
|
|
return *this->unit_of_measurement_;
|
|
return "";
|
|
}
|
|
|
|
} // namespace number
|
|
} // namespace esphome
|