Skip to content

Commit

Permalink
add missed keys
Browse files Browse the repository at this point in the history
Hi,

I've added some missed keys that are important in HID scenarios.
Previously I've proposed those changes in deprecated repo of this software and it wasn't applied in current repository as well.
Reference: digistump/DigisparkArduinoIntegration#13
  • Loading branch information
toxydose committed Aug 4, 2021
1 parent 111396f commit 7aea379
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion digistump-avr/libraries/DigisparkKeyboard/DigiKeyboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ const PROGMEM char usbHidReportDescriptor[USB_CFG_HID_REPORT_DESCRIPTOR_LENGTH]
#define KEY_0 39

#define KEY_ENTER 40

#define KEY_ESC 41
#define KEY_BACKSPACE 42
#define KEY_TAB 43
#define KEY_SPACE 44

#define KEY_F1 58
Expand All @@ -126,6 +128,9 @@ const PROGMEM char usbHidReportDescriptor[USB_CFG_HID_REPORT_DESCRIPTOR_LENGTH]
#define KEY_F11 68
#define KEY_F12 69

#define KEY_PRT_SCR 70
#define KEY_DELETE 76

#define KEY_ARROW_UP 82
#define KEY_ARROW_DOWN 81
#define KEY_ARROW_LEFT 80
Expand Down

0 comments on commit 7aea379

Please sign in to comment.