|
| MicroNovaSensor (MicroNova *m) |
|
void | dump_config () override |
|
void | request_value_from_stove () override |
|
void | process_value_from_stove (int value_from_stove) override |
|
void | set_fan_speed_offset (uint8_t f) |
|
uint8_t | get_set_fan_speed_offset () |
|
| Sensor () |
|
int8_t | get_accuracy_decimals () |
| Get the accuracy in decimals, using the manual override if set. More...
|
|
void | set_accuracy_decimals (int8_t accuracy_decimals) |
| Manually set the accuracy in decimals. More...
|
|
StateClass | get_state_class () |
| Get the state class, using the manual override if set. More...
|
|
void | set_state_class (StateClass state_class) |
| Manually set the state class. More...
|
|
bool | get_force_update () const |
| Get whether force update mode is enabled. More...
|
|
void | set_force_update (bool force_update) |
| Set force update mode. More...
|
|
void | add_filter (Filter *filter) |
| Add a filter to the filter chain. Will be appended to the back. More...
|
|
void | add_filters (const std::vector< Filter *> &filters) |
| Add a list of vectors to the back of the filter chain. More...
|
|
void | set_filters (const std::vector< Filter *> &filters) |
| Clear the filters and replace them by filters. More...
|
|
void | clear_filters () |
| Clear the entire filter chain. More...
|
|
float | get_state () const |
| Getter-syntax for .state. More...
|
|
float | get_raw_state () const |
| Getter-syntax for .raw_state. More...
|
|
void | publish_state (float state) |
| Publish a new state to the front-end. More...
|
|
void | add_on_state_callback (std::function< void(float)> &&callback) |
| Add a callback that will be called every time a filtered value arrives. More...
|
|
void | add_on_raw_state_callback (std::function< void(float)> &&callback) |
| Add a callback that will be called every time the sensor sends a raw value. More...
|
|
bool | has_state () const |
| Return whether this sensor has gotten a full state (that passed through all filters) yet. More...
|
|
virtual std::string | unique_id () |
| Override this method to set the unique ID of this sensor. More...
|
|
void | internal_send_state_to_frontend (float state) |
|
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) |
|
std::string | get_device_class () |
| Get the device class, using the manual override if set. More...
|
|
void | set_device_class (const char *device_class) |
| Manually set the device class. More...
|
|
std::string | get_unit_of_measurement () |
| Get the unit of measurement, using the manual override if set. More...
|
|
void | set_unit_of_measurement (const char *unit_of_measurement) |
| Manually set the unit of measurement. More...
|
|
| MicroNovaSensorListener () |
|
| MicroNovaSensorListener (MicroNova *m) |
|
void | set_needs_update (bool u) |
|
bool | get_needs_update () |
|
| MicroNovaBaseListener () |
|
| MicroNovaBaseListener (MicroNova *m) |
|
void | set_micronova_object (MicroNova *m) |
|
void | set_function (MicroNovaFunctions f) |
|
MicroNovaFunctions | get_function () |
|
void | set_memory_location (uint8_t l) |
|
uint8_t | get_memory_location () |
|
void | set_memory_address (uint8_t a) |
|
uint8_t | get_memory_address () |
|