:mod:`ps2io`
============
.. py:module:: ps2io
.. autoapi-nested-parse::
Support for PS/2 protocol
The `ps2io` module contains classes to provide PS/2 communication.
.. warning:: This module is not available in some SAMD21 builds. See the
:ref:`module-support-matrix` for more info.
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.
.. raw:: html
Available on these boards
- AITHinker ESP32-C3S_Kit
- ATMegaZero ESP32-S2
- Adafruit EdgeBadge
- Adafruit Feather ESP32-S2 TFT
- Adafruit Feather ESP32S2
- Adafruit Feather M4 CAN
- Adafruit Feather M4 Express
- Adafruit FunHouse
- Adafruit Grand Central M4 Express
- Adafruit Hallowing M4 Express
- Adafruit ItsyBitsy M4 Express
- Adafruit MagTag
- Adafruit Matrix Portal M4
- Adafruit Metro ESP32S2
- Adafruit Metro M4 Airlift Lite
- Adafruit Metro M4 Express
- Adafruit Monster M4SK
- Adafruit PyGamer
- Adafruit PyPortal
- Adafruit PyPortal Pynt
- Adafruit PyPortal Titano
- Adafruit Pybadge
- Adafruit QT Py ESP32S2
- Adafruit Trellis M4 Express
- AloriumTech Evo M51
- Artisense Reference Design RD00
- BDMICRO VINA-D51
- BastWiFi
- CP32-M4
- Capable Robot Programmable USB Hub
- CircuitBrains Deluxe
- CrumpS2
- DynOSSAT-EDU-OBC
- ESP 12k NodeMCU
- Feather ESP32S2 without PSRAM
- FeatherS2
- FeatherS2 Neo
- FeatherS2 PreRelease
- Franzininho WIFI w/Wroom
- Franzininho WIFI w/Wrover
- Gravitech Cucumber M
- Gravitech Cucumber MS
- Gravitech Cucumber R
- Gravitech Cucumber RS
- HMI-DevKit-1.1
- Kaluga 1
- LILYGO TTGO T8 ESP32-S2 w/Display
- LoC BeR M4 base board
- MORPHEANS MorphESP-240
- MicroDev microC3
- MicroDev microS2
- Mini SAM M4
- Oak Dev Tech PixelWing ESP32S2
- Robo HAT MM1 M4
- S2Mini
- S2Pico
- SAM32v26
- Saola 1 w/Wroom
- Saola 1 w/Wrover
- Seeeduino Wio Terminal
- Silicognition LLC M4-Shim
- SparkFun MicroMod SAMD51 Processor
- SparkFun Thing Plus - SAMD51
- TG-Boards' Datalore IP M4
- Targett Module Clip w/Wroom
- Targett Module Clip w/Wrover
- The Open Book Feather
- Thingz - Galaxia
- TinyS2
- UARTLogger II
- nanoESP32-S2 w/Wrover
- nanoESP32-S2 w/Wroom
.. py:class:: Ps2(data_pin: microcontroller.Pin, clock_pin: microcontroller.Pin)
Communicate with a PS/2 keyboard or mouse
Ps2 implements the PS/2 keyboard/mouse serial protocol, used in
legacy devices. It is similar to UART but there are only two
lines (Data and Clock). PS/2 devices are 5V, so bidirectional
level converters must be used to connect the I/O lines to pins
of 3.3V boards.
Create a Ps2 object associated with the given pins.
:param ~microcontroller.Pin data_pin: Pin tied to data wire.
:param ~microcontroller.Pin clock_pin: Pin tied to clock wire.
This pin must support interrupts.
Read one byte from PS/2 keyboard and turn on Scroll Lock LED::
import ps2io
import board
kbd = ps2io.Ps2(board.D10, board.D11)
while len(kbd) == 0:
pass
print(kbd.popleft())
print(kbd.sendcmd(0xed))
print(kbd.sendcmd(0x01))
.. py:method:: deinit() -> None
Deinitialises the Ps2 and releases any hardware resources for reuse.
.. py:method:: __enter__() -> Ps2
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:: popleft() -> int
Removes and returns the oldest received byte. When buffer
is empty, raises an IndexError exception.
.. py:method:: sendcmd(byte: int) -> int
Sends a command byte to PS/2. Returns the response byte, typically
the general ack value (0xFA). Some commands return additional data
which is available through :py:func:`popleft()`.
Raises a RuntimeError in case of failure. The root cause can be found
by calling :py:func:`clear_errors()`. It is advisable to call
:py:func:`clear_errors()` before :py:func:`sendcmd()` to flush any
previous errors.
:param int byte: byte value of the command
.. py:method:: clear_errors() -> None
Returns and clears a bitmap with latest recorded communication errors.
Reception errors (arise asynchronously, as data is received):
0x01: start bit not 0
0x02: timeout
0x04: parity bit error
0x08: stop bit not 1
0x10: buffer overflow, newest data discarded
Transmission errors (can only arise in the course of sendcmd()):
0x100: clock pin didn't go to LO in time
0x200: clock pin didn't go to HI in time
0x400: data pin didn't ACK
0x800: clock pin didn't ACK
0x1000: device didn't respond to RTS
0x2000: device didn't send a response byte in time
.. py:method:: __bool__() -> bool
.. py:method:: __len__() -> int
Returns the number of received bytes in buffer, available
to :py:func:`popleft()`.