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

1234567891011121314151617181920
  1. #include "Code_ScS.h"
  2. void Code_ScS::press()
  3. {
  4. if (isShifted())
  5. {
  6. Keyboard.press(scancode);
  7. }
  8. else
  9. {
  10. Keyboard.press(MODIFIERKEY_LEFT_SHIFT); //temporarily shift
  11. Keyboard.press(scancode);
  12. Keyboard.release(MODIFIERKEY_LEFT_SHIFT); //restore
  13. }
  14. }
  15. void Code_ScS::release()
  16. {
  17. Keyboard.release(scancode);
  18. }