You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
440 B

  1. #pragma once
  2. #include "quantum.h"
  3. #define LAYOUT_numpad_6x4( \
  4. k01, k02, k03, k04, \
  5. k11, k12, k13, k14, \
  6. k21, k22, k23, \
  7. k31, k32, k33, k34, \
  8. k41, k42, k43, \
  9. k51, k53, k54 \
  10. ) \
  11. { \
  12. { k01, k02, k03, k04 }, \
  13. { k11, k12, k13, k14 }, \
  14. { k21, k22, k23, KC_NO }, \
  15. { k31, k32, k33, k34 }, \
  16. { k41, k42, k43, KC_NO }, \
  17. { k51, KC_NO, k53, k54 }, \
  18. }