You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

223 lines
6.7 KiB

  1. #include <avr/sfr_defs.h>
  2. #include <avr/timer_avr.h>
  3. #include <avr/wdt.h>
  4. #include "mini1800.h"
  5. #include "keymap.h"
  6. #include "issi.h"
  7. #include "TWIlib.h"
  8. #include "lighting.h"
  9. #include "debug.h"
  10. #define BACKLIGHT_BREATHING
  11. #include "quantum.h"
  12. uint16_t click_hz = CLICK_HZ;
  13. uint16_t click_time = CLICK_MS;
  14. uint8_t click_toggle = CLICK_ENABLED;
  15. float my_song[][2] = SONG(ZELDA_PUZZLE);
  16. void matrix_init_kb(void)
  17. {
  18. // put your keyboard start-up code here
  19. // runs once when the firmware starts up
  20. matrix_init_user();
  21. set_rgb(31, 0x00, 0x00, 0x00); // Caps lock
  22. set_rgb(32, 0xFF, 0x00, 0x00); // Layer indicator, start red
  23. #ifndef AUDIO_ENABLE
  24. // If we're not using the audio pin, drive it low
  25. sbi(DDRC, 6);
  26. cbi(PORTC, 6);
  27. #endif
  28. _delay_ms(500);
  29. #ifdef ISSI_ENABLE
  30. issi_init();
  31. #endif
  32. #ifdef WATCHDOG_ENABLE
  33. // This is done after turning the layer LED red, if we're caught in a loop
  34. // we should get a flashing red light
  35. wdt_enable(WDTO_500MS);
  36. #endif
  37. }
  38. void matrix_scan_kb(void)
  39. {
  40. #ifdef WATCHDOG_ENABLE
  41. wdt_reset();
  42. #endif
  43. #ifdef ISSI_ENABLE
  44. // switch/underglow lighting update
  45. static uint32_t issi_device = 0;
  46. static uint32_t twi_last_ready = 0;
  47. if(twi_last_ready > 1000){
  48. // Its been way too long since the last ISSI update, reset the I2C bus and start again
  49. twi_last_ready = 0;
  50. TWIInit();
  51. force_issi_refresh();
  52. }
  53. if(isTWIReady()){
  54. twi_last_ready = 0;
  55. // If the i2c bus is available, kick off the issi update, alternate between devices
  56. update_issi(issi_device, issi_device);
  57. if(issi_device){
  58. issi_device = 0;
  59. }else{
  60. issi_device = 3;
  61. }
  62. }else{
  63. twi_last_ready++;
  64. }
  65. #endif
  66. // Update layer indicator LED
  67. //
  68. // Not sure how else to reliably do this... TMK has the 'hook_layer_change'
  69. // but can't find QMK equiv
  70. static uint32_t layer_indicator = -1;
  71. if(layer_indicator != layer_state){
  72. for(uint32_t i=0;; i++){
  73. // the layer_info list should end with layer 0xFFFF
  74. // it will break this out of the loop and define the unknown layer color
  75. if((layer_info[i].layer == (layer_state & layer_info[i].mask)) || (layer_info[i].layer == 0xFFFFFFFF)){
  76. set_rgb(32, layer_info[i].color.red, layer_info[i].color.green, layer_info[i].color.blue);
  77. layer_indicator = layer_state;
  78. break;
  79. }
  80. }
  81. }
  82. matrix_scan_user();
  83. }
  84. void click(uint16_t freq, uint16_t duration){
  85. #ifdef AUDIO_ENABLE
  86. if(freq >= 100 && freq <= 20000 && duration < 100){
  87. play_note(freq, 10);
  88. for (uint16_t i = 0; i < duration; i++){
  89. _delay_ms(1);
  90. }
  91. stop_all_notes();
  92. }
  93. #endif
  94. }
  95. bool process_record_kb(uint16_t keycode, keyrecord_t* record)
  96. {
  97. if (click_toggle && record->event.pressed){
  98. click(click_hz, click_time);
  99. }
  100. if (keycode == RESET) {
  101. reset_keyboard_kb();
  102. } else {
  103. }
  104. return process_record_user(keycode, record);
  105. }
  106. void action_function(keyrecord_t *event, uint8_t id, uint8_t opt)
  107. {
  108. #ifdef AUDIO_ENABLE
  109. int8_t sign = 1;
  110. #endif
  111. if(id == LFK_ESC_TILDE){
  112. // Send ~ on shift-esc
  113. void (*method)(uint8_t) = (event->event.pressed) ? &add_key : &del_key;
  114. uint8_t shifted = get_mods() & (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT));
  115. method(shifted ? KC_GRAVE : KC_ESCAPE);
  116. send_keyboard_report();
  117. }else if(event->event.pressed){
  118. switch(id){
  119. case LFK_SET_DEFAULT_LAYER:
  120. // set/save the current base layer to eeprom, falls through to LFK_CLEAR
  121. eeconfig_update_default_layer(1UL << opt);
  122. default_layer_set(1UL << opt);
  123. case LFK_CLEAR:
  124. // Go back to default layer
  125. layer_clear();
  126. break;
  127. #ifdef ISSI_ENABLE
  128. case LFK_LED_TEST:
  129. led_test();
  130. break;
  131. #endif
  132. #ifdef AUDIO_ENABLE
  133. case LFK_CLICK_FREQ_LOWER:
  134. sign = -1; // continue to next statement
  135. case LFK_CLICK_FREQ_HIGHER:
  136. click_hz += sign * 100;
  137. click(click_hz, click_time);
  138. break;
  139. case LFK_CLICK_TOGGLE:
  140. if(click_toggle){
  141. click_toggle = 0;
  142. click(4000, 100);
  143. click(1000, 100);
  144. }else{
  145. click_toggle = 1;
  146. click(1000, 100);
  147. click(4000, 100);
  148. }
  149. break;
  150. case LFK_CLICK_TIME_SHORTER:
  151. sign = -1; // continue to next statement
  152. case LFK_CLICK_TIME_LONGER:
  153. click_time += sign;
  154. click(click_hz, click_time);
  155. break;
  156. #endif
  157. case LFK_PLAY_ONEUP:
  158. PLAY_SONG(my_song);
  159. break;
  160. }
  161. }
  162. }
  163. void reset_keyboard_kb(){
  164. #ifdef WATCHDOG_ENABLE
  165. MCUSR = 0;
  166. wdt_disable();
  167. wdt_reset();
  168. #endif
  169. set_rgb(31, 0x00, 0xFF, 0xFF);
  170. set_rgb(32, 0x00, 0xFF, 0xFF);
  171. force_issi_refresh();
  172. reset_keyboard();
  173. }
  174. void led_set_kb(uint8_t usb_led)
  175. {
  176. // Set capslock LED to Blue
  177. if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
  178. set_rgb(31, 0x00, 0x00, 0x7F);
  179. }else{
  180. set_rgb(31, 0x00, 0x00, 0x00);
  181. }
  182. led_set_user(usb_led);
  183. }
  184. // Lighting info, see lighting.h for details
  185. const uint8_t switch_matrices[] = {0, 1};
  186. const uint8_t rgb_matrices[] = {6, 7};
  187. // RGB Map:
  188. // 27 29 10 9 8 7 6
  189. // 26 5
  190. // 25 4
  191. // 24 3
  192. // 23 22 21 20 14 15 11 1 2
  193. const uint8_t rgb_sequence[] = {
  194. 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 1, 2, 3, 4, 5, 6, 7, 8, 13, 14, 15, 16
  195. };
  196. // Maps switch LEDs from Row/Col to ISSI matrix.
  197. // Value breakdown:
  198. // Bit | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
  199. // | | ISSI Col | ISSI Row |
  200. // / |
  201. // Device
  202. const uint8_t switch_leds[MATRIX_ROWS][MATRIX_COLS] =
  203. LAYOUT(
  204. 0x19, 0x18, 0x17, 0x16, 0x15, 0x14, 0x13, 0x12, 0x11, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x91,
  205. 0x29, 0x28, 0x27, 0x26, 0x25, 0x24, 0x23, 0x22, 0x21, 0xA9, 0xA8, 0xA7, 0xA6, 0xA5, 0xA4, 0xA3, 0xA2, 0xA1,
  206. 0x39, 0x38, 0x37, 0x36, 0x35, 0x34, 0x33, 0x32, 0x31, 0xB9, 0xB8, 0xB7, 0xB6, 0xB5, 0xB3,
  207. 0x49, 0x48, 0x47, 0x45, 0x44, 0x43, 0x42, 0x41, 0xC9, 0xC8, 0xC7, 0xC6, 0xC5, 0xC4, 0xC2,
  208. 0x59, 0x58, 0x57, 0x56, 0x55, 0x51, 0xD6, 0xE5, 0xE4, 0xE3, 0xE2, 0xE1,
  209. 0x00, 0x00, 0x00, 0x00);