30#ifdef USE_API_USER_DEFINED_ACTIONS
32class UserServiceDescriptor;
50 void setup()
override;
58 void on_log(uint8_t level,
const char *
tag,
const char *
message,
size_t message_len);
61 void on_camera_image(
const std::shared_ptr<camera::CameraImage> &image)
override;
80#ifdef USE_BINARY_SENSOR
107#ifdef USE_DATETIME_DATE
110#ifdef USE_DATETIME_TIME
113#ifdef USE_DATETIME_DATETIME
128#ifdef USE_MEDIA_PLAYER
131#ifdef USE_WATER_HEATER
134#ifdef USE_API_HOMEASSISTANT_SERVICES
137#ifdef USE_API_HOMEASSISTANT_ACTION_RESPONSES
142#ifdef USE_API_HOMEASSISTANT_ACTION_RESPONSES_JSON
144 size_t response_data_len);
148#ifdef USE_API_USER_DEFINED_ACTIONS
152#ifdef USE_API_CUSTOM_SERVICES
156#ifdef USE_API_USER_DEFINED_ACTION_RESPONSES
164#ifdef USE_API_USER_DEFINED_ACTION_RESPONSES_JSON
166 const uint8_t *response_data,
size_t response_data_len);
170#ifdef USE_HOMEASSISTANT_TIME
174#ifdef USE_ALARM_CONTROL_PANEL
183#ifdef USE_ZWAVE_PROXY
186#if defined(USE_IR_RF) || defined(USE_RADIO_FREQUENCY)
210#ifdef USE_API_HOMEASSISTANT_STATES
235 std::function<
void(
const std::string &)> &&
f);
237 std::function<
void(
const std::string &)> &&
f);
239 const std::vector<HomeAssistantStateSubscription> &
get_state_subs()
const;
241#ifdef USE_API_USER_DEFINED_ACTIONS
245#ifdef USE_API_CLIENT_CONNECTED_TRIGGER
248#ifdef USE_API_CLIENT_DISCONNECTED_TRIGGER
264#ifdef USE_API_HOMEASSISTANT_STATES
269 std::function<
void(
StringRef)> &&
f,
bool once);
272 std::function<
void(
const std::string &)> &&
f,
bool once);
283#ifdef USE_API_CLIENT_CONNECTED_TRIGGER
286#ifdef USE_API_CLIENT_DISCONNECTED_TRIGGER
295 std::array<APIConnectionPtr, MAX_API_CONNECTIONS>
clients_{};
302#ifdef USE_API_HOMEASSISTANT_STATES
305#ifdef USE_API_USER_DEFINED_ACTIONS
307#ifdef USE_API_USER_DEFINED_ACTION_RESPONSES
319#ifdef USE_API_HOMEASSISTANT_ACTION_RESPONSES
346 TEMPLATABLE_VALUE(
bool, state_subscription_only)
348 bool check(
const Ts &...
x)
override {
349 if (this->state_subscription_only_.value(
x...)) {
ESPDEPRECATED("set_retry is deprecated and will be removed in 2026.8.0. Use set_timeout or set_interval instead.", "2026.2.0") void set_retry(const std uint32_t uint8_t std::function< RetryResult(uint8_t)> && f
Base class for all automation conditions.
virtual bool check(const Ts &...x)=0
StringRef is a reference to a string owned by something else.
Byte buffer that skips zero-initialization on resize().
const APIConnectionPtr * end() const
ActiveClientsView(const APIConnectionPtr *b, const APIConnectionPtr *e)
const APIConnectionPtr * begin() const
void on_log(uint8_t level, const char *tag, const char *message, size_t message_len)
bool is_connected_with_state_subscription() const
Trigger< std::string, std::string > * get_client_connected_trigger()
std::array< APIConnectionPtr, MAX_API_CONNECTIONS > clients_
void on_valve_update(valve::Valve *obj) override
uint16_t get_batch_delay() const
std::unique_ptr< APIConnection > APIConnectionPtr
void on_switch_update(switch_::Switch *obj) override
void register_action_response_callback(uint32_t call_id, ActionResponseCallback callback)
void send_infrared_rf_receive_event(uint32_t device_id, uint32_t key, const std::vector< int32_t > *timings)
APIBuffer & get_shared_buffer_ref()
void on_time_update(datetime::TimeEntity *obj) override
void on_cover_update(cover::Cover *obj) override
void add_state_subscription_(const char *entity_id, const char *attribute, std::function< void(StringRef)> &&f, bool once)
void get_home_assistant_state(const char *entity_id, const char *attribute, std::function< void(StringRef)> &&f)
Trigger< std::string, std::string > * get_client_disconnected_trigger()
void on_camera_image(const std::shared_ptr< camera::CameraImage > &image) override
std::vector< UserServiceDescriptor * > user_services_
void on_light_update(light::LightState *obj) override
void socket_failed_(const LogString *msg)
void on_media_player_update(media_player::MediaPlayer *obj) override
bool load_and_apply_noise_psk_()
const std::vector< UserServiceDescriptor * > & get_user_services() const
void initialize_user_services(std::initializer_list< UserServiceDescriptor * > services)
void on_water_heater_update(water_heater::WaterHeater *obj) override
void set_port(uint16_t port)
void dump_config() override
void unregister_active_action_calls_for_connection(APIConnection *conn)
void handle_disconnect(APIConnection *conn)
void set_batch_delay(uint16_t batch_delay)
void set_reboot_timeout(uint32_t reboot_timeout)
Trigger< std::string, std::string > client_connected_trigger_
void set_listen_backlog(uint8_t listen_backlog)
void send_action_response(uint32_t action_call_id, bool success, StringRef error_message)
APINoiseContext & get_noise_ctx()
void register_user_service(UserServiceDescriptor *descriptor)
bool save_noise_psk(psk_t psk, bool make_active=true)
void on_lock_update(lock::Lock *obj) override
void on_date_update(datetime::DateEntity *obj) override
uint8_t api_connection_count_
bool is_connected() const
APINoiseContext noise_ctx_
void unregister_active_action_call(uint32_t action_call_id)
void on_number_update(number::Number *obj) override
void send_homeassistant_action(const HomeassistantActionRequest &call)
socket::ListenSocket * socket_
void on_event(event::Event *obj) override
void on_update(update::UpdateEntity *obj) override
uint32_t next_action_call_id_
std::vector< PendingActionResponse > action_response_callbacks_
const std::vector< HomeAssistantStateSubscription > & get_state_subs() const
void subscribe_home_assistant_state(const char *entity_id, const char *attribute, std::function< void(StringRef)> &&f)
void on_climate_update(climate::Climate *obj) override
void handle_action_response(uint32_t call_id, bool success, StringRef error_message)
std::function< void(const class ActionResponse &)> ActionResponseCallback
void on_binary_sensor_update(binary_sensor::BinarySensor *obj) override
bool update_noise_psk_(const SavedNoisePsk &new_psk, const LogString *save_log_msg, const LogString *fail_log_msg, bool make_active)
ESPPreferenceObject noise_pref_
void on_fan_update(fan::Fan *obj) override
Trigger< std::string, std::string > client_disconnected_trigger_
std::vector< HomeAssistantStateSubscription > state_subs_
bool clear_noise_psk(bool make_active=true)
ActiveClientsView active_clients() const
void on_select_update(select::Select *obj) override
uint16_t get_port() const
void __attribute__((noinline)) accept_new_connections_()
void on_text_update(text::Text *obj) override
void on_text_sensor_update(text_sensor::TextSensor *obj) override
std::vector< ActiveActionCall > active_action_calls_
void set_noise_psk(psk_t psk)
void on_datetime_update(datetime::DateTimeEntity *obj) override
APIBuffer shared_write_buffer_
void on_sensor_update(sensor::Sensor *obj) override
void __attribute__((noinline)) remove_client_(uint8_t client_index)
float get_setup_priority() const override
uint32_t register_active_action_call(uint32_t client_call_id, APIConnection *conn)
void on_shutdown() override
void on_zwave_proxy_request(const ZWaveProxyRequest &msg)
void on_alarm_control_panel_update(alarm_control_panel::AlarmControlPanel *obj) override
Base class for all binary_sensor-type classes.
Listener interface for camera events.
ClimateDevice - This is the base class for all climate integrations.
Base class for all cover devices.
This class represents the communication layer between the front-end MQTT layer and the hardware outpu...
Base class for all locks.
Base-class for all numbers.
Base-class for all selects.
Base-class for all sensors.
Base class for all switches.
Base-class for all text inputs.
Base class for all valve devices.
APIServer * global_api_server
struct esphome::api::SavedNoisePsk PACKED
std::array< uint8_t, 32 > psk_t
APIConnection * connection
std::unique_ptr< std::string > entity_id_dynamic_storage
std::function< void(StringRef)> callback
std::unique_ptr< std::string > attribute_dynamic_storage
ActionResponseCallback callback