Merge pull request #1052 from keyboardio/driver/hid/no-keyboard

pull/1055/head
Jesse Vincent 3 years ago committed by GitHub
commit 8323b35ee6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -54,6 +54,9 @@ class NoBootKeyboard {
bool wasAnyModifierActive() {
return false;
}
bool isKeyPressed(uint8_t code) {
return false;
}
uint8_t getLeds() {
return 0;
@ -83,6 +86,9 @@ class NoNKROKeyboard {
bool wasAnyModifierActive() {
return false;
}
bool isKeyPressed(uint8_t code) {
return false;
}
uint8_t getLeds() {
return 0;

Loading…
Cancel
Save