]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/lfkeyboards/lfkpad/lfkpad.h
Keyboard: LFKPad refactor and Configurator support (#3439)
[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 // readability
58 #define ___ KC_NO
59
60
61 #define LAYOUT_numpad_6x4( \
62     k00, k01, k02, k03, \
63     k10, k11, k12, k13, \
64     k20, k21, k22,      \
65     k30, k31, k32, k23, \
66     k40, k41, k42,      \
67     k50,      k52, k43  \
68 ) { \
69     { k00, k01, k02, k03 }, \
70     { k10, k11, k12, k13 }, \
71     { k20, k21, k22, k23 }, \
72     { k30, k31, k32, ___ }, \
73     { k40, k41, k42, k43 }, \
74     { k50, ___, k52, ___ } \
75 }
76
77 #endif //LFKPAD_H