Skip to content

Commit

Permalink
Merge pull request #831 from cxw42/consumer-10bit
Browse files Browse the repository at this point in the history
ConsumerControl: allow 10-bit keycodes
  • Loading branch information
obra authored Apr 18, 2020
2 parents bcff3b9 + 4290591 commit d0be5ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kaleidoscope/driver/hid/keyboardio/Keyboard.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ class ConsumerControlWrapper {
ConsumerControl.releaseAll();
}

void press(uint8_t code) {
void press(uint16_t code) {
ConsumerControl.press(code);
}
void release(uint8_t code) {
void release(uint16_t code) {
ConsumerControl.release(code);
}
};
Expand Down

0 comments on commit d0be5ab

Please sign in to comment.