mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-12-31 18:17:53 +01:00
22 lines
522 B
ReStructuredText
22 lines
522 B
ReStructuredText
|
Debug Component
|
||
|
===============
|
||
|
|
||
|
The ``debug`` component can be used to debug problems with esphomelib. At startup, it prints
|
||
|
a bunch of useful information like reset reason, free heap size, esphomelib version and so on.
|
||
|
|
||
|
.. figure:: /esphomeyaml/components/debug.png
|
||
|
:align: center
|
||
|
|
||
|
Example debug component output.
|
||
|
|
||
|
.. code:: yaml
|
||
|
|
||
|
# Example configuration entry
|
||
|
debug:
|
||
|
|
||
|
# Logger must be at least debug (default)
|
||
|
logger:
|
||
|
level: debug
|
||
|
|
||
|
There are no configuration variables for this component.
|