]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/crawlpad/crawlpad.h
Make `readPin` output a 0 or 1 when using AVR to match ChibiOS's version of `readPin`
[qmk_firmware.git] / keyboards / crawlpad / crawlpad.h
1 #ifndef KB_H
2 #define KB_H
3
4 #include "quantum.h"
5
6 #define KEYMAP( \
7         K00, K01, K02, K03, \
8         K10, K11, K12, K13, \
9         K20, K21, K22, K23, \
10         K30, K31, K32, K33  \
11 ) { \
12         { K00,   K01,   K02,   K03 }, \
13         { K10,   K11,   K12,   K13 }, \
14         { K20,   K21,   K22,   K23 }, \
15         { K30,   K31,   K32,   K33 }  \
16 }
17
18 #endif