2018-05-13 11:37:02 +02:00
|
|
|
Shutdown Switch
|
|
|
|
===============
|
|
|
|
|
|
|
|
The ``shutdown`` switch platform allows you to shutdown your node remotely
|
|
|
|
through Home Assistant. It does this by putting the node into deep sleep mode with no
|
|
|
|
wakeup source selected. After enabling, the only way to startup the ESP again is by
|
|
|
|
pressing the reset button or restarting the power supply.
|
|
|
|
|
2018-06-01 18:10:00 +02:00
|
|
|
.. figure:: images/shutdown-ui.png
|
|
|
|
:align: center
|
|
|
|
:width: 80.0%
|
2018-05-13 11:37:02 +02:00
|
|
|
|
|
|
|
.. code:: yaml
|
|
|
|
|
|
|
|
# Example configuration entry
|
|
|
|
switch:
|
|
|
|
- platform: shutdown
|
|
|
|
name: "Living Room Shutdown"
|
|
|
|
|
|
|
|
Configuration variables:
|
2018-08-24 22:44:01 +02:00
|
|
|
------------------------
|
2018-05-13 11:37:02 +02:00
|
|
|
|
2018-06-01 18:10:00 +02:00
|
|
|
- **name** (**Required**, string): The name for the switch.
|
|
|
|
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
|
|
|
|
- All other options from :ref:`Switch <config-switch>` and :ref:`MQTT Component <config-mqtt-component>`.
|
|
|
|
|
|
|
|
See Also
|
2018-08-24 22:44:01 +02:00
|
|
|
--------
|
2018-06-01 18:10:00 +02:00
|
|
|
|
|
|
|
- :doc:`restart`
|
|
|
|
- :doc:`template`
|
|
|
|
- :doc:`API Reference </api/switch/shutdown>`
|
2018-06-04 08:17:22 +02:00
|
|
|
- `Edit this page on GitHub <https://github.com/OttoWinter/esphomedocs/blob/current/esphomeyaml/components/switch/shutdown.rst>`__
|