keybrd library is an open source library for creating custom-keyboard firmware.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

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. }