ESPHome
2022.6.2
|
#include <as3935.h>
Public Member Functions | |
void | setup () override |
void | dump_config () override |
float | get_setup_priority () const override |
void | loop () override |
void | set_irq_pin (GPIOPin *irq_pin) |
void | set_distance_sensor (sensor::Sensor *distance_sensor) |
void | set_energy_sensor (sensor::Sensor *energy_sensor) |
void | set_thunder_alert_binary_sensor (binary_sensor::BinarySensor *thunder_alert_binary_sensor) |
void | set_indoor (bool indoor) |
void | write_indoor (bool indoor) |
void | set_noise_level (uint8_t noise_level) |
void | write_noise_level (uint8_t noise_level) |
void | set_watchdog_threshold (uint8_t watchdog_threshold) |
void | write_watchdog_threshold (uint8_t watchdog_threshold) |
void | set_spike_rejection (uint8_t spike_rejection) |
void | write_spike_rejection (uint8_t write_spike_rejection) |
void | set_lightning_threshold (uint8_t lightning_threshold) |
void | write_lightning_threshold (uint8_t lightning_threshold) |
void | set_mask_disturber (bool mask_disturber) |
void | write_mask_disturber (bool enabled) |
void | set_div_ratio (uint8_t div_ratio) |
void | write_div_ratio (uint8_t div_ratio) |
void | set_capacitance (uint8_t capacitance) |
void | write_capacitance (uint8_t capacitance) |
![]() | |
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 () |
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... | |
Protected Member Functions | |
uint8_t | read_interrupt_register_ () |
void | clear_statistics_ () |
uint8_t | get_distance_to_storm_ () |
uint32_t | get_lightning_energy_ () |
virtual uint8_t | read_register (uint8_t reg)=0 |
uint8_t | read_register_ (uint8_t reg, uint8_t mask) |
virtual void | write_register (uint8_t reg, uint8_t mask, uint8_t bits, uint8_t start_position)=0 |
![]() | |
virtual void | call_loop () |
virtual void | call_setup () |
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()> &&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()> &&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 | |
sensor::Sensor * | distance_sensor_ |
sensor::Sensor * | energy_sensor_ |
binary_sensor::BinarySensor * | thunder_alert_binary_sensor_ |
GPIOPin * | irq_pin_ |
bool | indoor_ |
uint8_t | noise_level_ |
uint8_t | watchdog_threshold_ |
uint8_t | spike_rejection_ |
uint8_t | lightning_threshold_ |
bool | mask_disturber_ |
uint8_t | div_ratio_ |
uint8_t | capacitance_ |
![]() | |
uint32_t | component_state_ {0x0000} |
State of this component. More... | |
float | setup_priority_override_ {NAN} |
const char * | component_source_ = nullptr |
|
protected |
Definition at line 187 of file as3935.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Reimplemented in esphome::as3935_spi::SPIAS3935Component, and esphome::as3935_i2c::I2CAS3935Component.
Definition at line 26 of file as3935.cpp.
|
protected |
Definition at line 198 of file as3935.cpp.
|
protected |
Definition at line 203 of file as3935.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 34 of file as3935.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 36 of file as3935.cpp.
|
protected |
Definition at line 175 of file as3935.cpp.
|
protectedpure virtual |
Implemented in esphome::as3935_spi::SPIAS3935Component, and esphome::as3935_i2c::I2CAS3935Component.
|
protected |
Definition at line 220 of file as3935.cpp.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
overridevirtual |
Reimplemented from esphome::Component.
Reimplemented in esphome::as3935_spi::SPIAS3935Component.
Definition at line 9 of file as3935.cpp.
void esphome::as3935::AS3935Component::write_capacitance | ( | uint8_t | capacitance | ) |
Definition at line 162 of file as3935.cpp.
void esphome::as3935::AS3935Component::write_div_ratio | ( | uint8_t | div_ratio | ) |
Definition at line 138 of file as3935.cpp.
void esphome::as3935::AS3935Component::write_indoor | ( | bool | indoor | ) |
Definition at line 59 of file as3935.cpp.
void esphome::as3935::AS3935Component::write_lightning_threshold | ( | uint8_t | lightning_threshold | ) |
Definition at line 105 of file as3935.cpp.
void esphome::as3935::AS3935Component::write_mask_disturber | ( | bool | enabled | ) |
Definition at line 126 of file as3935.cpp.
void esphome::as3935::AS3935Component::write_noise_level | ( | uint8_t | noise_level | ) |
Definition at line 82 of file as3935.cpp.
|
protectedpure virtual |
Implemented in esphome::as3935_spi::SPIAS3935Component, and esphome::as3935_i2c::I2CAS3935Component.
void esphome::as3935::AS3935Component::write_spike_rejection | ( | uint8_t | write_spike_rejection | ) |
Definition at line 94 of file as3935.cpp.
void esphome::as3935::AS3935Component::write_watchdog_threshold | ( | uint8_t | watchdog_threshold | ) |
Definition at line 70 of file as3935.cpp.
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |
|
protected |