mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-15 10:45:41 +01:00
39 lines
999 B
ReStructuredText
39 lines
999 B
ReStructuredText
Safe Mode Button
|
|
================
|
|
|
|
.. seo::
|
|
:description: Instructions for setting up buttons that can remotely reboot the ESP in ESPHome into safe mode.
|
|
:image: restart.svg
|
|
|
|
The ``safe_mode`` button allows you to remotely reboot your node into :doc:`/components/safe_mode`. This is useful in certain situations
|
|
where a misbehaving component is preventing Over-The-Air updates from completing successfully.
|
|
|
|
This component requires :doc:`/components/safe_mode` to be configured.
|
|
|
|
.. figure:: images/safemode-ui.png
|
|
:align: center
|
|
:width: 80.0%
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Example configuration entry
|
|
button:
|
|
- platform: safe_mode
|
|
name: "Living Room Restart (Safe Mode)"
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- All options from :ref:`Button <config-button>`.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :doc:`shutdown`
|
|
- :doc:`restart`
|
|
- :doc:`factory_reset`
|
|
- :doc:`/components/switch/safe_mode`
|
|
- :doc:`template`
|
|
- :apiref:`safe_mode/safe_mode_button.h`
|
|
- :ghedit:`Edit`
|