ESPHome  2023.3.2
Data Structures | Public Member Functions | Protected Member Functions | Protected Attributes
esphome::atm90e32::ATM90E32Component Class Reference

#include <atm90e32.h>

Inheritance diagram for esphome::atm90e32::ATM90E32Component:
esphome::PollingComponent esphome::spi::SPIDevice< spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_HIGH, spi::CLOCK_PHASE_TRAILING, spi::DATA_RATE_200KHZ > esphome::Component

Data Structures

struct  ATM90E32Phase
 

Public Member Functions

void setup () override
 
void dump_config () override
 
float get_setup_priority () const override
 
void update () override
 
void set_voltage_sensor (int phase, sensor::Sensor *obj)
 
void set_current_sensor (int phase, sensor::Sensor *obj)
 
void set_power_sensor (int phase, sensor::Sensor *obj)
 
void set_reactive_power_sensor (int phase, sensor::Sensor *obj)
 
void set_forward_active_energy_sensor (int phase, sensor::Sensor *obj)
 
void set_reverse_active_energy_sensor (int phase, sensor::Sensor *obj)
 
void set_power_factor_sensor (int phase, sensor::Sensor *obj)
 
void set_volt_gain (int phase, uint16_t gain)
 
void set_ct_gain (int phase, uint16_t gain)
 
void set_freq_sensor (sensor::Sensor *freq_sensor)
 
void set_chip_temperature_sensor (sensor::Sensor *chip_temperature_sensor)
 
void set_line_freq (int freq)
 
void set_current_phases (int phases)
 
void set_pga_gain (uint16_t gain)
 
- Public Member Functions inherited from esphome::PollingComponent
 PollingComponent ()
 
 PollingComponent (uint32_t update_interval)
 Initialize this polling component with the given update interval in ms. More...
 
virtual void set_update_interval (uint32_t update_interval)
 Manually set the update interval in ms for this polling object. More...
 
void call_setup () override
 
virtual uint32_t get_update_interval () const
 Get the update interval in ms of this sensor. More...
 
- Public Member Functions inherited from esphome::Component
virtual void loop ()
 This method will be called repeatedly. 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...
 
bool is_failed ()
 
bool is_ready ()
 
virtual bool can_proceed ()
 
bool status_has_warning ()
 
bool status_has_error ()
 
void status_set_warning ()
 
void status_set_error ()
 
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...
 
- Public Member Functions inherited from esphome::spi::SPIDevice< spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_HIGH, spi::CLOCK_PHASE_TRAILING, spi::DATA_RATE_200KHZ >
 SPIDevice ()=default
 
 SPIDevice (SPIComponent *parent, GPIOPin *cs)
 
void set_spi_parent (SPIComponent *parent)
 
void set_cs_pin (GPIOPin *cs)
 
void spi_setup ()
 
void enable ()
 
void disable ()
 
uint8_t read_byte ()
 
void read_array (uint8_t *data, size_t length)
 
std::array< uint8_t, N > read_array ()
 
void write_byte (uint8_t data)
 
void write_byte16 (uint16_t data)
 
void write_array16 (const uint16_t *data, size_t length)
 
void write_array (const uint8_t *data, size_t length)
 
void write_array (const std::array< uint8_t, N > &data)
 
void write_array (const std::vector< uint8_t > &data)
 
uint8_t transfer_byte (uint8_t data)
 
void transfer_array (uint8_t *data, size_t length)
 
void transfer_array (std::array< uint8_t, N > &data)
 

Protected Member Functions

uint16_t read16_ (uint16_t a_register)
 
int read32_ (uint16_t addr_h, uint16_t addr_l)
 
void write16_ (uint16_t a_register, uint16_t val)
 
float get_line_voltage_a_ ()
 
float get_line_voltage_b_ ()
 
float get_line_voltage_c_ ()
 
float get_line_current_a_ ()
 
float get_line_current_b_ ()
 
float get_line_current_c_ ()
 
float get_active_power_a_ ()
 
float get_active_power_b_ ()
 
float get_active_power_c_ ()
 
float get_reactive_power_a_ ()
 
float get_reactive_power_b_ ()
 
float get_reactive_power_c_ ()
 
float get_power_factor_a_ ()
 
float get_power_factor_b_ ()
 
float get_power_factor_c_ ()
 
float get_forward_active_energy_a_ ()
 
float get_forward_active_energy_b_ ()
 
float get_forward_active_energy_c_ ()
 
float get_reverse_active_energy_a_ ()
 
float get_reverse_active_energy_b_ ()
 
float get_reverse_active_energy_c_ ()
 
float get_frequency_ ()
 
float get_chip_temperature_ ()
 
- Protected Member Functions inherited from esphome::Component
virtual void call_loop ()
 
virtual void call_dump_config ()
 
void set_interval (const std::string &name, uint32_t interval, std::function< void()> &&f)
 Set an interval function with a unique name. More...
 
void set_interval (uint32_t interval, std::function< void()> &&f)
 
bool cancel_interval (const std::string &name)
 Cancel an interval function. More...
 
void set_retry (const std::string &name, uint32_t initial_wait_time, uint8_t max_attempts, std::function< RetryResult(uint8_t)> &&f, float backoff_increase_factor=1.0f)
 Set an retry function with a unique name. More...
 
void set_retry (uint32_t initial_wait_time, uint8_t max_attempts, std::function< RetryResult(uint8_t)> &&f, float backoff_increase_factor=1.0f)
 
bool cancel_retry (const std::string &name)
 Cancel a retry function. More...
 
void set_timeout (const std::string &name, uint32_t timeout, std::function< void()> &&f)
 Set a timeout function with a unique name. More...
 
void set_timeout (uint32_t timeout, std::function< void()> &&f)
 
bool cancel_timeout (const std::string &name)
 Cancel a timeout function. More...
 
void defer (const std::string &name, std::function< void()> &&f)
 Defer a callback to the next loop() call. More...
 
void defer (std::function< void()> &&f)
 Defer a callback to the next loop() call. More...
 
bool cancel_defer (const std::string &name)
 Cancel a defer callback using the specified name, name must not be empty. More...
 

Protected Attributes

struct esphome::atm90e32::ATM90E32Component::ATM90E32Phase phase_ [3]
 
sensor::Sensorfreq_sensor_ {nullptr}
 
sensor::Sensorchip_temperature_sensor_ {nullptr}
 
uint16_t pga_gain_ {0x15}
 
int line_freq_ {60}
 
int current_phases_ {3}
 
- Protected Attributes inherited from esphome::PollingComponent
uint32_t update_interval_
 
- Protected Attributes inherited from esphome::Component
uint32_t component_state_ {0x0000}
 State of this component. More...
 
float setup_priority_override_ {NAN}
 
const char * component_source_ {nullptr}
 
- Protected Attributes inherited from esphome::spi::SPIDevice< spi::BIT_ORDER_MSB_FIRST, spi::CLOCK_POLARITY_HIGH, spi::CLOCK_PHASE_TRAILING, spi::DATA_RATE_200KHZ >
SPIComponentparent_
 
GPIOPincs_
 

Detailed Description

Definition at line 10 of file atm90e32.h.

Member Function Documentation

◆ dump_config()

void esphome::atm90e32::ATM90E32Component::dump_config ( )
overridevirtual

Reimplemented from esphome::Component.

Definition at line 128 of file atm90e32.cpp.

◆ get_active_power_a_()

float esphome::atm90e32::ATM90E32Component::get_active_power_a_ ( )
protected

Definition at line 230 of file atm90e32.cpp.

◆ get_active_power_b_()

float esphome::atm90e32::ATM90E32Component::get_active_power_b_ ( )
protected

Definition at line 234 of file atm90e32.cpp.

◆ get_active_power_c_()

float esphome::atm90e32::ATM90E32Component::get_active_power_c_ ( )
protected

Definition at line 238 of file atm90e32.cpp.

◆ get_chip_temperature_()

float esphome::atm90e32::ATM90E32Component::get_chip_temperature_ ( )
protected

Definition at line 324 of file atm90e32.cpp.

◆ get_forward_active_energy_a_()

float esphome::atm90e32::ATM90E32Component::get_forward_active_energy_a_ ( )
protected

Definition at line 266 of file atm90e32.cpp.

◆ get_forward_active_energy_b_()

float esphome::atm90e32::ATM90E32Component::get_forward_active_energy_b_ ( )
protected

Definition at line 275 of file atm90e32.cpp.

◆ get_forward_active_energy_c_()

float esphome::atm90e32::ATM90E32Component::get_forward_active_energy_c_ ( )
protected

Definition at line 284 of file atm90e32.cpp.

◆ get_frequency_()

float esphome::atm90e32::ATM90E32Component::get_frequency_ ( )
protected

Definition at line 320 of file atm90e32.cpp.

◆ get_line_current_a_()

float esphome::atm90e32::ATM90E32Component::get_line_current_a_ ( )
protected

Definition at line 218 of file atm90e32.cpp.

◆ get_line_current_b_()

float esphome::atm90e32::ATM90E32Component::get_line_current_b_ ( )
protected

Definition at line 222 of file atm90e32.cpp.

◆ get_line_current_c_()

float esphome::atm90e32::ATM90E32Component::get_line_current_c_ ( )
protected

Definition at line 226 of file atm90e32.cpp.

◆ get_line_voltage_a_()

float esphome::atm90e32::ATM90E32Component::get_line_voltage_a_ ( )
protected

Definition at line 206 of file atm90e32.cpp.

◆ get_line_voltage_b_()

float esphome::atm90e32::ATM90E32Component::get_line_voltage_b_ ( )
protected

Definition at line 210 of file atm90e32.cpp.

◆ get_line_voltage_c_()

float esphome::atm90e32::ATM90E32Component::get_line_voltage_c_ ( )
protected

Definition at line 214 of file atm90e32.cpp.

◆ get_power_factor_a_()

float esphome::atm90e32::ATM90E32Component::get_power_factor_a_ ( )
protected

Definition at line 254 of file atm90e32.cpp.

◆ get_power_factor_b_()

float esphome::atm90e32::ATM90E32Component::get_power_factor_b_ ( )
protected

Definition at line 258 of file atm90e32.cpp.

◆ get_power_factor_c_()

float esphome::atm90e32::ATM90E32Component::get_power_factor_c_ ( )
protected

Definition at line 262 of file atm90e32.cpp.

◆ get_reactive_power_a_()

float esphome::atm90e32::ATM90E32Component::get_reactive_power_a_ ( )
protected

Definition at line 242 of file atm90e32.cpp.

◆ get_reactive_power_b_()

float esphome::atm90e32::ATM90E32Component::get_reactive_power_b_ ( )
protected

Definition at line 246 of file atm90e32.cpp.

◆ get_reactive_power_c_()

float esphome::atm90e32::ATM90E32Component::get_reactive_power_c_ ( )
protected

Definition at line 250 of file atm90e32.cpp.

◆ get_reverse_active_energy_a_()

float esphome::atm90e32::ATM90E32Component::get_reverse_active_energy_a_ ( )
protected

Definition at line 293 of file atm90e32.cpp.

◆ get_reverse_active_energy_b_()

float esphome::atm90e32::ATM90E32Component::get_reverse_active_energy_b_ ( )
protected

Definition at line 302 of file atm90e32.cpp.

◆ get_reverse_active_energy_c_()

float esphome::atm90e32::ATM90E32Component::get_reverse_active_energy_c_ ( )
protected

Definition at line 311 of file atm90e32.cpp.

◆ get_setup_priority()

float esphome::atm90e32::ATM90E32Component::get_setup_priority ( ) const
overridevirtual

Reimplemented from esphome::Component.

Definition at line 159 of file atm90e32.cpp.

◆ read16_()

uint16_t esphome::atm90e32::ATM90E32Component::read16_ ( uint16_t  a_register)
protected

Definition at line 161 of file atm90e32.cpp.

◆ read32_()

int esphome::atm90e32::ATM90E32Component::read32_ ( uint16_t  addr_h,
uint16_t  addr_l 
)
protected

Definition at line 180 of file atm90e32.cpp.

◆ set_chip_temperature_sensor()

void esphome::atm90e32::ATM90E32Component::set_chip_temperature_sensor ( sensor::Sensor chip_temperature_sensor)
inline

Definition at line 34 of file atm90e32.h.

◆ set_ct_gain()

void esphome::atm90e32::ATM90E32Component::set_ct_gain ( int  phase,
uint16_t  gain 
)
inline

Definition at line 31 of file atm90e32.h.

◆ set_current_phases()

void esphome::atm90e32::ATM90E32Component::set_current_phases ( int  phases)
inline

Definition at line 38 of file atm90e32.h.

◆ set_current_sensor()

void esphome::atm90e32::ATM90E32Component::set_current_sensor ( int  phase,
sensor::Sensor obj 
)
inline

Definition at line 20 of file atm90e32.h.

◆ set_forward_active_energy_sensor()

void esphome::atm90e32::ATM90E32Component::set_forward_active_energy_sensor ( int  phase,
sensor::Sensor obj 
)
inline

Definition at line 23 of file atm90e32.h.

◆ set_freq_sensor()

void esphome::atm90e32::ATM90E32Component::set_freq_sensor ( sensor::Sensor freq_sensor)
inline

Definition at line 33 of file atm90e32.h.

◆ set_line_freq()

void esphome::atm90e32::ATM90E32Component::set_line_freq ( int  freq)
inline

Definition at line 37 of file atm90e32.h.

◆ set_pga_gain()

void esphome::atm90e32::ATM90E32Component::set_pga_gain ( uint16_t  gain)
inline

Definition at line 39 of file atm90e32.h.

◆ set_power_factor_sensor()

void esphome::atm90e32::ATM90E32Component::set_power_factor_sensor ( int  phase,
sensor::Sensor obj 
)
inline

Definition at line 29 of file atm90e32.h.

◆ set_power_sensor()

void esphome::atm90e32::ATM90E32Component::set_power_sensor ( int  phase,
sensor::Sensor obj 
)
inline

Definition at line 21 of file atm90e32.h.

◆ set_reactive_power_sensor()

void esphome::atm90e32::ATM90E32Component::set_reactive_power_sensor ( int  phase,
sensor::Sensor obj 
)
inline

Definition at line 22 of file atm90e32.h.

◆ set_reverse_active_energy_sensor()

void esphome::atm90e32::ATM90E32Component::set_reverse_active_energy_sensor ( int  phase,
sensor::Sensor obj 
)
inline

Definition at line 26 of file atm90e32.h.

◆ set_volt_gain()

void esphome::atm90e32::ATM90E32Component::set_volt_gain ( int  phase,
uint16_t  gain 
)
inline

Definition at line 30 of file atm90e32.h.

◆ set_voltage_sensor()

void esphome::atm90e32::ATM90E32Component::set_voltage_sensor ( int  phase,
sensor::Sensor obj 
)
inline

Definition at line 19 of file atm90e32.h.

◆ setup()

void esphome::atm90e32::ATM90E32Component::setup ( )
overridevirtual

Reimplemented from esphome::Component.

Definition at line 88 of file atm90e32.cpp.

◆ update()

void esphome::atm90e32::ATM90E32Component::update ( )
overridevirtual

Implements esphome::PollingComponent.

Definition at line 10 of file atm90e32.cpp.

◆ write16_()

void esphome::atm90e32::ATM90E32Component::write16_ ( uint16_t  a_register,
uint16_t  val 
)
protected

Definition at line 191 of file atm90e32.cpp.

Field Documentation

◆ chip_temperature_sensor_

sensor::Sensor* esphome::atm90e32::ATM90E32Component::chip_temperature_sensor_ {nullptr}
protected

Definition at line 84 of file atm90e32.h.

◆ current_phases_

int esphome::atm90e32::ATM90E32Component::current_phases_ {3}
protected

Definition at line 87 of file atm90e32.h.

◆ freq_sensor_

sensor::Sensor* esphome::atm90e32::ATM90E32Component::freq_sensor_ {nullptr}
protected

Definition at line 83 of file atm90e32.h.

◆ line_freq_

int esphome::atm90e32::ATM90E32Component::line_freq_ {60}
protected

Definition at line 86 of file atm90e32.h.

◆ pga_gain_

uint16_t esphome::atm90e32::ATM90E32Component::pga_gain_ {0x15}
protected

Definition at line 85 of file atm90e32.h.

◆ phase_

struct esphome::atm90e32::ATM90E32Component::ATM90E32Phase esphome::atm90e32::ATM90E32Component::phase_[3]
protected

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