diff options
author | skullydazed <skullydazed@users.noreply.github.com> | 2019-10-23 14:18:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-23 14:18:12 -0700 |
commit | b62ee65c6d809bd10b4cd98c835a4a501a39b880 (patch) | |
tree | 6c03a20472ab0d59b288c360a464554a45fde835 /keyboards/clueboard/california/california.h | |
parent | 68cf2725aa30eaa18db9c6149e5e361860db01d7 (diff) | |
download | qmk_firmware-b62ee65c6d809bd10b4cd98c835a4a501a39b880.tar.gz qmk_firmware-b62ee65c6d809bd10b4cd98c835a4a501a39b880.zip |
Support for the Clueboard California macropad (#7127)
* Support for the Clueboard California macropad
* Update keyboards/clueboard/california/config.h
Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'keyboards/clueboard/california/california.h')
-rw-r--r-- | keyboards/clueboard/california/california.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/keyboards/clueboard/california/california.h b/keyboards/clueboard/california/california.h new file mode 100644 index 0000000000..853b360e2e --- /dev/null +++ b/keyboards/clueboard/california/california.h @@ -0,0 +1,21 @@ +#pragma once + +#include "quantum.h" + +// Any changes to the layout names and/or definitions must also be made to info.json + +#define LAYOUT( \ + K00, K01, \ + K10, K11, \ + K21, \ + K30, K31, \ + K40, K41, \ + K51 \ +) { \ + { K00, K01 }, \ + { K10, K11 }, \ + { KC_NO, K21 }, \ + { K30, K31 }, \ + { K40, K41 }, \ + { KC_NO, K51 } \ +} |