mirror of
https://github.com/esphome/esphome.git
synced 2025-07-28 14:16:40 +00:00
commit
756aa13779
2
Doxyfile
2
Doxyfile
@ -48,7 +48,7 @@ PROJECT_NAME = ESPHome
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 2025.5.0b4
|
PROJECT_NUMBER = 2025.5.0b5
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
@ -14,11 +14,8 @@ namespace esphome {
|
|||||||
namespace at581x {
|
namespace at581x {
|
||||||
|
|
||||||
class AT581XComponent : public Component, public i2c::I2CDevice {
|
class AT581XComponent : public Component, public i2c::I2CDevice {
|
||||||
#ifdef USE_SWITCH
|
|
||||||
protected:
|
|
||||||
switch_::Switch *rf_power_switch_{nullptr};
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
#ifdef USE_SWITCH
|
||||||
void set_rf_power_switch(switch_::Switch *s) {
|
void set_rf_power_switch(switch_::Switch *s) {
|
||||||
this->rf_power_switch_ = s;
|
this->rf_power_switch_ = s;
|
||||||
s->turn_on();
|
s->turn_on();
|
||||||
@ -48,6 +45,9 @@ class AT581XComponent : public Component, public i2c::I2CDevice {
|
|||||||
bool i2c_read_reg(uint8_t addr, uint8_t &data);
|
bool i2c_read_reg(uint8_t addr, uint8_t &data);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
#ifdef USE_SWITCH
|
||||||
|
switch_::Switch *rf_power_switch_{nullptr};
|
||||||
|
#endif
|
||||||
int freq_;
|
int freq_;
|
||||||
int self_check_time_ms_; /*!< Power-on self-test time, range: 0 ~ 65536 ms */
|
int self_check_time_ms_; /*!< Power-on self-test time, range: 0 ~ 65536 ms */
|
||||||
int protect_time_ms_; /*!< Protection time, recommended 1000 ms */
|
int protect_time_ms_; /*!< Protection time, recommended 1000 ms */
|
||||||
|
@ -34,13 +34,15 @@ class DebugComponent : public PollingComponent {
|
|||||||
#endif
|
#endif
|
||||||
void set_loop_time_sensor(sensor::Sensor *loop_time_sensor) { loop_time_sensor_ = loop_time_sensor; }
|
void set_loop_time_sensor(sensor::Sensor *loop_time_sensor) { loop_time_sensor_ = loop_time_sensor; }
|
||||||
#ifdef USE_ESP32
|
#ifdef USE_ESP32
|
||||||
void on_shutdown() override;
|
|
||||||
void set_psram_sensor(sensor::Sensor *psram_sensor) { this->psram_sensor_ = psram_sensor; }
|
void set_psram_sensor(sensor::Sensor *psram_sensor) { this->psram_sensor_ = psram_sensor; }
|
||||||
#endif // USE_ESP32
|
#endif // USE_ESP32
|
||||||
void set_cpu_frequency_sensor(sensor::Sensor *cpu_frequency_sensor) {
|
void set_cpu_frequency_sensor(sensor::Sensor *cpu_frequency_sensor) {
|
||||||
this->cpu_frequency_sensor_ = cpu_frequency_sensor;
|
this->cpu_frequency_sensor_ = cpu_frequency_sensor;
|
||||||
}
|
}
|
||||||
#endif // USE_SENSOR
|
#endif // USE_SENSOR
|
||||||
|
#ifdef USE_ESP32
|
||||||
|
void on_shutdown() override;
|
||||||
|
#endif // USE_ESP32
|
||||||
protected:
|
protected:
|
||||||
uint32_t free_heap_{};
|
uint32_t free_heap_{};
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"""Constants used by esphome."""
|
"""Constants used by esphome."""
|
||||||
|
|
||||||
__version__ = "2025.5.0b4"
|
__version__ = "2025.5.0b5"
|
||||||
|
|
||||||
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
||||||
VALID_SUBSTITUTIONS_CHARACTERS = (
|
VALID_SUBSTITUTIONS_CHARACTERS = (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user