esphome-docs/components/text_sensor/homeassistant.rst

47 lines
1.5 KiB
ReStructuredText
Raw Normal View History

2020-05-10 21:27:59 +02:00
Home Assistant Text Sensor
==========================
2019-01-06 18:56:14 +01:00
.. seo::
2020-05-10 21:27:59 +02:00
:description: Instructions for setting up Home Assistant text sensors with ESPHome that import states from your Home Assistant instance.
:image: home-assistant.svg
2019-01-06 18:56:14 +01:00
The ``homeassistant`` text sensor platform allows you to create a sensors that import
states from your Home Assistant instance using the :doc:`native API </components/api>`.
2019-01-06 18:56:14 +01:00
.. code-block:: yaml
# Example configuration entry
text_sensor:
- platform: homeassistant
name: "Weather Forecast From Home Assistant"
entity_id: sensor.weather_forecast
2022-11-14 14:20:09 +01:00
Entity state attributes can also be imported:
.. code-block:: yaml
# Example configuration entry
text_sensor:
- platform: homeassistant
id: effect
entity_id: light.led_strip
attribute: effect
2019-01-06 18:56:14 +01:00
Configuration variables:
------------------------
2022-09-14 09:27:23 +02:00
- **name** (*Optional*, string): The name of the text sensor.
2019-01-06 18:56:14 +01:00
- **entity_id** (**Required**, string): The entity ID to import from Home Assistant.
- **attribute** (*Optional*, string): The name of the state attribute to import from the
specified entity. The entity state is used when this option is omitted.
2019-02-07 18:07:16 +01:00
- **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>`.
2019-01-06 18:56:14 +01:00
See Also
--------
- :ref:`sensor-filters`
- :ref:`automation`
2019-05-12 22:44:59 +02:00
- :apiref:`homeassistant/text_sensor/homeassistant_text_sensor.h`
- :ghedit:`Edit`