-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support for Keyboard Led status codes #61
base: master
Are you sure you want to change the base?
Conversation
KeyboardLayout_da_DK.cpp is Danish keyboard layout Keyboard.h references da_DK.cpp Keyboard_da_DK.h defines scan codes for Danish characters such as ÆØ.
Changed scan code for bslash as suggested by @edgar-bonnet
Note this pull request has dependencies on another pull request in the ArduinoCore-avr HID library;- ArduinoCore-avr pull request 446 ... and will not compile unless & until that dependency is approved. |
Usage example;- `
` |
Co-authored-by: Edgar Bonet <edgar-bonet@users.noreply.github.com>
Excuse me, what's the progress now? Has the problem been solved? |
@60999 ... the code does work (I have a keyboard based on the changed code I use daily) but requires you to patch the Keyboard library AND ArduinoCore-avr HID library too (and I suspect that is why it is marked blocked, because the dependency on the core library code). Applying the two patches is easy enough to do, assuming you're confident about overwriting the two affected libraries with the submitted code. |
It turns out that you also noticed this small detail awesome! |
This pull request adds support for LED status reports from the host, based on code here, with some minor enhancements for legibility sake;-
https://forum.arduino.cc/t/leonardo-keyboard-leds-emulation/169582/23