Skip to content

Commit

Permalink
1.0 + altgr+q fix
Browse files Browse the repository at this point in the history
  • Loading branch information
No0ne committed Jan 16, 2024
1 parent 71f3411 commit b04b968
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions hid2cdc.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@ void cdc_send_key(u8 key) {
if(ctrl) {
seq[0] = key + 1;

} else if(qwertz && altgr && key == HID_KEY_Q - HID_KEY_A) {
seq[0] = '@';

} else if(shift || kb_leds & KEYBOARD_LED_CAPSLOCK) {
seq[0] = key + 'A';

Expand Down

0 comments on commit b04b968

Please sign in to comment.