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

Matrix.cpp 192B

123456789101112
  1. #include "Matrix.h"
  2. /*
  3. scan every row of matrix one time
  4. */
  5. void Matrix::scan()
  6. {
  7. for (uint8_t i=0; i < rowCount; i++)
  8. {
  9. ptrsRows[i]->process(activeHigh);
  10. }
  11. }