rgblight.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553
  1. #include <avr/eeprom.h>
  2. #include <avr/interrupt.h>
  3. #include <util/delay.h>
  4. #include "progmem.h"
  5. #include "timer.h"
  6. #include "rgblight.h"
  7. #include "debug.h"
  8. const uint8_t DIM_CURVE[] PROGMEM = {
  9. 0, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3,
  10. 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4,
  11. 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6,
  12. 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8,
  13. 8, 8, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 11, 11, 11,
  14. 11, 11, 12, 12, 12, 12, 12, 13, 13, 13, 13, 14, 14, 14, 14, 15,
  15. 15, 15, 16, 16, 16, 16, 17, 17, 17, 18, 18, 18, 19, 19, 19, 20,
  16. 20, 20, 21, 21, 22, 22, 22, 23, 23, 24, 24, 25, 25, 25, 26, 26,
  17. 27, 27, 28, 28, 29, 29, 30, 30, 31, 32, 32, 33, 33, 34, 35, 35,
  18. 36, 36, 37, 38, 38, 39, 40, 40, 41, 42, 43, 43, 44, 45, 46, 47,
  19. 48, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62,
  20. 63, 64, 65, 66, 68, 69, 70, 71, 73, 74, 75, 76, 78, 79, 81, 82,
  21. 83, 85, 86, 88, 90, 91, 93, 94, 96, 98, 99, 101, 103, 105, 107, 109,
  22. 110, 112, 114, 116, 118, 121, 123, 125, 127, 129, 132, 134, 136, 139, 141, 144,
  23. 146, 149, 151, 154, 157, 159, 162, 165, 168, 171, 174, 177, 180, 183, 186, 190,
  24. 193, 196, 200, 203, 207, 211, 214, 218, 222, 226, 230, 234, 238, 242, 248, 255
  25. };
  26. const uint8_t RGBLED_BREATHING_TABLE[] PROGMEM = {
  27. 0, 0, 0, 0, 1, 1, 1, 2, 2, 3, 4, 5, 5, 6, 7, 9,
  28. 10, 11, 12, 14, 15, 17, 18, 20, 21, 23, 25, 27, 29, 31, 33, 35,
  29. 37, 40, 42, 44, 47, 49, 52, 54, 57, 59, 62, 65, 67, 70, 73, 76,
  30. 79, 82, 85, 88, 90, 93, 97, 100, 103, 106, 109, 112, 115, 118, 121, 124,
  31. 127, 131, 134, 137, 140, 143, 146, 149, 152, 155, 158, 162, 165, 167, 170, 173,
  32. 176, 179, 182, 185, 188, 190, 193, 196, 198, 201, 203, 206, 208, 211, 213, 215,
  33. 218, 220, 222, 224, 226, 228, 230, 232, 234, 235, 237, 238, 240, 241, 243, 244,
  34. 245, 246, 248, 249, 250, 250, 251, 252, 253, 253, 254, 254, 254, 255, 255, 255,
  35. 255, 255, 255, 255, 254, 254, 254, 253, 253, 252, 251, 250, 250, 249, 248, 246,
  36. 245, 244, 243, 241, 240, 238, 237, 235, 234, 232, 230, 228, 226, 224, 222, 220,
  37. 218, 215, 213, 211, 208, 206, 203, 201, 198, 196, 193, 190, 188, 185, 182, 179,
  38. 176, 173, 170, 167, 165, 162, 158, 155, 152, 149, 146, 143, 140, 137, 134, 131,
  39. 128, 124, 121, 118, 115, 112, 109, 106, 103, 100, 97, 93, 90, 88, 85, 82,
  40. 79, 76, 73, 70, 67, 65, 62, 59, 57, 54, 52, 49, 47, 44, 42, 40,
  41. 37, 35, 33, 31, 29, 27, 25, 23, 21, 20, 18, 17, 15, 14, 12, 11,
  42. 10, 9, 7, 6, 5, 5, 4, 3, 2, 2, 1, 1, 1, 0, 0, 0
  43. };
  44. const uint8_t RGBLED_BREATHING_INTERVALS[] PROGMEM = {30, 20, 10, 5};
  45. const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {120, 60, 30};
  46. const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {100, 50, 20};
  47. const uint8_t RGBLED_SNAKE_INTERVALS[] PROGMEM = {100, 50, 20};
  48. const uint8_t RGBLED_KNIGHT_INTERVALS[] PROGMEM = {100, 50, 20};
  49. rgblight_config_t rgblight_config;
  50. rgblight_config_t inmem_config;
  51. #ifdef RGBW
  52. struct cRGBW led[RGBLED_NUM];
  53. #else
  54. struct cRGB led[RGBLED_NUM];
  55. #endif
  56. uint8_t rgblight_inited = 0;
  57. void sethsv(uint16_t hue, uint8_t sat, uint8_t val, struct cRGB *led1) {
  58. // Convert hue, saturation, and value (HSV/HSB) to RGB. DIM_CURVE is used only
  59. // on value and saturation (inverted). This looks the most natural.
  60. uint8_t r = 0, g = 0, b = 0, base, color;
  61. val = pgm_read_byte(&DIM_CURVE[val]);
  62. sat = 255 - pgm_read_byte(&DIM_CURVE[255 - sat]);
  63. if (sat == 0) { // Acromatic color (gray). Hue doesn't mind.
  64. r = val;
  65. g = val;
  66. b = val;
  67. } else {
  68. base = ((255 - sat) * val) >> 8;
  69. color = (val - base) * (hue % 60) / 60;
  70. switch (hue / 60) {
  71. case 0:
  72. r = val;
  73. g = base + color;
  74. b = base;
  75. break;
  76. case 1:
  77. r = val - color;
  78. g = val;
  79. b = base;
  80. break;
  81. case 2:
  82. r = base;
  83. g = val;
  84. b = base + color;
  85. break;
  86. case 3:
  87. r = base;
  88. g = val - color;
  89. b = val;
  90. break;
  91. case 4:
  92. r = base + color;
  93. g = base;
  94. b = val;
  95. break;
  96. case 5:
  97. r = val;
  98. g = base;
  99. b = val - color;
  100. break;
  101. }
  102. }
  103. setrgb(r, g, b, led1);
  104. }
  105. void setrgb(uint8_t r, uint8_t g, uint8_t b, struct cRGB *led1) {
  106. (*led1).r = r;
  107. (*led1).g = g;
  108. (*led1).b = b;
  109. }
  110. uint32_t eeconfig_read_rgblight(void) {
  111. return eeprom_read_dword(EECONFIG_RGBLIGHT);
  112. }
  113. void eeconfig_update_rgblight(uint32_t val) {
  114. eeprom_update_dword(EECONFIG_RGBLIGHT, val);
  115. }
  116. void eeconfig_update_rgblight_default(void) {
  117. dprintf("eeconfig_update_rgblight_default\n");
  118. rgblight_config.enable = 1;
  119. rgblight_config.mode = 1;
  120. rgblight_config.hue = 200;
  121. rgblight_config.sat = 204;
  122. rgblight_config.val = 204;
  123. eeconfig_update_rgblight(rgblight_config.raw);
  124. }
  125. void eeconfig_debug_rgblight(void) {
  126. dprintf("rgblight_config eprom\n");
  127. dprintf("rgblight_config.enable = %d\n", rgblight_config.enable);
  128. dprintf("rghlight_config.mode = %d\n", rgblight_config.mode);
  129. dprintf("rgblight_config.hue = %d\n", rgblight_config.hue);
  130. dprintf("rgblight_config.sat = %d\n", rgblight_config.sat);
  131. dprintf("rgblight_config.val = %d\n", rgblight_config.val);
  132. }
  133. void rgblight_init(void) {
  134. debug_enable = 1; // Debug ON!
  135. dprintf("rgblight_init called.\n");
  136. rgblight_inited = 1;
  137. dprintf("rgblight_init start!\n");
  138. if (!eeconfig_is_enabled()) {
  139. dprintf("rgblight_init eeconfig is not enabled.\n");
  140. eeconfig_init();
  141. eeconfig_update_rgblight_default();
  142. }
  143. rgblight_config.raw = eeconfig_read_rgblight();
  144. if (!rgblight_config.mode) {
  145. dprintf("rgblight_init rgblight_config.mode = 0. Write default values to EEPROM.\n");
  146. eeconfig_update_rgblight_default();
  147. rgblight_config.raw = eeconfig_read_rgblight();
  148. }
  149. eeconfig_debug_rgblight(); // display current eeprom values
  150. #if !defined(AUDIO_ENABLE) && defined(RGBLIGHT_TIMER)
  151. rgblight_timer_init(); // setup the timer
  152. #endif
  153. if (rgblight_config.enable) {
  154. rgblight_mode(rgblight_config.mode);
  155. }
  156. }
  157. void rgblight_increase(void) {
  158. uint8_t mode = 0;
  159. if (rgblight_config.mode < RGBLIGHT_MODES) {
  160. mode = rgblight_config.mode + 1;
  161. }
  162. rgblight_mode(mode);
  163. }
  164. void rgblight_decrease(void) {
  165. uint8_t mode = 0;
  166. // Mode will never be < 1. If it ever is, eeprom needs to be initialized.
  167. if (rgblight_config.mode > 1) {
  168. mode = rgblight_config.mode - 1;
  169. }
  170. rgblight_mode(mode);
  171. }
  172. void rgblight_step(void) {
  173. uint8_t mode = 0;
  174. mode = rgblight_config.mode + 1;
  175. if (mode > RGBLIGHT_MODES) {
  176. mode = 1;
  177. }
  178. rgblight_mode(mode);
  179. }
  180. void rgblight_mode(uint8_t mode) {
  181. if (!rgblight_config.enable) {
  182. return;
  183. }
  184. if (mode < 1) {
  185. rgblight_config.mode = 1;
  186. } else if (mode > RGBLIGHT_MODES) {
  187. rgblight_config.mode = RGBLIGHT_MODES;
  188. } else {
  189. rgblight_config.mode = mode;
  190. }
  191. eeconfig_update_rgblight(rgblight_config.raw);
  192. xprintf("rgblight mode: %u\n", rgblight_config.mode);
  193. if (rgblight_config.mode == 1) {
  194. #if !defined(AUDIO_ENABLE) && defined(RGBLIGHT_TIMER)
  195. rgblight_timer_disable();
  196. #endif
  197. } else if (rgblight_config.mode >= 2 && rgblight_config.mode <= 23) {
  198. // MODE 2-5, breathing
  199. // MODE 6-8, rainbow mood
  200. // MODE 9-14, rainbow swirl
  201. // MODE 15-20, snake
  202. // MODE 21-23, knight
  203. #if !defined(AUDIO_ENABLE) && defined(RGBLIGHT_TIMER)
  204. rgblight_timer_enable();
  205. #endif
  206. }
  207. rgblight_sethsv(rgblight_config.hue, rgblight_config.sat, rgblight_config.val);
  208. }
  209. void rgblight_toggle(void) {
  210. rgblight_config.enable ^= 1;
  211. eeconfig_update_rgblight(rgblight_config.raw);
  212. xprintf("rgblight toggle: rgblight_config.enable = %u\n", rgblight_config.enable);
  213. if (rgblight_config.enable) {
  214. rgblight_mode(rgblight_config.mode);
  215. } else {
  216. #if !defined(AUDIO_ENABLE) && defined(RGBLIGHT_TIMER)
  217. rgblight_timer_disable();
  218. #endif
  219. _delay_ms(50);
  220. rgblight_set();
  221. }
  222. }
  223. void rgblight_increase_hue(void) {
  224. uint16_t hue;
  225. hue = (rgblight_config.hue+RGBLIGHT_HUE_STEP) % 360;
  226. rgblight_sethsv(hue, rgblight_config.sat, rgblight_config.val);
  227. }
  228. void rgblight_decrease_hue(void) {
  229. uint16_t hue;
  230. if (rgblight_config.hue-RGBLIGHT_HUE_STEP < 0) {
  231. hue = (rgblight_config.hue + 360 - RGBLIGHT_HUE_STEP) % 360;
  232. } else {
  233. hue = (rgblight_config.hue - RGBLIGHT_HUE_STEP) % 360;
  234. }
  235. rgblight_sethsv(hue, rgblight_config.sat, rgblight_config.val);
  236. }
  237. void rgblight_increase_sat(void) {
  238. uint8_t sat;
  239. if (rgblight_config.sat + RGBLIGHT_SAT_STEP > 255) {
  240. sat = 255;
  241. } else {
  242. sat = rgblight_config.sat + RGBLIGHT_SAT_STEP;
  243. }
  244. rgblight_sethsv(rgblight_config.hue, sat, rgblight_config.val);
  245. }
  246. void rgblight_decrease_sat(void) {
  247. uint8_t sat;
  248. if (rgblight_config.sat - RGBLIGHT_SAT_STEP < 0) {
  249. sat = 0;
  250. } else {
  251. sat = rgblight_config.sat - RGBLIGHT_SAT_STEP;
  252. }
  253. rgblight_sethsv(rgblight_config.hue, sat, rgblight_config.val);
  254. }
  255. void rgblight_increase_val(void) {
  256. uint8_t val;
  257. if (rgblight_config.val + RGBLIGHT_VAL_STEP > 255) {
  258. val = 255;
  259. } else {
  260. val = rgblight_config.val + RGBLIGHT_VAL_STEP;
  261. }
  262. rgblight_sethsv(rgblight_config.hue, rgblight_config.sat, val);
  263. }
  264. void rgblight_decrease_val(void) {
  265. uint8_t val;
  266. if (rgblight_config.val - RGBLIGHT_VAL_STEP < 0) {
  267. val = 0;
  268. } else {
  269. val = rgblight_config.val - RGBLIGHT_VAL_STEP;
  270. }
  271. rgblight_sethsv(rgblight_config.hue, rgblight_config.sat, val);
  272. }
  273. void rgblight_sethsv_noeeprom(uint16_t hue, uint8_t sat, uint8_t val) {
  274. inmem_config.raw = rgblight_config.raw;
  275. if (rgblight_config.enable) {
  276. struct cRGB tmp_led;
  277. sethsv(hue, sat, val, &tmp_led);
  278. inmem_config.hue = hue;
  279. inmem_config.sat = sat;
  280. inmem_config.val = val;
  281. // dprintf("rgblight set hue [MEMORY]: %u,%u,%u\n", inmem_config.hue, inmem_config.sat, inmem_config.val);
  282. rgblight_setrgb(tmp_led.r, tmp_led.g, tmp_led.b);
  283. }
  284. }
  285. void rgblight_sethsv(uint16_t hue, uint8_t sat, uint8_t val) {
  286. if (rgblight_config.enable) {
  287. if (rgblight_config.mode == 1) {
  288. // same static color
  289. rgblight_sethsv_noeeprom(hue, sat, val);
  290. } else {
  291. // all LEDs in same color
  292. if (rgblight_config.mode >= 2 && rgblight_config.mode <= 5) {
  293. // breathing mode, ignore the change of val, use in memory value instead
  294. val = rgblight_config.val;
  295. } else if (rgblight_config.mode >= 6 && rgblight_config.mode <= 14) {
  296. // rainbow mood and rainbow swirl, ignore the change of hue
  297. hue = rgblight_config.hue;
  298. }
  299. }
  300. rgblight_config.hue = hue;
  301. rgblight_config.sat = sat;
  302. rgblight_config.val = val;
  303. eeconfig_update_rgblight(rgblight_config.raw);
  304. xprintf("rgblight set hsv [EEPROM]: %u,%u,%u\n", rgblight_config.hue, rgblight_config.sat, rgblight_config.val);
  305. }
  306. }
  307. void rgblight_setrgb(uint8_t r, uint8_t g, uint8_t b) {
  308. // dprintf("rgblight set rgb: %u,%u,%u\n", r,g,b);
  309. for (uint8_t i = 0; i < RGBLED_NUM; i++) {
  310. led[i].r = r;
  311. led[i].g = g;
  312. led[i].b = b;
  313. }
  314. rgblight_set();
  315. }
  316. void rgblight_set(void) {
  317. if (rgblight_config.enable) {
  318. #ifdef RGBW
  319. ws2812_setleds_rgbw(led, RGBLED_NUM);
  320. #else
  321. ws2812_setleds(led, RGBLED_NUM);
  322. #endif
  323. } else {
  324. for (uint8_t i = 0; i < RGBLED_NUM; i++) {
  325. led[i].r = 0;
  326. led[i].g = 0;
  327. led[i].b = 0;
  328. }
  329. #ifdef RGBW
  330. ws2812_setleds_rgbw(led, RGBLED_NUM);
  331. #else
  332. ws2812_setleds(led, RGBLED_NUM);
  333. #endif
  334. }
  335. }
  336. #if !defined(AUDIO_ENABLE) && defined(RGBLIGHT_TIMER)
  337. // Animation timer -- AVR Timer3
  338. void rgblight_timer_init(void) {
  339. static uint8_t rgblight_timer_is_init = 0;
  340. if (rgblight_timer_is_init) {
  341. return;
  342. }
  343. rgblight_timer_is_init = 1;
  344. /* Timer 3 setup */
  345. TCCR3B = _BV(WGM32) //CTC mode OCR3A as TOP
  346. | _BV(CS30); //Clock selelct: clk/1
  347. /* Set TOP value */
  348. uint8_t sreg = SREG;
  349. cli();
  350. OCR3AH = (RGBLED_TIMER_TOP >> 8) & 0xff;
  351. OCR3AL = RGBLED_TIMER_TOP & 0xff;
  352. SREG = sreg;
  353. }
  354. void rgblight_timer_enable(void) {
  355. TIMSK3 |= _BV(OCIE3A);
  356. dprintf("TIMER3 enabled.\n");
  357. }
  358. void rgblight_timer_disable(void) {
  359. TIMSK3 &= ~_BV(OCIE3A);
  360. dprintf("TIMER3 disabled.\n");
  361. }
  362. void rgblight_timer_toggle(void) {
  363. TIMSK3 ^= _BV(OCIE3A);
  364. dprintf("TIMER3 toggled.\n");
  365. }
  366. ISR(TIMER3_COMPA_vect) {
  367. // mode = 1, static light, do nothing here
  368. if (rgblight_config.mode >= 2 && rgblight_config.mode <= 5) {
  369. // mode = 2 to 5, breathing mode
  370. rgblight_effect_breathing(rgblight_config.mode - 2);
  371. } else if (rgblight_config.mode >= 6 && rgblight_config.mode <= 8) {
  372. // mode = 6 to 8, rainbow mood mod
  373. rgblight_effect_rainbow_mood(rgblight_config.mode - 6);
  374. } else if (rgblight_config.mode >= 9 && rgblight_config.mode <= 14) {
  375. // mode = 9 to 14, rainbow swirl mode
  376. rgblight_effect_rainbow_swirl(rgblight_config.mode - 9);
  377. } else if (rgblight_config.mode >= 15 && rgblight_config.mode <= 20) {
  378. // mode = 15 to 20, snake mode
  379. rgblight_effect_snake(rgblight_config.mode - 15);
  380. } else if (rgblight_config.mode >= 21 && rgblight_config.mode <= 23) {
  381. // mode = 21 to 23, knight mode
  382. rgblight_effect_knight(rgblight_config.mode - 21);
  383. }
  384. }
  385. // Effects
  386. void rgblight_effect_breathing(uint8_t interval) {
  387. static uint8_t pos = 0;
  388. static uint16_t last_timer = 0;
  389. if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_BREATHING_INTERVALS[interval])) {
  390. return;
  391. }
  392. last_timer = timer_read();
  393. rgblight_sethsv_noeeprom(rgblight_config.hue, rgblight_config.sat, pgm_read_byte(&RGBLED_BREATHING_TABLE[pos]));
  394. pos = (pos + 1) % 256;
  395. }
  396. void rgblight_effect_rainbow_mood(uint8_t interval) {
  397. static uint16_t current_hue = 0;
  398. static uint16_t last_timer = 0;
  399. if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_RAINBOW_MOOD_INTERVALS[interval])) {
  400. return;
  401. }
  402. last_timer = timer_read();
  403. rgblight_sethsv_noeeprom(current_hue, rgblight_config.sat, rgblight_config.val);
  404. current_hue = (current_hue + 1) % 360;
  405. }
  406. void rgblight_effect_rainbow_swirl(uint8_t interval) {
  407. static uint16_t current_hue = 0;
  408. static uint16_t last_timer = 0;
  409. uint16_t hue;
  410. uint8_t i;
  411. if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_RAINBOW_MOOD_INTERVALS[interval / 2])) {
  412. return;
  413. }
  414. last_timer = timer_read();
  415. for (i = 0; i < RGBLED_NUM; i++) {
  416. hue = (360 / RGBLED_NUM * i + current_hue) % 360;
  417. sethsv(hue, rgblight_config.sat, rgblight_config.val, &led[i]);
  418. }
  419. rgblight_set();
  420. if (interval % 2) {
  421. current_hue = (current_hue + 1) % 360;
  422. } else {
  423. if (current_hue - 1 < 0) {
  424. current_hue = 359;
  425. } else {
  426. current_hue = current_hue - 1;
  427. }
  428. }
  429. }
  430. void rgblight_effect_snake(uint8_t interval) {
  431. static uint8_t pos = 0;
  432. static uint16_t last_timer = 0;
  433. uint8_t i, j;
  434. int8_t k;
  435. int8_t increment = 1;
  436. if (interval % 2) {
  437. increment = -1;
  438. }
  439. if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_SNAKE_INTERVALS[interval / 2])) {
  440. return;
  441. }
  442. last_timer = timer_read();
  443. for (i = 0; i < RGBLED_NUM; i++) {
  444. led[i].r = 0;
  445. led[i].g = 0;
  446. led[i].b = 0;
  447. for (j = 0; j < RGBLIGHT_EFFECT_SNAKE_LENGTH; j++) {
  448. k = pos + j * increment;
  449. if (k < 0) {
  450. k = k + RGBLED_NUM;
  451. }
  452. if (i == k) {
  453. sethsv(rgblight_config.hue, rgblight_config.sat, (uint8_t)(rgblight_config.val*(RGBLIGHT_EFFECT_SNAKE_LENGTH-j)/RGBLIGHT_EFFECT_SNAKE_LENGTH), &led[i]);
  454. }
  455. }
  456. }
  457. rgblight_set();
  458. if (increment == 1) {
  459. if (pos - 1 < 0) {
  460. pos = RGBLED_NUM - 1;
  461. } else {
  462. pos -= 1;
  463. }
  464. } else {
  465. pos = (pos + 1) % RGBLED_NUM;
  466. }
  467. }
  468. void rgblight_effect_knight(uint8_t interval) {
  469. static int8_t pos = 0;
  470. static uint16_t last_timer = 0;
  471. uint8_t i, j, cur;
  472. int8_t k;
  473. struct cRGB preled[RGBLED_NUM];
  474. static int8_t increment = -1;
  475. if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_KNIGHT_INTERVALS[interval])) {
  476. return;
  477. }
  478. last_timer = timer_read();
  479. for (i = 0; i < RGBLED_NUM; i++) {
  480. preled[i].r = 0;
  481. preled[i].g = 0;
  482. preled[i].b = 0;
  483. for (j = 0; j < RGBLIGHT_EFFECT_KNIGHT_LENGTH; j++) {
  484. k = pos + j * increment;
  485. if (k < 0) {
  486. k = 0;
  487. }
  488. if (k >= RGBLED_NUM) {
  489. k = RGBLED_NUM - 1;
  490. }
  491. if (i == k) {
  492. sethsv(rgblight_config.hue, rgblight_config.sat, rgblight_config.val, &preled[i]);
  493. }
  494. }
  495. }
  496. if (RGBLIGHT_EFFECT_KNIGHT_OFFSET) {
  497. for (i = 0; i < RGBLED_NUM; i++) {
  498. cur = (i + RGBLIGHT_EFFECT_KNIGHT_OFFSET) % RGBLED_NUM;
  499. led[i].r = preled[cur].r;
  500. led[i].g = preled[cur].g;
  501. led[i].b = preled[cur].b;
  502. }
  503. }
  504. rgblight_set();
  505. if (increment == 1) {
  506. if (pos - 1 < 0 - RGBLIGHT_EFFECT_KNIGHT_LENGTH) {
  507. pos = 0 - RGBLIGHT_EFFECT_KNIGHT_LENGTH;
  508. increment = -1;
  509. } else {
  510. pos -= 1;
  511. }
  512. } else {
  513. if (pos + 1 > RGBLED_NUM + RGBLIGHT_EFFECT_KNIGHT_LENGTH) {
  514. pos = RGBLED_NUM + RGBLIGHT_EFFECT_KNIGHT_LENGTH - 1;
  515. increment = 1;
  516. } else {
  517. pos += 1;
  518. }
  519. }
  520. }
  521. #endif