ESPHome 2025.8.0b1
|
SafeModeComponent provides a safe way to recover from repeated boot failures. More...
#include <safe_mode.h>
Public Member Functions | |
bool | should_enter_safe_mode (uint8_t num_attempts, uint32_t enable_time, uint32_t boot_is_good_after) |
void | set_safe_mode_pending (const bool &pending) |
Set to true if the next startup will enter safe mode. | |
bool | get_safe_mode_pending () |
void | dump_config () override |
float | get_setup_priority () const override |
void | loop () override |
void | clean_rtc () |
void | on_safe_shutdown () override |
void | add_on_safe_mode_callback (std::function< void()> &&callback) |
![]() | |
virtual void | setup () |
Where the component's initialization should happen. | |
float | get_actual_setup_priority () const |
void | set_setup_priority (float priority) |
virtual float | get_loop_priority () const |
priority of loop(). | |
void | call () |
virtual void | on_shutdown () |
virtual bool | teardown () |
Called during teardown to allow component to gracefully finish operations. | |
virtual void | on_powerdown () |
Called after teardown is complete to power down hardware. | |
uint8_t | get_component_state () const |
void | reset_to_construction_state () |
Reset this component back to the construction state to allow setup to run again. | |
bool | is_in_loop_state () const |
Check if this component has completed setup and is in the loop state. | |
virtual void | mark_failed () |
Mark this component as failed. | |
void | mark_failed (const char *message) |
void | disable_loop () |
Disable this component's loop. | |
void | enable_loop () |
Enable this component's loop. | |
void | enable_loop_soon_any_context () |
Thread and ISR-safe version of enable_loop() that can be called from any context. | |
bool | is_failed () const |
bool | is_ready () const |
virtual bool | can_proceed () |
bool | status_has_warning () const |
bool | status_has_error () const |
void | status_set_warning (const char *message=nullptr) |
void | status_set_error (const char *message=nullptr) |
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. | |
const char * | get_component_source () const |
Get the integration where this component was declared as a string. | |
bool | should_warn_of_blocking (uint32_t blocking_time) |
Protected Member Functions | |
void | write_rtc_ (uint32_t val) |
uint32_t | read_rtc_ () |
![]() | |
virtual void | call_loop () |
virtual void | call_setup () |
virtual void | call_dump_config () |
void | set_component_state_ (uint8_t state) |
Helper to set component state (clears state bits and sets new state) | |
void | set_interval (const std::string &name, uint32_t interval, std::function< void()> &&f) |
Set an interval function with a unique name. | |
void | set_interval (const char *name, uint32_t interval, std::function< void()> &&f) |
Set an interval function with a const char* name. | |
void | set_interval (uint32_t interval, std::function< void()> &&f) |
bool | cancel_interval (const std::string &name) |
Cancel an interval function. | |
bool | cancel_interval (const char *name) |
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. | |
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. | |
void | set_timeout (const std::string &name, uint32_t timeout, std::function< void()> &&f) |
Set a timeout function with a unique name. | |
void | set_timeout (const char *name, uint32_t timeout, std::function< void()> &&f) |
Set a timeout function with a const char* name. | |
void | set_timeout (uint32_t timeout, std::function< void()> &&f) |
bool | cancel_timeout (const std::string &name) |
Cancel a timeout function. | |
bool | cancel_timeout (const char *name) |
void | defer (const std::string &name, std::function< void()> &&f) |
Defer a callback to the next loop() call. | |
void | defer (const char *name, std::function< void()> &&f) |
Defer a callback to the next loop() call with a const char* name. | |
void | defer (std::function< void()> &&f) |
Defer a callback to the next loop() call. | |
bool | cancel_defer (const std::string &name) |
Cancel a defer callback using the specified name, name must not be empty. | |
Protected Attributes | |
uint32_t | safe_mode_boot_is_good_after_ {60000} |
The amount of time after which the boot is considered successful. | |
uint32_t | safe_mode_enable_time_ {60000} |
The time safe mode should remain active for. | |
uint32_t | safe_mode_rtc_value_ {0} |
uint32_t | safe_mode_start_time_ {0} |
stores when safe mode was enabled | |
bool | boot_successful_ {false} |
set to true after boot is considered successful | |
uint8_t | safe_mode_num_attempts_ {0} |
ESPPreferenceObject | rtc_ |
CallbackManager< void()> | safe_mode_callback_ {} |
![]() | |
const char * | component_source_ {nullptr} |
uint16_t | warn_if_blocking_over_ {WARN_IF_BLOCKING_OVER_MS} |
Warn if blocked for this many ms (max 65.5s) | |
uint8_t | component_state_ {0x00} |
State of this component - each bit has a purpose: Bits 0-2: Component state (0x00=CONSTRUCTION, 0x01=SETUP, 0x02=LOOP, 0x03=FAILED, 0x04=LOOP_DONE) Bit 3: STATUS_LED_WARNING Bit 4: STATUS_LED_ERROR Bits 5-7: Unused - reserved for future expansion. | |
volatile bool | pending_enable_loop_ {false} |
ISR-safe flag for enable_loop_soon_any_context. | |
Static Protected Attributes | |
static const uint32_t | ENTER_SAFE_MODE_MAGIC |
a magic number to indicate that safe mode should be entered on next boot | |
SafeModeComponent provides a safe way to recover from repeated boot failures.
Definition at line 12 of file safe_mode.h.
|
inline |
Definition at line 28 of file safe_mode.h.
void esphome::safe_mode::SafeModeComponent::clean_rtc | ( | ) |
Definition at line 126 of file safe_mode.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 17 of file safe_mode.cpp.
bool esphome::safe_mode::SafeModeComponent::get_safe_mode_pending | ( | ) |
Definition at line 64 of file safe_mode.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 37 of file safe_mode.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 39 of file safe_mode.cpp.
|
overridevirtual |
Reimplemented from esphome::Component.
Definition at line 128 of file safe_mode.cpp.
|
protected |
Definition at line 119 of file safe_mode.cpp.
void esphome::safe_mode::SafeModeComponent::set_safe_mode_pending | ( | const bool & | pending | ) |
Set to true if the next startup will enter safe mode.
Definition at line 50 of file safe_mode.cpp.
bool esphome::safe_mode::SafeModeComponent::should_enter_safe_mode | ( | uint8_t | num_attempts, |
uint32_t | enable_time, | ||
uint32_t | boot_is_good_after ) |
Definition at line 68 of file safe_mode.cpp.
|
protected |
Definition at line 114 of file safe_mode.cpp.
|
protected |
set to true after boot is considered successful
Definition at line 42 of file safe_mode.h.
|
staticprotected |
a magic number to indicate that safe mode should be entered on next boot
Definition at line 48 of file safe_mode.h.
|
protected |
Definition at line 45 of file safe_mode.h.
|
protected |
The amount of time after which the boot is considered successful.
Definition at line 37 of file safe_mode.h.
|
protected |
Definition at line 46 of file safe_mode.h.
|
protected |
The time safe mode should remain active for.
Definition at line 38 of file safe_mode.h.
|
protected |
Definition at line 43 of file safe_mode.h.
|
protected |
Definition at line 39 of file safe_mode.h.
|
protected |
stores when safe mode was enabled
Definition at line 40 of file safe_mode.h.