california.h 367 B

123456789101112131415161718192021
  1. #pragma once
  2. #include "quantum.h"
  3. // Any changes to the layout names and/or definitions must also be made to info.json
  4. #define LAYOUT( \
  5. K00, K01, \
  6. K10, K11, \
  7. K21, \
  8. K30, K31, \
  9. K40, K41, \
  10. K51 \
  11. ) { \
  12. { K00, K01 }, \
  13. { K10, K11 }, \
  14. { KC_NO, K21 }, \
  15. { K30, K31 }, \
  16. { K40, K41 }, \
  17. { KC_NO, K51 } \
  18. }