:mod:`onewireio` ================ .. py:module:: onewireio .. autoapi-nested-parse:: Low-level bit primitives for Maxim (formerly Dallas Semi) one-wire protocol. Protocol definition is here: https://www.maximintegrated.com/en/app-notes/index.mvp/id/126 .. raw:: html

Available on these boards

.. py:class:: OneWire(pin: microcontroller.Pin) Create a OneWire object associated with the given pin. The object implements the lowest level timing-sensitive bits of the protocol. :param ~microcontroller.Pin pin: Pin connected to the OneWire bus .. note:: The OneWire class is available on `busio` and `bitbangio` in CircuitPython 7.x for backwards compatibility but will be removed in CircuitPython 8.0.0. Read a short series of pulses:: import onewireio import board onewire = onewireio.OneWire(board.D7) onewire.reset() onewire.write_bit(True) onewire.write_bit(False) print(onewire.read_bit()) .. py:method:: deinit() -> None Deinitialize the OneWire bus and release any hardware resources for reuse. .. py:method:: __enter__() -> OneWire No-op used by Context Managers. .. py:method:: __exit__() -> None Automatically deinitializes the hardware when exiting a context. See :ref:`lifetime-and-contextmanagers` for more info. .. py:method:: reset() -> bool Reset the OneWire bus and read presence :returns: False when at least one device is present :rtype: bool .. py:method:: read_bit() -> bool Read in a bit :returns: bit state read :rtype: bool .. py:method:: write_bit(value: bool) -> None Write out a bit based on value.