|
| LD2420Select ()=default |
|
virtual void | setup () |
| Where the component's initialization should happen. More...
|
|
virtual void | loop () |
| This method will be called repeatedly. More...
|
|
virtual void | dump_config () |
|
virtual float | get_setup_priority () const |
| priority of setup(). More...
|
|
float | get_actual_setup_priority () const |
|
void | set_setup_priority (float priority) |
|
virtual float | get_loop_priority () const |
| priority of loop(). More...
|
|
void | call () |
|
virtual void | on_shutdown () |
|
virtual void | on_safe_shutdown () |
|
uint32_t | get_component_state () const |
|
virtual void | mark_failed () |
| Mark this component as failed. More...
|
|
void | mark_failed (const char *message) |
|
bool | is_failed () const |
|
bool | is_ready () const |
|
virtual bool | can_proceed () |
|
bool | status_has_warning () const |
|
bool | status_has_error () const |
|
void | status_set_warning (const char *message="unspecified") |
|
void | status_set_error (const char *message="unspecified") |
|
void | status_clear_warning () |
|
void | status_clear_error () |
|
void | status_momentary_warning (const std::string &name, uint32_t length=5000) |
|
void | status_momentary_error (const std::string &name, uint32_t length=5000) |
|
bool | has_overridden_loop () const |
|
void | set_component_source (const char *source) |
| Set where this component was loaded from for some debug messages. More...
|
|
const char * | get_component_source () const |
| Get the integration where this component was declared as a string. More...
|
|
void | publish_state (const std::string &state) |
|
bool | has_state () const |
| Return whether this select component has gotten a full state yet. More...
|
|
SelectCall | make_call () |
| Instantiate a SelectCall object to modify this select component's state. More...
|
|
bool | has_option (const std::string &option) const |
| Return whether this select component contains the provided option. More...
|
|
bool | has_index (size_t index) const |
| Return whether this select component contains the provided index offset. More...
|
|
size_t | size () const |
| Return the number of options in this select component. More...
|
|
optional< size_t > | index_of (const std::string &option) const |
| Find the (optional) index offset of the provided option value. More...
|
|
optional< size_t > | active_index () const |
| Return the (optional) index offset of the currently active option. More...
|
|
optional< std::string > | at (size_t index) const |
| Return the (optional) option value at the provided index offset. More...
|
|
void | add_on_state_callback (std::function< void(std::string, size_t)> &&callback) |
|
const StringRef & | get_name () const |
|
void | set_name (const char *name) |
|
bool | has_own_name () const |
|
std::string | get_object_id () const |
|
void | set_object_id (const char *object_id) |
|
uint32_t | get_object_id_hash () |
|
bool | is_internal () const |
|
void | set_internal (bool internal) |
|
bool | is_disabled_by_default () const |
|
void | set_disabled_by_default (bool disabled_by_default) |
|
EntityCategory | get_entity_category () const |
|
void | set_entity_category (EntityCategory entity_category) |
|
std::string | get_icon () const |
|
void | set_icon (const char *icon) |
|
| Parented () |
|
| Parented (LD2420Component *parent) |
|
LD2420Component * | get_parent () const |
| Get the parent of this object. More...
|
|
void | set_parent (LD2420Component *parent) |
| Set the parent of this object. More...
|
|