:mod:`keypad` ============= .. py:module:: keypad .. autoapi-nested-parse:: Support for scanning keys and key matrices The `keypad` module provides native support to scan sets of keys or buttons, connected independently to individual pins, connected to a shift register, or connected in a row-and-column matrix. .. raw:: html

Available on these boards

.. py:class:: Event(key_number: int = 0, pressed: bool = True, timestamp: Optional[int] = None) A key transition event. Create a key transition event, which reports a key-pressed or key-released transition. :param int key_number: the key number :param bool pressed: ``True`` if the key was pressed; ``False`` if it was released. :param int timestamp: The time in milliseconds that the keypress occurred in the `supervisor.ticks_ms` time system. If specified as None, the current value of `supervisor.ticks_ms` is used. .. py:attribute:: key_number :annotation: :int The key number. .. py:attribute:: pressed :annotation: :bool ``True`` if the event represents a key down (pressed) transition. The opposite of `released`. .. py:attribute:: released :annotation: :bool ``True`` if the event represents a key up (released) transition. The opposite of `pressed`. .. py:attribute:: timestamp :annotation: :int The timestamp .. py:method:: __eq__(other: object) -> bool Two `Event` objects are equal if their `key_number` and `pressed`/`released` values are equal. Note that this does not compare the event timestamps. .. py:method:: __hash__() -> int Returns a hash for the `Event`, so it can be used in dictionaries, etc.. Note that as events with different timestamps compare equal, they also hash to the same value. .. py:class:: EventQueue A queue of `Event` objects, filled by a `keypad` scanner such as `Keys` or `KeyMatrix`. You cannot create an instance of `EventQueue` directly. Each scanner creates an instance when it is created. .. py:attribute:: overflowed :annotation: :bool ``True`` if an event could not be added to the event queue because it was full. (read-only) Set to ``False`` by `clear()`. .. py:method:: get() -> Optional[Event] Return the next key transition event. Return ``None`` if no events are pending. Note that the queue size is limited; see ``max_events`` in the constructor of a scanner such as `Keys` or `KeyMatrix`. If a new event arrives when the queue is full, the event is discarded, and `overflowed` is set to ``True``. :return: the next queued key transition `Event` :rtype: Optional[Event] .. py:method:: get_into(event: Event) -> bool Store the next key transition event in the supplied event, if available, and return ``True``. If there are no queued events, do not touch ``event`` and return ``False``. The advantage of this method over ``get()`` is that it does not allocate storage. Instead you can reuse an existing ``Event`` object. Note that the queue size is limited; see ``max_events`` in the constructor of a scanner such as `Keys` or `KeyMatrix`. :return: ``True`` if an event was available and stored, ``False`` if not. :rtype: bool .. py:method:: clear() -> None Clear any queued key transition events. Also sets `overflowed` to ``False``. .. py:method:: __bool__() -> bool ``True`` if `len()` is greater than zero. This is an easy way to check if the queue is empty. .. py:method:: __len__() -> int Return the number of events currently in the queue. Used to implement ``len()``. .. py:class:: KeyMatrix(row_pins: Sequence[microcontroller.Pin], column_pins: Sequence[microcontroller.Pin], columns_to_anodes: bool = True, interval: float = 0.02, max_events: int = 64) Manage a 2D matrix of keys with row and column pins. Create a `Keys` object that will scan the key matrix attached to the given row and column pins. There should not be any external pull-ups or pull-downs on the matrix: ``KeyMatrix`` enables internal pull-ups or pull-downs on the pins as necessary. The keys are numbered sequentially from zero. A key number can be computed by ``row * len(column_pins) + column``. An `EventQueue` is created when this object is created and is available in the `events` attribute. :param Sequence[microcontroller.Pin] row_pins: The pins attached to the rows. :param Sequence[microcontroller.Pin] column_pins: The pins attached to the colums. :param bool columns_to_anodes: Default ``True``. If the matrix uses diodes, the diode anodes are typically connected to the column pins, and the cathodes should be connected to the row pins. If your diodes are reversed, set ``columns_to_anodes`` to ``False``. :param float interval: Scan keys no more often than ``interval`` to allow for debouncing. ``interval`` is in float seconds. The default is 0.020 (20 msecs). :param int max_events: maximum size of `events` `EventQueue`: maximum number of key transition events that are saved. Must be >= 1. If a new event arrives when the queue is full, the oldest event is discarded. .. py:attribute:: key_count :annotation: :int The number of keys that are being scanned. (read-only) .. py:attribute:: events :annotation: :EventQueue The `EventQueue` associated with this `Keys` object. (read-only) .. py:method:: deinit() -> None Stop scanning and release the pins. .. py:method:: __enter__() -> KeyMatrix No-op used by Context Managers. .. py:method:: __exit__() -> None Automatically deinitializes when exiting a context. See :ref:`lifetime-and-contextmanagers` for more info. .. py:method:: reset() -> None Reset the internal state of the scanner to assume that all keys are now released. Any key that is already pressed at the time of this call will therefore immediately cause a new key-pressed event to occur. .. py:method:: key_number_to_row_column(row: int, column: int) -> Tuple[int] Return the row and column for the given key number. The row is ``key_number // len(column_pins)``. The column is ``key_number % len(column_pins)``. :return: ``(row, column)`` :rtype: Tuple[int] .. py:method:: row_column_to_key_number(row: int, column: int) -> int Return the key number for a given row and column. The key number is ``row * len(column_pins) + column``. .. py:class:: Keys(pins: Sequence[microcontroller.Pin], *, value_when_pressed: bool, pull: bool = True, interval: float = 0.02, max_events: int = 64) Manage a set of independent keys. Create a `Keys` object that will scan keys attached to the given sequence of pins. Each key is independent and attached to its own pin. An `EventQueue` is created when this object is created and is available in the `events` attribute. :param Sequence[microcontroller.Pin] pins: The pins attached to the keys. The key numbers correspond to indices into this sequence. :param bool value_when_pressed: ``True`` if the pin reads high when the key is pressed. ``False`` if the pin reads low (is grounded) when the key is pressed. All the pins must be connected in the same way. :param bool pull: ``True`` if an internal pull-up or pull-down should be enabled on each pin. A pull-up will be used if ``value_when_pressed`` is ``False``; a pull-down will be used if it is ``True``. If an external pull is already provided for all the pins, you can set ``pull`` to ``False``. However, enabling an internal pull when an external one is already present is not a problem; it simply uses slightly more current. :param float interval: Scan keys no more often than ``interval`` to allow for debouncing. ``interval`` is in float seconds. The default is 0.020 (20 msecs). :param int max_events: maximum size of `events` `EventQueue`: maximum number of key transition events that are saved. Must be >= 1. If a new event arrives when the queue is full, the oldest event is discarded. .. py:attribute:: key_count :annotation: :int The number of keys that are being scanned. (read-only) .. py:attribute:: events :annotation: :EventQueue The `EventQueue` associated with this `Keys` object. (read-only) .. py:method:: deinit() -> None Stop scanning and release the pins. .. py:method:: __enter__() -> Keys No-op used by Context Managers. .. py:method:: __exit__() -> None Automatically deinitializes when exiting a context. See :ref:`lifetime-and-contextmanagers` for more info. .. py:method:: reset() -> None Reset the internal state of the scanner to assume that all keys are now released. Any key that is already pressed at the time of this call will therefore immediately cause a new key-pressed event to occur. .. py:class:: ShiftRegisterKeys(*, clock: microcontroller.Pin, data: microcontroller.Pin, latch: microcontroller.Pin, value_to_latch: bool = True, key_count: int, value_when_pressed: bool, interval: float = 0.02, max_events: int = 64) Manage a set of keys attached to an incoming shift register. Create a `Keys` object that will scan keys attached to a parallel-in serial-out shift register like the 74HC165 or CD4021. Note that you may chain shift registers to load in as many values as you need. Key number 0 is the first (or more properly, the zero-th) bit read. In the 74HC165, this bit is labeled ``Q7``. Key number 1 will be the value of ``Q6``, etc. An `EventQueue` is created when this object is created and is available in the `events` attribute. :param microcontroller.Pin clock: The shift register clock pin. The shift register should clock on a low-to-high transition. :param microcontroller.Pin data: the incoming shift register data pin :param microcontroller.Pin latch: Pin used to latch parallel data going into the shift register. :param bool value_to_latch: Pin state to latch data being read. ``True`` if the data is latched when ``latch`` goes high ``False`` if the data is latched when ``latch`` goes low. The default is ``True``, which is how the 74HC165 operates. The CD4021 latch is the opposite. Once the data is latched, it will be shifted out by toggling the clock pin. :param int key_count: number of data lines to clock in :param bool value_when_pressed: ``True`` if the pin reads high when the key is pressed. ``False`` if the pin reads low (is grounded) when the key is pressed. :param float interval: Scan keys no more often than ``interval`` to allow for debouncing. ``interval`` is in float seconds. The default is 0.020 (20 msecs). :param int max_events: maximum size of `events` `EventQueue`: maximum number of key transition events that are saved. Must be >= 1. If a new event arrives when the queue is full, the oldest event is discarded. .. py:attribute:: key_count :annotation: :int The number of keys that are being scanned. (read-only) .. py:attribute:: events :annotation: :EventQueue The `EventQueue` associated with this `Keys` object. (read-only) .. py:method:: deinit() -> None Stop scanning and release the pins. .. py:method:: __enter__() -> Keys No-op used by Context Managers. .. py:method:: __exit__() -> None Automatically deinitializes when exiting a context. See :ref:`lifetime-and-contextmanagers` for more info. .. py:method:: reset() -> None Reset the internal state of the scanner to assume that all keys are now released. Any key that is already pressed at the time of this call will therefore immediately cause a new key-pressed event to occur.