]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/lfkeyboards/smk65/smk65.c
Add user-overridable callback for cancelling UCIS input (#5564)
[qmk_firmware.git] / keyboards / lfkeyboards / smk65 / smk65.c
1 #include <avr/sfr_defs.h>
2 #include <avr/timer_avr.h>
3 #include <avr/wdt.h>
4 #include "smk65.h"
5 #include "keymap.h"
6 #include "debug.h"
7 #include "issi.h"
8 #include "TWIlib.h"
9 #include "lighting.h"
10
11 uint16_t click_hz = CLICK_HZ;
12 uint16_t click_time = CLICK_MS;
13 uint8_t click_toggle = CLICK_ENABLED;
14
15
16 void matrix_init_kb(void)
17 {
18     matrix_init_user();
19
20 #ifdef AUDIO_ENABLE
21     // audio_init() sets PB5 to output and drives it low, which breaks our matrix
22     // so reset PB5 to input
23     cbi(DDRB, 5);
24     sbi(PORTB, 5);
25 #else
26     // If we're not using the audio pin, drive it low
27     sbi(DDRC, 6);
28     cbi(PORTC, 6);
29 #endif
30
31 #ifdef ISSI_ENABLE
32     issi_init();
33 #endif
34 }
35
36 void matrix_scan_kb(void)
37 {
38 #ifdef WATCHDOG_ENABLE
39     wdt_reset();
40 #endif
41     matrix_scan_user();
42 }
43
44 void click(uint16_t freq, uint16_t duration){
45 #ifdef AUDIO_ENABLE
46     if(freq >= 100 && freq <= 20000 && duration < 100){
47         play_note(freq, 10);
48         for (uint16_t i = 0; i < duration; i++){
49             _delay_ms(1);
50         }
51         stop_all_notes();
52     }
53 #endif
54 }
55
56 bool process_record_kb(uint16_t keycode, keyrecord_t* record)
57 {
58     // Test code that turns on the switch led for the key that is pressed
59     // set_backlight_by_keymap(record->event.key.col, record->event.key.row);
60     if (click_toggle && record->event.pressed){
61         click(click_hz, click_time);
62     }
63     if (keycode == RESET) {
64         reset_keyboard_kb();
65     } else {
66     }
67     return process_record_user(keycode, record);
68 }
69
70 void action_function(keyrecord_t *event, uint8_t id, uint8_t opt)
71 {
72 #ifdef AUDIO_ENABLE
73     int8_t sign = 1;
74 #endif
75     if(id == LFK_ESC_TILDE){
76         // Send ~ on shift-esc
77         void (*method)(uint8_t) = (event->event.pressed) ? &add_key : &del_key;
78         uint8_t shifted = get_mods() & (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT));
79         method(shifted ? KC_GRAVE : KC_ESCAPE);
80         send_keyboard_report();
81     }else if(event->event.pressed){
82         switch(id){
83             case LFK_SET_DEFAULT_LAYER:
84                 // set/save the current base layer to eeprom, falls through to LFK_CLEAR
85                 eeconfig_update_default_layer(1UL << opt);
86                 default_layer_set(1UL << opt);
87             case LFK_CLEAR:
88                 // Go back to default layer
89                 layer_clear();
90                 break;
91 #ifdef AUDIO_ENABLE
92             case LFK_CLICK_FREQ_LOWER:
93                 sign = -1;  // continue to next statement
94             case LFK_CLICK_FREQ_HIGHER:
95                 click_hz += sign * 100;
96                 click(click_hz, click_time);
97                 break;
98             case LFK_CLICK_TOGGLE:
99                 if(click_toggle){
100                     click_toggle = 0;
101                     click(4000, 100);
102                     click(1000, 100);
103                 }else{
104                     click_toggle = 1;
105                     click(1000, 100);
106                     click(4000, 100);
107                 }
108                 break;
109             case LFK_CLICK_TIME_SHORTER:
110                 sign = -1;  // continue to next statement
111             case LFK_CLICK_TIME_LONGER:
112                 click_time += sign;
113                 click(click_hz, click_time);
114                 break;
115 #endif
116             case LFK_DEBUG_SETTINGS:
117                 dprintf("Click:\n");
118                 dprintf("  toggle: %d\n", click_toggle);
119                 dprintf("  freq(hz): %d\n", click_hz);
120                 dprintf("  duration(ms): %d\n", click_time);
121                 break;
122         }
123     }
124 }
125
126 void reset_keyboard_kb(){
127 #ifdef WATCHDOG_ENABLE
128     MCUSR = 0;
129     wdt_disable();
130     wdt_reset();
131 #endif
132     reset_keyboard();
133 }
134
135 void led_set_kb(uint8_t usb_led)
136 {
137     // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
138
139     led_set_user(usb_led);
140 }
141
142 // LFK lighting info
143 const uint8_t switch_matrices[] = {0, 1};
144 const uint8_t rgb_matrices[] = {6, 7};
145 // const uint8_t rgb_sequence[] = {
146 //     14, 24, 23, 22, 21, 20, 19, 18, 26, 25, 28, 29,
147 //     30, 31, 32, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13
148 // };
149 const uint8_t rgb_sequence[] = {
150     25, 28, 29,
151     30, 31, 32, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
152 };
153 // Maps switch LEDs from Row/Col to ISSI matrix.
154 // Value breakdown:
155 //     Bit     | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
156 //            /    \ ISSI Col  |    ISSI Row   |
157 //          matrix idx
158 // const uint8_t switch_leds[MATRIX_ROWS][MATRIX_COLS] =
159 // KEYMAP(
160 //   0x19, 0x18,   0x17, 0x16, 0x15, 0x14, 0x13, 0x12, 0x11, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94,   0x93,   0x92, 0x91,
161 //   0x29, 0x28,    0x27,  0x26, 0x25, 0x24, 0x23, 0x22, 0x21, 0xA9, 0xA8, 0xA7, 0xA6, 0xA5, 0xA4, 0xA3,   0xA2, 0xA1,
162 //   0x39, 0x38,      0x37,  0x36, 0x35, 0x34, 0x33, 0x32, 0x31, 0xB9, 0xB8, 0xB7, 0xB6, 0xB5,     0xB3,
163 //   0x49, 0x48,    0x47,     0x45, 0x44, 0x43, 0x42, 0x41, 0xC9, 0xC8, 0xC7, 0xC6, 0xC5,          0xC4,   0xC2,
164 //   0x59, 0x58,   0x57,  0x56,  0x55,             0x51,                   0xD6, 0xE5, 0xE4,         0xE3, 0xE2, 0xE1);