keybrd library is an open source library for creating custom-keyboard firmware.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

Code_ScS.cpp 382B

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