diff options
author | noroadsleft <18669334+noroadsleft@users.noreply.github.com> | 2018-12-11 20:49:44 -0800 |
---|---|---|
committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2018-12-11 20:49:44 -0800 |
commit | 8b6cdd17886db9847ff91be9c10a1788a7c74a6a (patch) | |
tree | 0834501dc68cbe93e0cff504dc89b9ca4524b812 /keyboards/handwired/numpad20/numpad20.h | |
parent | d46d3043957b75369923cb0202c632fa1d8f0311 (diff) |
handwired/numpad20 Refactor and Configurator support (#4589)
* handwired/numpad20: refactor
- layout macro no longer auto-prepends keycodes with KC_
- keymaps for this keyboard will now compile in QMK Configurator
- keymap now uses #include QMK_KEYBOARD_H
- deleted unused fn_actions code block
* handwired/numpad20: Configurator support
Diffstat (limited to 'keyboards/handwired/numpad20/numpad20.h')
-rw-r--r-- | keyboards/handwired/numpad20/numpad20.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/keyboards/handwired/numpad20/numpad20.h b/keyboards/handwired/numpad20/numpad20.h index a2aa8d16ba..c15aa9ac70 100644 --- a/keyboards/handwired/numpad20/numpad20.h +++ b/keyboards/handwired/numpad20/numpad20.h @@ -10,11 +10,11 @@ K30, K31, K32, K33, \ K40, K41, K42, K43 \ ) { \ - { KC_##K00, KC_##K01, KC_##K02, KC_##K03 }, \ - { KC_##K10, KC_##K11, KC_##K12, KC_##K13 }, \ - { KC_##K20, KC_##K21, KC_##K22, KC_##K23 }, \ - { KC_##K30, KC_##K31, KC_##K32, KC_##K33 }, \ - { KC_##K40, KC_##K41, KC_##K42, KC_##K43 } \ + { K00, K01, K02, K03 }, \ + { K10, K11, K12, K13 }, \ + { K20, K21, K22, K23 }, \ + { K30, K31, K32, K33 }, \ + { K40, K41, K42, K43 } \ } -#endif
\ No newline at end of file +#endif |