ESPHome 2026.1.0-dev
Loading...
Searching...
No Matches
homeassistant_number.cpp
Go to the documentation of this file.
2
5#include "esphome/core/log.h"
6
7namespace esphome {
8namespace homeassistant {
9
10static const char *const TAG = "homeassistant.number";
11
13 auto number_value = parse_number<float>(state);
14 if (!number_value.has_value()) {
15 ESP_LOGW(TAG, "'%s': Can't convert '%s' to number!", this->entity_id_, state.c_str());
16 this->publish_state(NAN);
17 return;
18 }
19 if (this->state == number_value.value()) {
20 return;
21 }
22 ESP_LOGD(TAG, "'%s': Got state %s", this->entity_id_, state.c_str());
23 this->publish_state(number_value.value());
24}
25
26void HomeassistantNumber::min_retrieved_(const std::string &min) {
27 auto min_value = parse_number<float>(min);
28 if (!min_value.has_value()) {
29 ESP_LOGE(TAG, "'%s': Can't convert 'min' value '%s' to number!", this->entity_id_, min.c_str());
30 return;
31 }
32 ESP_LOGD(TAG, "'%s': Min retrieved: %s", get_name().c_str(), min.c_str());
33 this->traits.set_min_value(min_value.value());
34}
35
36void HomeassistantNumber::max_retrieved_(const std::string &max) {
37 auto max_value = parse_number<float>(max);
38 if (!max_value.has_value()) {
39 ESP_LOGE(TAG, "'%s': Can't convert 'max' value '%s' to number!", this->entity_id_, max.c_str());
40 return;
41 }
42 ESP_LOGD(TAG, "'%s': Max retrieved: %s", get_name().c_str(), max.c_str());
43 this->traits.set_max_value(max_value.value());
44}
45
46void HomeassistantNumber::step_retrieved_(const std::string &step) {
47 auto step_value = parse_number<float>(step);
48 if (!step_value.has_value()) {
49 ESP_LOGE(TAG, "'%s': Can't convert 'step' value '%s' to number!", this->entity_id_, step.c_str());
50 return;
51 }
52 ESP_LOGD(TAG, "'%s': Step Retrieved %s", get_name().c_str(), step.c_str());
53 this->traits.set_step(step_value.value());
54}
55
58 this->entity_id_, nullptr, std::bind(&HomeassistantNumber::state_changed_, this, std::placeholders::_1));
59
61 this->entity_id_, "min", std::bind(&HomeassistantNumber::min_retrieved_, this, std::placeholders::_1));
63 this->entity_id_, "max", std::bind(&HomeassistantNumber::max_retrieved_, this, std::placeholders::_1));
65 this->entity_id_, "step", std::bind(&HomeassistantNumber::step_retrieved_, this, std::placeholders::_1));
66}
67
69 LOG_NUMBER("", "Homeassistant Number", this);
70 ESP_LOGCONFIG(TAG, " Entity ID: '%s'", this->entity_id_);
71}
72
74
76 if (!api::global_api_server->is_connected()) {
77 ESP_LOGE(TAG, "No clients connected to API server");
78 return;
79 }
80
81 this->publish_state(value);
82
83 static constexpr auto SERVICE_NAME = StringRef::from_lit("number.set_value");
84 static constexpr auto ENTITY_ID_KEY = StringRef::from_lit("entity_id");
85 static constexpr auto VALUE_KEY = StringRef::from_lit("value");
86
88 resp.set_service(SERVICE_NAME);
89
90 resp.data.init(2);
91 auto &entity_id = resp.data.emplace_back();
92 entity_id.set_key(ENTITY_ID_KEY);
93 entity_id.value = this->entity_id_;
94
95 auto &entity_value = resp.data.emplace_back();
96 entity_value.set_key(VALUE_KEY);
97 entity_value.value = to_string(value);
98
100}
101
102} // namespace homeassistant
103} // namespace esphome
const StringRef & get_name() const
static constexpr StringRef from_lit(const CharT(&s)[N])
Definition string_ref.h:46
void get_home_assistant_state(const char *entity_id, const char *attribute, std::function< void(std::string)> f)
void send_homeassistant_action(const HomeassistantActionRequest &call)
void subscribe_home_assistant_state(const char *entity_id, const char *attribute, std::function< void(std::string)> f)
FixedVector< HomeassistantServiceMap > data
Definition api_pb2.h:1142
void set_service(const StringRef &ref)
Definition api_pb2.h:1141
void publish_state(float state)
Definition number.cpp:31
NumberTraits traits
Definition number.h:39
void set_min_value(float min_value)
void set_max_value(float max_value)
bool state
Definition fan.h:0
APIServer * global_api_server
const float AFTER_CONNECTION
For components that should be initialized after a data connection (API/MQTT) is connected.
Definition component.cpp:89
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
optional< T > parse_number(const char *str)
Parse an unsigned decimal number from a null-terminated string.
Definition helpers.h:578