11static const char *
const TAG =
"mqtt.switch";
31 ESP_LOGW(TAG,
"'%s': Received unknown status payload: %s", this->
friendly_name_().c_str(), payload.c_str());
37 [
this](
bool enabled) { this->
defer(
"send", [
this, enabled]() { this->
publish_state(enabled); }); });
41 LOG_MQTT_COMPONENT(
true,
true);
49 root[MQTT_OPTIMISTIC] =
true;
55 char topic_buf[MQTT_DEFAULT_TOPIC_MAX_LEN];
56 const char *state_s =
state ?
"ON" :
"OFF";
ESPDEPRECATED("Use const char* overload instead. Removed in 2026.7.0", "2026.1.0") void defer(const std voi defer)(const char *name, std::function< void()> &&f)
Defer a callback to the next loop() call.
void status_momentary_warning(const char *name, uint32_t length=5000)
Set warning status flag and automatically clear it after a timeout.
const StringRef & get_name() const
constexpr const char * c_str() const
bool publish(const std::string &topic, const std::string &payload)
Send a MQTT message.
StringRef get_state_topic_to_(std::span< char, MQTT_DEFAULT_TOPIC_MAX_LEN > buf) const
Get the MQTT state topic into a buffer (no heap allocation for non-lambda custom topics).
const StringRef & friendly_name_() const
Get the friendly name of this MQTT component.
std::string get_command_topic_() const
Get the MQTT topic for listening to commands (allocates std::string).
void subscribe(const std::string &topic, mqtt_callback_t callback, uint8_t qos=0)
Subscribe to a MQTT topic.
void send_discovery(JsonObject root, mqtt::SendDiscoveryConfig &config) override
bool send_initial_state() override
MQTTSwitchComponent(switch_::Switch *a_switch)
bool publish_state(bool state)
switch_::Switch * switch_
void dump_config() override
Base class for all switches.
void toggle()
Toggle this switch.
void turn_on()
Turn this switch on.
void turn_off()
Turn this switch off.
bool state
The current reported state of the binary sensor.
void add_on_state_callback(std::function< void(bool)> &&callback)
Set callback for state changes.
virtual bool assumed_state()
Return whether this switch uses an assumed state - i.e.
MQTT_COMPONENT_TYPE(MQTTAlarmControlPanelComponent, "alarm_control_panel") const EntityBase *MQTTAlarmControlPanelComponent
ParseOnOffState parse_on_off(const char *str, const char *on, const char *off)
Parse a string that contains either on, off or toggle.
Simple Helper struct used for Home Assistant MQTT send_discovery().