ESPHome  2024.3.1
subscribe_state.cpp
Go to the documentation of this file.
1 #include "subscribe_state.h"
2 #include "api_connection.h"
3 #include "esphome/core/log.h"
4 
5 namespace esphome {
6 namespace api {
7 
8 #ifdef USE_BINARY_SENSOR
10  return this->client_->send_binary_sensor_state(binary_sensor, binary_sensor->state);
11 }
12 #endif
13 #ifdef USE_COVER
15 #endif
16 #ifdef USE_FAN
17 bool InitialStateIterator::on_fan(fan::Fan *fan) { return this->client_->send_fan_state(fan); }
18 #endif
19 #ifdef USE_LIGHT
21 #endif
22 #ifdef USE_SENSOR
24  return this->client_->send_sensor_state(sensor, sensor->state);
25 }
26 #endif
27 #ifdef USE_SWITCH
29  return this->client_->send_switch_state(a_switch, a_switch->state);
30 }
31 #endif
32 #ifdef USE_TEXT_SENSOR
34  return this->client_->send_text_sensor_state(text_sensor, text_sensor->state);
35 }
36 #endif
37 #ifdef USE_CLIMATE
39 #endif
40 #ifdef USE_NUMBER
42  return this->client_->send_number_state(number, number->state);
43 }
44 #endif
45 #ifdef USE_DATETIME_DATE
47 #endif
48 #ifdef USE_TEXT
49 bool InitialStateIterator::on_text(text::Text *text) { return this->client_->send_text_state(text, text->state); }
50 #endif
51 #ifdef USE_SELECT
53  return this->client_->send_select_state(select, select->state);
54 }
55 #endif
56 #ifdef USE_LOCK
57 bool InitialStateIterator::on_lock(lock::Lock *a_lock) { return this->client_->send_lock_state(a_lock, a_lock->state); }
58 #endif
59 #ifdef USE_MEDIA_PLAYER
61  return this->client_->send_media_player_state(media_player);
62 }
63 #endif
64 #ifdef USE_ALARM_CONTROL_PANEL
66  return this->client_->send_alarm_control_panel_state(a_alarm_control_panel);
67 }
68 #endif
70 
71 } // namespace api
72 } // namespace esphome
Base class for all switches.
Definition: switch.h:39
bool send_text_sensor_state(text_sensor::TextSensor *text_sensor, std::string state)
bool send_alarm_control_panel_state(alarm_control_panel::AlarmControlPanel *a_alarm_control_panel)
This class represents the communication layer between the front-end MQTT layer and the hardware outpu...
Definition: light_state.h:34
Base class for all cover devices.
Definition: cover.h:111
std::string state
Definition: text.h:26
bool on_light(light::LightState *light) override
bool send_switch_state(switch_::Switch *a_switch, bool state)
LockState state
The current reported state of the lock.
Definition: lock.h:122
bool on_date(datetime::DateEntity *date) override
bool send_fan_state(fan::Fan *fan)
bool send_climate_state(climate::Climate *climate)
bool send_lock_state(lock::Lock *a_lock, lock::LockState state)
bool send_text_state(text::Text *text, std::string state)
bool on_text_sensor(text_sensor::TextSensor *text_sensor) override
Base-class for all text inputs.
Definition: text.h:24
bool on_number(number::Number *number) override
InitialStateIterator(APIConnection *client)
bool on_lock(lock::Lock *a_lock) override
float state
This member variable stores the last state that has passed through all filters.
Definition: sensor.h:131
bool send_sensor_state(sensor::Sensor *sensor, float state)
bool on_sensor(sensor::Sensor *sensor) override
bool send_select_state(select::Select *select, std::string state)
bool on_text(text::Text *text) override
Base-class for all numbers.
Definition: number.h:39
bool on_media_player(media_player::MediaPlayer *media_player) override
bool send_binary_sensor_state(binary_sensor::BinarySensor *binary_sensor, bool state)
bool state
The current reported state of the binary sensor.
Definition: binary_sensor.h:61
bool on_select(select::Select *select) override
bool send_cover_state(cover::Cover *cover)
bool on_climate(climate::Climate *climate) override
bool send_date_state(datetime::DateEntity *date)
std::string state
Definition: select.h:33
bool on_cover(cover::Cover *cover) override
Base-class for all selects.
Definition: select.h:31
bool send_light_state(light::LightState *light)
This is a workaround until we can figure out a way to get the tflite-micro idf component code availab...
Definition: a01nyub.cpp:7
bool send_media_player_state(media_player::MediaPlayer *media_player)
Base class for all binary_sensor-type classes.
Definition: binary_sensor.h:37
bool on_binary_sensor(binary_sensor::BinarySensor *binary_sensor) override
Base-class for all sensors.
Definition: sensor.h:57
bool on_fan(fan::Fan *fan) override
bool send_number_state(number::Number *number, float state)
bool state
The current reported state of the binary sensor.
Definition: switch.h:53
bool on_alarm_control_panel(alarm_control_panel::AlarmControlPanel *a_alarm_control_panel) override
Base class for all locks.
Definition: lock.h:103
bool on_switch(switch_::Switch *a_switch) override
ClimateDevice - This is the base class for all climate integrations.
Definition: climate.h:168