ESPHome  2024.5.1
Public Member Functions | Protected Attributes
esphome::micronova::MicroNovaSensor Class Reference

#include <micronova_sensor.h>

Inheritance diagram for esphome::micronova::MicroNovaSensor:
esphome::sensor::Sensor esphome::micronova::MicroNovaSensorListener esphome::EntityBase esphome::EntityBase_DeviceClass esphome::EntityBase_UnitOfMeasurement esphome::micronova::MicroNovaBaseListener

Public Member Functions

 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 ()
 
- Public Member Functions inherited from esphome::sensor::Sensor
 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)
 
- Public Member Functions inherited from esphome::EntityBase
const StringRefget_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)
 
- Public Member Functions inherited from esphome::EntityBase_DeviceClass
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...
 
- Public Member Functions inherited from esphome::EntityBase_UnitOfMeasurement
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...
 
- Public Member Functions inherited from esphome::micronova::MicroNovaSensorListener
 MicroNovaSensorListener ()
 
 MicroNovaSensorListener (MicroNova *m)
 
void set_needs_update (bool u)
 
bool get_needs_update ()
 
- Public Member Functions inherited from esphome::micronova::MicroNovaBaseListener
 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 ()
 

Protected Attributes

int fan_speed_offset_ = 0
 
- Protected Attributes inherited from esphome::sensor::Sensor
CallbackManager< void(float)> raw_callback_
 Storage for raw state callbacks. More...
 
CallbackManager< void(float)> callback_
 Storage for filtered state callbacks. More...
 
Filterfilter_list_ {nullptr}
 Store all active filters. More...
 
optional< int8_t > accuracy_decimals_
 Accuracy in decimals override. More...
 
optional< StateClassstate_class_ {STATE_CLASS_NONE}
 State class override. More...
 
bool force_update_ {false}
 Force update mode. More...
 
bool has_state_ {false}
 
- Protected Attributes inherited from esphome::EntityBase
StringRef name_
 
const char * object_id_c_str_ {nullptr}
 
const char * icon_c_str_ {nullptr}
 
uint32_t object_id_hash_
 
bool has_own_name_ {false}
 
bool internal_ {false}
 
bool disabled_by_default_ {false}
 
EntityCategory entity_category_ {ENTITY_CATEGORY_NONE}
 
- Protected Attributes inherited from esphome::EntityBase_DeviceClass
const char * device_class_ {nullptr}
 Device class override. More...
 
- Protected Attributes inherited from esphome::EntityBase_UnitOfMeasurement
const char * unit_of_measurement_ {nullptr}
 Unit of measurement override. More...
 
- Protected Attributes inherited from esphome::micronova::MicroNovaSensorListener
bool needs_update_ = false
 
- Protected Attributes inherited from esphome::micronova::MicroNovaBaseListener
MicroNovamicronova_ {nullptr}
 
MicroNovaFunctions function_ = MicroNovaFunctions::STOVE_FUNCTION_VOID
 
uint8_t memory_location_ = 0
 
uint8_t memory_address_ = 0
 

Additional Inherited Members

- Data Fields inherited from esphome::sensor::Sensor
float state
 This member variable stores the last state that has passed through all filters. More...
 
float raw_state
 This member variable stores the current raw state of the sensor, without any filters applied. More...
 
- Protected Member Functions inherited from esphome::EntityBase
virtual uint32_t hash_base ()
 The hash_base() function has been deprecated. More...
 
void calc_object_id_ ()
 

Detailed Description

Definition at line 9 of file micronova_sensor.h.

Constructor & Destructor Documentation

◆ MicroNovaSensor()

esphome::micronova::MicroNovaSensor::MicroNovaSensor ( MicroNova m)
inline

Definition at line 11 of file micronova_sensor.h.

Member Function Documentation

◆ dump_config()

void esphome::micronova::MicroNovaSensor::dump_config ( )
inlineoverridevirtual

Reimplemented from esphome::micronova::MicroNovaBaseListener.

Definition at line 12 of file micronova_sensor.h.

◆ get_set_fan_speed_offset()

uint8_t esphome::micronova::MicroNovaSensor::get_set_fan_speed_offset ( )
inline

Definition at line 20 of file micronova_sensor.h.

◆ process_value_from_stove()

void esphome::micronova::MicroNovaSensor::process_value_from_stove ( int  value_from_stove)
overridevirtual

Implements esphome::micronova::MicroNovaSensorListener.

Definition at line 6 of file micronova_sensor.cpp.

◆ request_value_from_stove()

void esphome::micronova::MicroNovaSensor::request_value_from_stove ( )
inlineoverridevirtual

Implements esphome::micronova::MicroNovaSensorListener.

Definition at line 14 of file micronova_sensor.h.

◆ set_fan_speed_offset()

void esphome::micronova::MicroNovaSensor::set_fan_speed_offset ( uint8_t  f)
inline

Definition at line 19 of file micronova_sensor.h.

Field Documentation

◆ fan_speed_offset_

int esphome::micronova::MicroNovaSensor::fan_speed_offset_ = 0
protected

Definition at line 23 of file micronova_sensor.h.


The documentation for this class was generated from the following files: