mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 03:34:18 +01:00
44b68f140e
Co-authored-by: Maurice Makaay <mmakaay1@xs4all.net>
59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
#include "mqtt_select.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
#include "mqtt_const.h"
|
|
|
|
#ifdef USE_MQTT
|
|
#ifdef USE_SELECT
|
|
|
|
namespace esphome {
|
|
namespace mqtt {
|
|
|
|
static const char *const TAG = "mqtt.select";
|
|
|
|
using namespace esphome::select;
|
|
|
|
MQTTSelectComponent::MQTTSelectComponent(Select *select) : select_(select) {}
|
|
|
|
void MQTTSelectComponent::setup() {
|
|
this->subscribe(this->get_command_topic_(), [this](const std::string &topic, const std::string &state) {
|
|
auto call = this->select_->make_call();
|
|
call.set_option(state);
|
|
call.perform();
|
|
});
|
|
this->select_->add_on_state_callback([this](const std::string &state, size_t index) { this->publish_state(state); });
|
|
}
|
|
|
|
void MQTTSelectComponent::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "MQTT Select '%s':", this->select_->get_name().c_str());
|
|
LOG_MQTT_COMPONENT(true, false)
|
|
}
|
|
|
|
std::string MQTTSelectComponent::component_type() const { return "select"; }
|
|
const EntityBase *MQTTSelectComponent::get_entity() const { return this->select_; }
|
|
|
|
void MQTTSelectComponent::send_discovery(JsonObject root, mqtt::SendDiscoveryConfig &config) {
|
|
const auto &traits = select_->traits;
|
|
// https://www.home-assistant.io/integrations/select.mqtt/
|
|
JsonArray options = root.createNestedArray(MQTT_OPTIONS);
|
|
for (const auto &option : traits.get_options())
|
|
options.add(option);
|
|
|
|
config.command_topic = true;
|
|
}
|
|
bool MQTTSelectComponent::send_initial_state() {
|
|
if (this->select_->has_state()) {
|
|
return this->publish_state(this->select_->state);
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
bool MQTTSelectComponent::publish_state(const std::string &value) {
|
|
return this->publish(this->get_state_topic_(), value);
|
|
}
|
|
|
|
} // namespace mqtt
|
|
} // namespace esphome
|
|
|
|
#endif
|
|
#endif // USE_MQTT
|