diff options
| author | XScorpion2 <rcalt2vt@gmail.com> | 2019-06-01 16:39:31 -0500 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-06-01 14:39:31 -0700 |
| commit | 4f788c2ae90583f64e0cec6545a3da75a5aff0f8 (patch) | |
| tree | fa7f8583fca9839d2c5f3f8b6c5822569c649929 /users/xulkal/custom_encoder.c | |
| parent | 02b3fadbac6c68940e1bf141397d5d7cb87a6928 (diff) | |
| download | qmk_firmware-4f788c2ae90583f64e0cec6545a3da75a5aff0f8.tar.gz qmk_firmware-4f788c2ae90583f64e0cec6545a3da75a5aff0f8.zip | |
[Keymap] Xulkal user changes (#6044)
* Xulkal user changes
Xulkal user changes
* Reduce code duplication
* Massive user code refactor
Diffstat (limited to 'users/xulkal/custom_encoder.c')
| -rw-r--r-- | users/xulkal/custom_encoder.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/users/xulkal/custom_encoder.c b/users/xulkal/custom_encoder.c new file mode 100644 index 000000000..09f1cda0d --- /dev/null +++ b/users/xulkal/custom_encoder.c | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #include "custom_encoder.h" | ||
| 2 | |||
| 3 | #ifdef ENCODER_ENABLE | ||
| 4 | const uint16_t PROGMEM encoders[][2] = { | ||
| 5 | { KC_PGUP, KC_PGDN }, | ||
| 6 | { KC_DOWN, KC_UP } | ||
| 7 | } | ||
| 8 | |||
| 9 | void encoder_update_user(uint8_t index, bool clockwise) | ||
| 10 | { | ||
| 11 | tap_code16(pgm_read_word(&encoders[index][clockwise])); | ||
| 12 | } | ||
| 13 | #endif | ||
