1
0
Fork 0

add better example

This commit is contained in:
Jack Humbert 2018-10-26 16:47:00 -04:00 committed by Drashna Jaelre
parent 85688e5b52
commit 24b3556e84
1 changed files with 9 additions and 2 deletions

View File

@ -32,9 +32,16 @@ The callback functions can be inserted into your `<keyboard>.c`:
or `keymap.c`:
void encoder_update_user(uint8_t index, bool clockwise) {
if (index == 0) {
if (clockwise) {
register_code(KC_PGDN);
unregister_code(KC_PGDN);
} else {
register_code(KC_PGUP);
unregister_code(KC_PGUP);
}
}
}
## Hardware