mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-03 09:00:28 +01:00
41 lines
1.4 KiB
ReStructuredText
41 lines
1.4 KiB
ReStructuredText
Nextion Touch Component
|
|
=======================
|
|
|
|
The ``nextion`` binary sensor platform lets you track when a component on the display is
|
|
touched or not. The binary sensor will turn on when the component with the given component and page id is
|
|
pressed on, and will turn off as soon as the finger is released.
|
|
|
|
See :doc:`/esphomeyaml/components/display/nextion` for setting up the display
|
|
|
|
.. code:: yaml
|
|
|
|
# Example configuration entry
|
|
display:
|
|
- platform: nextion
|
|
# ...
|
|
|
|
binary_sensor:
|
|
- platform: nextion
|
|
page_id: 0
|
|
component_id: 2
|
|
name: "Nextion Component 2 Touch"
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **name** (**Required**, string): The name of the binary sensor.
|
|
- **page_id** (**Required**, int): The ID of the page the component is on. Use ``0`` for the default page.
|
|
- **component_id** (**Required**, int): The ID (the number, not name!) of the component to track.
|
|
- **nextion_id** (*Optional*, :ref:`config-id`): Manually specify the ID of the Nextion display.
|
|
- All other options from :ref:`Binary Sensor <config-binary_sensor>` and :ref:`MQTT Component <config-mqtt-component>`.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :doc:`/esphomeyaml/components/display/nextion`
|
|
- :doc:`index`
|
|
- :doc:`API Reference </api/display/nextion>`
|
|
- `Edit this page on GitHub <https://github.com/OttoWinter/esphomedocs/blob/current/esphomeyaml/components/binary_sensor/nextion.rst>`__
|
|
|
|
.. disqus::
|