esphome-docs/components/text_sensor/version.rst

51 lines
1.3 KiB
ReStructuredText
Raw Normal View History

Version Text Sensor
===================
2018-11-14 22:12:27 +01:00
.. seo::
:description: Instructions for setting up version text sensors.
:image: new-box.svg
2018-11-14 22:12:27 +01:00
2019-02-16 23:25:23 +01:00
The ``version`` text sensor platform exposes the ESPHome version the firmware
was compiled against as a text sensor.
.. figure:: images/version-ui.png
:align: center
:width: 80.0%
.. code-block:: yaml
# Example configuration entry
text_sensor:
- platform: version
2019-02-16 23:25:23 +01:00
name: "ESPHome Version"
Configuration variables:
------------------------
- **name** (**Required**, string): The name of the text sensor.
- **hide_timestamp** (*Optional*, boolean): Allows you to hide the compilation timestamp from the version string. Defaults to ``false``.
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
2019-02-17 12:28:17 +01:00
- All other options from :ref:`Text Sensor <config-text_sensor>`.
Disabling the compilation timestamp:
------------------------------------
.. code-block:: yaml
# Example configuration entry
text_sensor:
- platform: version
name: "ESPHome Version"
hide_timestamp: true
This will, for example, change the output of the sensor from:
``1.15.0-dev (Jun 8 2020, 18:53:16)`` to ``1.15.0-dev``
See Also
--------
2019-05-12 22:44:59 +02:00
- :apiref:`version/version_text_sensor.h`
- :ghedit:`Edit`