]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboard/kc60/kc60.h
adds backlight levels to the satan keyboard (#431)
[qmk_firmware.git] / keyboard / kc60 / kc60.h
1 #ifndef KC60_H
2 #define KC60_H
3
4 #include "matrix.h"
5 #include "keymap.h"
6 #ifdef BACKLIGHT_ENABLE
7 #include "backlight.h"
8 #endif
9 #include <avr/io.h>
10 #include <stddef.h>
11
12 // This a shortcut to help you visually see your layout.
13 // The first section contains all of the arguements
14 // The second converts the arguments into a multi-dimensional array
15 #define KEYMAP( \
16     K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, \
17     K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, \
18     K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K2A, K2B, K2C, K2D, \
19     K30, K31, K32, K33, K34, K35, K36, K37, K38, K39, K3A, K3B, K3C, K3D, \
20     K40, K41, K42,           K45,                     K4A, K4B, K4C, K4D  \
21     ) { \
22   {  K00,  K01,  K02,  K03,    K04,    K05,  K06,    K07,    K08,    K09,  K0A,  K0B,  K0C,  K0D  },  \
23   {  K10,  K11,  K12,  K13,    K14,    K15,  K16,    K17,    K18,    K19,  K1A,  K1B,  K1C,  K1D  },  \
24   {  K20,  K21,  K22,  K23,    K24,    K25,  K26,    K27,    K28,    K29,  K2A,  K2B,  K2C,  K2D  },  \
25   {  K30,  K31,  K32,  K33,    K34,    K35,  K36,    K37,    K38,    K39,  K3A,  K3B,  K3C,  K3D  },  \
26   {  K40,  K41,  K42,  KC_NO,  KC_NO,  K45,  KC_NO,  KC_NO,  KC_NO,  KC_NO,K4A,  K4B,  K4C,  K4D  }   \
27 }
28
29 void matrix_init_user(void);
30 void matrix_scan_user(void);
31 bool process_action_user(keyrecord_t *record);
32
33 void led_set_user(uint8_t usb_led);
34 void backlight_init_ports(void);
35
36 #endif