mirror of
https://github.com/esphome/esphome-docs.git
synced 2024-11-05 09:20:08 +01:00
88e315e0e4
* Many example yaml tidy-ups * Update components/sensor/hlw8012.rst --------- Co-authored-by: Keith Burzinski <kbx81x@gmail.com>
38 lines
1.1 KiB
ReStructuredText
38 lines
1.1 KiB
ReStructuredText
EKTF2232 Touchscreen Controller
|
|
================================
|
|
|
|
.. seo::
|
|
:description: Instructions for setting up EKTF2232 touchscreen controller with ESPHome
|
|
:image: ektf2232.svg
|
|
:keywords: EKTF2232
|
|
|
|
The ``ektf2232`` component allows using the touchscreen controller
|
|
found in the :doc:`Inkplate 6 Plus </components/display/inkplate6>` with ESPHome.
|
|
The :ref:`I²C <i2c>` is required to be set up in your configuration for this sensor to work.
|
|
|
|
.. code-block:: yaml
|
|
|
|
# Example configuration entry
|
|
touchscreen:
|
|
- platform: ektf2232
|
|
interrupt_pin: GPIOXX
|
|
rts_pin: GPIOXX
|
|
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **id** (*Optional*, :ref:`config-id`): Manually set the ID of this touchscreen.
|
|
- **rts_pin** (*Optional*, :ref:`Pin Schema <config-pin_schema>`): The reset pin of the controller.
|
|
- **interrupt_pin** (*Optional*, :ref:`Pin Schema <config-pin_schema>`): The touch detection pin.
|
|
|
|
- All other options from :ref:`config-touchscreen`.
|
|
|
|
See Also
|
|
--------
|
|
|
|
- :doc:`Touchscreen <index>`
|
|
- :doc:`Inkplate 6 Plus </components/display/inkplate6>`
|
|
- :apiref:`ektf2232/ektf2232.h`
|
|
- :ghedit:`Edit`
|