keybrd library is an open source library for creating custom-keyboard firmware.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

tutorial_10_writing_your_own_port_classes.md 1.5KB

Tutorial 10 - writing your own port classes

Port classes are the keybrd library’s interface to I/O expander ports.

To write your own port classes:

  1. Get a copy of the controller or I/O expander datasheet.
  2. Study other keybrd Port classes.

For example, the keybrd_DH library use these keybrd classes for its PCA9655E I/O:

  • PortWrite_PCA9655E
  • PortRead_PCA9655E
  • LED_PCA9655E

Debugging I/O expander code is hard because SPI or I2C protocol adds a level of indirection. If you haven’t written Arduino code for an I/O expander before, learn from an Arduiono I/O expander tutorial before attempting it here.


Creative Commons License
keybrd tutorial by Wolfram Volpi is licensed under a Creative Commons Attribution 4.0 International License.
Permissions beyond the scope of this license may be available at https://github.com/wolfv6/keybrd/issues/new.