12 #define LOG_SELECT(prefix, type, obj) \ 13 if ((obj) != nullptr) { \ 14 ESP_LOGCONFIG(TAG, "%s%s '%s'", prefix, LOG_STR_LITERAL(type), (obj)->get_name().c_str()); \ 15 if (!(obj)->get_icon().empty()) { \ 16 ESP_LOGCONFIG(TAG, "%s Icon: '%s'", prefix, (obj)->get_icon().c_str()); \ 20 #define SUB_SELECT(name) \ 22 select::Select *name##_select_{nullptr}; \ 25 void set_##name##_select(select::Select *select) { this->name##_select_ = select; } 45 bool has_option(
const std::string &option)
const;
73 virtual void control(
const std::string &value) = 0;
virtual void control(const std::string &value)=0
Set the value of the select, this is a virtual method that each select integration must implement...
bool has_option(const std::string &option) const
Return whether this select component contains the provided option.
optional< std::string > at(size_t index) const
Return the (optional) option value at the provided index offset.
CallbackManager< void(std::string, size_t)> state_callback_
optional< size_t > active_index() const
Return the (optional) index offset of the currently active option.
SelectCall make_call()
Instantiate a SelectCall object to modify this select component's state.
size_t size() const
Return the number of options in this select component.
void publish_state(const std::string &state)
Base-class for all selects.
Implementation of SPI Controller mode.
bool has_state() const
Return whether this select component has gotten a full state yet.
bool has_index(size_t index) const
Return whether this select component contains the provided index offset.
optional< size_t > index_of(const std::string &option) const
Find the (optional) index offset of the provided option value.
void add_on_state_callback(std::function< void(std::string, size_t)> &&callback)