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>
36 lines
1.1 KiB
ReStructuredText
36 lines
1.1 KiB
ReStructuredText
FT63X6 Touchscreen Controller
|
|
================================
|
|
|
|
.. seo::
|
|
:description: Instructions for setting up FT63X6 touchscreen controller with ESPHome
|
|
:image: wt32-sc01.png
|
|
:keywords: FT63X6, WT32-SC01
|
|
|
|
The ``ft63x6`` component allows using the touchscreen controller found in
|
|
`Seeed Studio's WT32-SC01 <https://www.seeedstudio.com/ESP32-Development-board-WT32-SC01-p-4735.html>`__
|
|
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: ft63x6
|
|
interrupt_pin: GPIOXX
|
|
|
|
Configuration variables:
|
|
------------------------
|
|
|
|
- **id** (*Optional*, :ref:`config-id`): Manually set the ID of this touchscreen.
|
|
- **reset_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>`
|
|
- :apiref:`ft63x6/ft63x6.h`
|
|
- :ghedit:`Edit`
|