#pragma once #include "esphome/components/select/select.h" #include "esphome/core/automation.h" #include "esphome/core/component.h" #include "esphome/core/preferences.h" namespace esphome { namespace template_ { class TemplateSelect : public select::Select, public PollingComponent { public: void set_template(std::function()> &&f) { this->f_ = f; } void setup() override; void update() override; void dump_config() override; float get_setup_priority() const override { return setup_priority::HARDWARE; } Trigger *get_set_trigger() const { return this->set_trigger_; } void set_optimistic(bool optimistic) { this->optimistic_ = optimistic; } void set_initial_option(std::string initial_option) { this->initial_option_ = std::move(initial_option); } void set_restore_value(bool restore_value) { this->restore_value_ = restore_value; } protected: void control(const std::string &value) override; bool optimistic_ = false; std::string initial_option_; bool restore_value_ = false; Trigger *set_trigger_ = new Trigger(); optional()>> f_; ESPPreferenceObject pref_; }; } // namespace template_ } // namespace esphome