light.c 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /* Copyright 2017 Jason Williams
  2. * Copyright 2017 Jack Humbert
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include "light.h"
  18. // const is31_led g_is31_leds[DRIVER_LED_TOTAL] = {
  19. // /* driver
  20. // * | matrix
  21. // * | | control_index
  22. // * | | |
  23. // * | | | */
  24. // {0, 0, 3},
  25. // {0, 0, 4},
  26. // {0, 0, 5},
  27. // {0, 1, 3},
  28. // {0, 1, 4},
  29. // {0, 1, 5},
  30. // {1, 0, 3},
  31. // {1, 0, 4},
  32. // {1, 0, 5},
  33. // {1, 1, 3},
  34. // {1, 1, 4},
  35. // {1, 1, 5},
  36. // {0, 0, 6},
  37. // {0, 0, 7},
  38. // {0, 0, 8},
  39. // {0, 1, 6},
  40. // {0, 1, 7},
  41. // {0, 1, 8},
  42. // {1, 0, 6},
  43. // {1, 0, 7},
  44. // {1, 0, 8},
  45. // {1, 1, 6},
  46. // {1, 1, 7},
  47. // {1, 1, 8},
  48. // {0, 0, 9},
  49. // {0, 0, 10},
  50. // {0, 0, 11},
  51. // {0, 1, 9},
  52. // {0, 1, 10},
  53. // {0, 1, 11},
  54. // {1, 0, 9},
  55. // {1, 0, 10},
  56. // {1, 0, 11},
  57. // {1, 1, 9},
  58. // {1, 1, 10},
  59. // {1, 1, 11},
  60. // {0, 0, 12},
  61. // {0, 0, 13},
  62. // {0, 0, 14},
  63. // {0, 1, 12},
  64. // {0, 1, 13},
  65. // #ifdef PLANCK_MIT_LAYOUT
  66. // {0, 1, 14},
  67. // {0, 1, 15},
  68. // {1, 0, 12},
  69. // #else
  70. // {0, 1, 14},
  71. // {0, 1, 15},
  72. // {1, 0, 12},
  73. // #endif
  74. // {1, 0, 13},
  75. // {1, 0, 14},
  76. // {1, 1, 12},
  77. // {1, 1, 13},
  78. // {1, 1, 14},
  79. // };
  80. const is31_led g_is31_leds[DRIVER_LED_TOTAL] = {
  81. /* driver
  82. * | R location
  83. * | | G location
  84. * | | | B location
  85. * | | | | */
  86. {0, C3_1, C2_1, C4_1}, // LED1
  87. {0, C6_1, C5_1, C7_1}, // LED2
  88. {0, C4_2, C3_2, C5_2}, // LED3
  89. {0, C7_2, C6_2, C8_2}, // LED4
  90. {0, C2_3, C1_3, C3_3}, // LED5
  91. {0, C5_3, C4_3, C6_3}, // LED6
  92. {0, C8_3, C7_3, C9_3}, // LED7
  93. {0, C2_4, C1_4, C3_4}, // LED8
  94. {0, C6_4, C5_4, C7_4}, // LED9
  95. {0, C2_5, C1_5, C3_5}, // LED10
  96. {0, C7_5, C6_5, C8_5}, // LED11
  97. {0, C2_6, C1_6, C3_6}, // LED12
  98. {0, C5_6, C4_6, C6_6}, // LED13
  99. {0, C8_6, C7_6, C9_6}, // LED14
  100. {0, C2_7, C1_7, C3_7}, // LED15
  101. {0, C5_7, C4_7, C6_7}, // LED16
  102. {0, C2_8, C1_8, C3_8}, // LED17
  103. {0, C5_8, C4_8, C6_8}, // LED18
  104. {0, C3_9, C2_9, C4_9}, // LED19
  105. {0, C6_9, C5_9, C7_9}, // LED20
  106. {0, C4_10, C3_10, C5_10}, // LED21
  107. {0, C7_10, C6_10, C8_10}, // LED22
  108. {0, C2_11, C1_11, C3_11}, // LED23
  109. {0, C5_11, C4_11, C6_11}, // LED24
  110. {1, C3_1, C2_1, C4_1}, // LED1
  111. {1, C6_1, C5_1, C7_1}, // LED2
  112. {1, C4_2, C3_2, C5_2}, // LED3
  113. {1, C7_2, C6_2, C8_2}, // LED4
  114. {1, C2_3, C1_3, C3_3}, // LED5
  115. {1, C5_3, C4_3, C6_3}, // LED6
  116. {1, C8_3, C7_3, C9_3}, // LED7
  117. {1, C2_4, C1_4, C3_4}, // LED8
  118. {1, C6_4, C5_4, C7_4}, // LED9
  119. {1, C2_5, C1_5, C3_5}, // LED10
  120. {1, C7_5, C6_5, C8_5}, // LED11
  121. {1, C2_6, C1_6, C3_6}, // LED12
  122. {1, C5_6, C4_6, C6_6}, // LED13
  123. {1, C8_6, C7_6, C9_6}, // LED14
  124. {1, C2_7, C1_7, C3_7}, // LED15
  125. {1, C5_7, C4_7, C6_7}, // LED16
  126. {1, C2_8, C1_8, C3_8}, // LED17
  127. {1, C5_8, C4_8, C6_8}, // LED18
  128. {1, C3_9, C2_9, C4_9}, // LED19
  129. {1, C6_9, C5_9, C7_9}, // LED20
  130. {1, C4_10, C3_10, C5_10}, // LED21
  131. {1, C7_10, C6_10, C8_10}, // LED22
  132. {1, C2_11, C1_11, C3_11}, // LED23
  133. {1, C5_11, C4_11, C6_11} // LED24
  134. };
  135. const rgb_led g_rgb_leds[DRIVER_LED_TOTAL] = {
  136. /*{row | col << 4}
  137. | {x=0..224, y=0..64}
  138. | | modifier
  139. | | | */
  140. {{0|(0<<4)}, {20.36*0, 21.33*0}, 1},
  141. {{0|(1<<4)}, {20.36*1, 21.33*0}, 0},
  142. {{0|(2<<4)}, {20.36*2, 21.33*0}, 0},
  143. {{0|(3<<4)}, {20.36*3, 21.33*0}, 0},
  144. {{0|(4<<4)}, {20.36*4, 21.33*0}, 0},
  145. {{0|(5<<4)}, {20.36*5, 21.33*0}, 0},
  146. {{0|(6<<4)}, {20.36*6, 21.33*0}, 0},
  147. {{0|(7<<4)}, {20.36*7, 21.33*0}, 0},
  148. {{0|(8<<4)}, {20.36*8, 21.33*0}, 0},
  149. {{0|(9<<4)}, {20.36*9, 21.33*0}, 0},
  150. {{0|(10<<4)}, {20.36*10,21.33*0}, 0},
  151. {{0|(11<<4)}, {20.36*11,21.33*0}, 1},
  152. {{1|(0<<4)}, {20.36*0, 21.33*1}, 1},
  153. {{1|(1<<4)}, {20.36*1, 21.33*1}, 0},
  154. {{1|(2<<4)}, {20.36*2, 21.33*1}, 0},
  155. {{1|(3<<4)}, {20.36*3, 21.33*1}, 0},
  156. {{1|(4<<4)}, {20.36*4, 21.33*1}, 0},
  157. {{1|(5<<4)}, {20.36*5, 21.33*1}, 0},
  158. {{1|(6<<4)}, {20.36*6, 21.33*1}, 0},
  159. {{1|(7<<4)}, {20.36*7, 21.33*1}, 0},
  160. {{1|(8<<4)}, {20.36*8, 21.33*1}, 0},
  161. {{1|(9<<4)}, {20.36*9, 21.33*1}, 0},
  162. {{1|(10<<4)}, {20.36*10,21.33*1}, 0},
  163. {{1|(11<<4)}, {20.36*11,21.33*1}, 1},
  164. {{2|(0<<4)}, {20.36*0, 21.33*2}, 1},
  165. {{2|(1<<4)}, {20.36*1, 21.33*2}, 0},
  166. {{2|(2<<4)}, {20.36*2, 21.33*2}, 0},
  167. {{2|(3<<4)}, {20.36*3, 21.33*2}, 0},
  168. {{2|(4<<4)}, {20.36*4, 21.33*2}, 0},
  169. {{2|(5<<4)}, {20.36*5, 21.33*2}, 0},
  170. {{2|(6<<4)}, {20.36*6, 21.33*2}, 0},
  171. {{2|(7<<4)}, {20.36*7, 21.33*2}, 0},
  172. {{2|(8<<4)}, {20.36*8, 21.33*2}, 0},
  173. {{2|(9<<4)}, {20.36*9, 21.33*2}, 0},
  174. {{2|(10<<4)}, {20.36*10,21.33*2}, 0},
  175. {{2|(11<<4)}, {20.36*11,21.33*2}, 1},
  176. {{3|(0<<4)}, {20.36*0, 21.33*3}, 1},
  177. {{3|(1<<4)}, {20.36*1, 21.33*3}, 1},
  178. {{3|(2<<4)}, {20.36*2, 21.33*3}, 1},
  179. {{3|(3<<4)}, {20.36*3, 21.33*3}, 1},
  180. {{3|(4<<4)}, {20.36*4, 21.33*3}, 1},
  181. #ifdef PLANCK_MIT_LAYOUT
  182. {{3|(5<<4)}, {20.36*5, 21.33*3}, 0},
  183. {{3|(5<<4)}, {20.36*5.5, 21.33*3}, 0},
  184. {{3|(5<<4)}, {20.36*6, 21.33*3}, 0},
  185. #else
  186. {{3|(5<<4)}, {20.36*5, 21.33*3}, 0},
  187. {{0xFF}, {20.36*5.5, 21.33*3}, 0},
  188. {{3|(6<<4)}, {20.36*6, 21.33*3}, 0},
  189. #endif
  190. {{3|(7<<4)}, {20.36*7, 21.33*3}, 1},
  191. {{3|(8<<4)}, {20.36*8, 21.33*3}, 1},
  192. {{3|(9<<4)}, {20.36*9, 21.33*3}, 1},
  193. {{3|(10<<4)}, {20.36*10,21.33*3}, 1},
  194. {{3|(11<<4)}, {20.36*11,21.33*3}, 1}
  195. };
  196. void matrix_init_kb(void) {
  197. // Initialize LED drivers for backlight.
  198. backlight_init_drivers();
  199. backlight_timer_init();
  200. backlight_timer_enable();
  201. // Turn status LED on
  202. DDRD |= (1<<6);
  203. PORTD |= (1<<6);
  204. matrix_init_user();
  205. }
  206. bool process_record_kb(uint16_t keycode, keyrecord_t *record)
  207. {
  208. // Record keypresses for backlight effects
  209. if ( record->event.pressed ) {
  210. backlight_set_key_hit( record->event.key.row, record->event.key.col );
  211. } else {
  212. // backlight_unset_key_hit( record->event.key.row, record->event.key.col );
  213. }
  214. return process_record_user(keycode, record);
  215. }
  216. uint16_t backlight_task_counter = 0;
  217. void matrix_scan_kb(void)
  218. {
  219. // if (backlight_task_counter == 0)
  220. backlight_rgb_task();
  221. // backlight_effect_single_LED_test();
  222. // backlight_task_counter = ((backlight_task_counter + 1) % 5);
  223. // This only updates the LED driver buffers if something has changed.
  224. backlight_update_pwm_buffers();
  225. matrix_scan_user();
  226. }
  227. void led_set_kb(uint8_t usb_led)
  228. {
  229. backlight_set_indicator_state(usb_led);
  230. //backlight_debug_led(usb_led & (1<<USB_LED_CAPS_LOCK));
  231. }
  232. void suspend_power_down_kb(void)
  233. {
  234. backlight_set_suspend_state(true);
  235. }
  236. void suspend_wakeup_init_kb(void)
  237. {
  238. backlight_set_suspend_state(false);
  239. }