_pew
– LED 矩阵驱动器¶
在这些板上可用
-
class
_pew.
PewPew
(buffer: _typing.ReadableBuffer, rows: List[digitalio.DigitalInOut], cols: List[digitalio.DigitalInOut], buttons: digitalio.DigitalInOut)¶ 这是一个内部模块,
pew.py
由 https://github.com/pewpew-game/pew-pewpew-standalone-10.x 中的库 使用,用于处理pewpew10
板上的 LED 矩阵显示和按钮。用法:
This singleton class is instantiated by the ``pew`` library, and used internally by it. All user-visible interactions are done through that library.
初始化矩阵扫描程序。
该
buffer
是一个64字节长bytearray
,存储应该怎样在矩阵显示。rows
和cols
都是DigitalInputOutput
连接到矩阵行和列的八个对象的列表。buttons
是DigitalInputOutput
连接到所有按钮的公共侧的对象(按钮的另一侧连接到矩阵的行)。