:mod:`touchio` ============== .. py:module:: touchio .. autoapi-nested-parse:: Touch related IO The `touchio` module contains classes to provide access to touch IO typically accelerated by hardware on the onboard microcontroller. All classes change hardware state and should be deinitialized when they are no longer needed if the program continues after use. To do so, either call :py:meth:`!deinit` or use a context manager. See :ref:`lifetime-and-contextmanagers` for more info. For example:: import touchio from board import * touch_pin = touchio.TouchIn(D6) print(touch_pin.value) This example will initialize the the device, and print the :py:data:`~touchio.TouchIn.value`. .. raw:: html
Available on these boards