:mod:`analogio` =============== .. py:module:: analogio .. autoapi-nested-parse:: Analog hardware support The `analogio` module contains classes to provide access to analog IO typically implemented with digital-to-analog (DAC) and analog-to-digital (ADC) converters. 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 analogio from board import * pin = analogio.AnalogIn(A0) print(pin.value) pin.deinit() This example will initialize the the device, read :py:data:`~analogio.AnalogIn.value` and then :py:meth:`~analogio.AnalogIn.deinit` the hardware. The last step is optional because CircuitPython will do it automatically after the program finishes. .. raw:: html
Available on these boards