]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/lfkeyboards/lfkpad/lfkpad.h
Lfkeyboards updates (#2421)
[qmk_firmware.git] / keyboards / lfkeyboards / lfkpad / lfkpad.h
1 #ifndef LFKPAD_H
2 #define LFKPAD_H
3
4 /* if the kb.h file exists (because we're running from qmkbuilder) include it */
5 #if __has_include("kb.h")
6 #include "kb.h"
7 #endif
8
9 #include "quantum.h"
10 #include "matrix.h"
11 #include <avr/sfr_defs.h>
12
13 #ifndef cbi
14 #define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
15 #endif
16
17 #ifndef sbi
18 #define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))
19 #endif
20
21
22 typedef struct RGB_Color {
23     uint16_t red;
24     uint16_t green;
25     uint16_t blue;
26 } RGB_Color;
27
28 typedef struct Layer_Info {
29     uint32_t layer;
30     uint32_t mask;
31     RGB_Color color;
32 } Layer_Info;
33
34 extern const uint32_t layer_count;
35 extern const Layer_Info layer_info[];
36
37 enum action_functions {
38     LFK_CLEAR = 0,          // Resets all layers
39     LFK_ESC_TILDE,          // esc+lshift = ~
40     LFK_SET_DEFAULT_LAYER,  // changes and saves current base layer to eeprom
41     LFK_CLICK_TOGGLE,       // Adjusts click duration
42     LFK_CLICK_FREQ_HIGHER,  // Adjusts click frequency
43     LFK_CLICK_FREQ_LOWER,   // Adjusts click frequency
44     LFK_CLICK_TIME_LONGER,  // Adjusts click duration
45     LFK_CLICK_TIME_SHORTER, // Adjusts click duration
46     LFK_DEBUG_SETTINGS,     // prints LED and click settings to HID
47     LFK_LED_TEST            // cycles through switch and RGB LEDs
48 };
49
50 #define CLICK_HZ 500
51 #define CLICK_MS 2
52 #define CLICK_ENABLED 0
53
54 void reset_keyboard_kb(void);
55 void click(uint16_t freq, uint16_t duration);
56
57 #define KEYMAP( \
58     k00, k01, k02, k03,\
59     k10, k11, k12, k13,\
60     k20, k21, k22, k23,\
61     k30, k31, k32,\
62     k40, k41, k42, k43,\
63     k50,      k52\
64 ) { \
65     { k00, k01,   k02, k03 }, \
66     { k10, k11,   k12, k13 }, \
67     { k20, k21,   k22, k23 }, \
68     { k30, k31,   k32, KC_NO }, \
69     { k40, k41,   k42, k43 }, \
70     { k50, KC_NO, k52, KC_NO } \
71 }
72
73 #endif //LFKPAD_H