]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/rgblight.c
Added mode reverse step function
[qmk_firmware.git] / quantum / rgblight.c
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
9 // Lightness curve using the CIE 1931 lightness formula
10 //Generated by the python script provided in http://jared.geek.nz/2013/feb/linear-led-pwm
11 const uint8_t DIM_CURVE[] PROGMEM = {
12     0, 0, 0, 0, 0, 1, 1, 1, 1, 1,
13     1, 1, 1, 1, 2, 2, 2, 2, 2, 2,
14     2, 2, 2, 3, 3, 3, 3, 3, 3, 3,
15     3, 4, 4, 4, 4, 4, 4, 5, 5, 5,
16     5, 5, 6, 6, 6, 6, 6, 7, 7, 7,
17     7, 8, 8, 8, 8, 9, 9, 9, 10, 10,
18     10, 10, 11, 11, 11, 12, 12, 12, 13, 13,
19     13, 14, 14, 15, 15, 15, 16, 16, 17, 17,
20     17, 18, 18, 19, 19, 20, 20, 21, 21, 22,
21     22, 23, 23, 24, 24, 25, 25, 26, 26, 27,
22     28, 28, 29, 29, 30, 31, 31, 32, 32, 33,
23     34, 34, 35, 36, 37, 37, 38, 39, 39, 40,
24     41, 42, 43, 43, 44, 45, 46, 47, 47, 48,
25     49, 50, 51, 52, 53, 54, 54, 55, 56, 57,
26     58, 59, 60, 61, 62, 63, 64, 65, 66, 67,
27     68, 70, 71, 72, 73, 74, 75, 76, 77, 79,
28     80, 81, 82, 83, 85, 86, 87, 88, 90, 91,
29     92, 94, 95, 96, 98, 99, 100, 102, 103, 105,
30     106, 108, 109, 110, 112, 113, 115, 116, 118, 120,
31     121, 123, 124, 126, 128, 129, 131, 132, 134, 136,
32     138, 139, 141, 143, 145, 146, 148, 150, 152, 154,
33     155, 157, 159, 161, 163, 165, 167, 169, 171, 173,
34     175, 177, 179, 181, 183, 185, 187, 189, 191, 193,
35     196, 198, 200, 202, 204, 207, 209, 211, 214, 216,
36     218, 220, 223, 225, 228, 230, 232, 235, 237, 240,
37     242, 245, 247, 250, 252, 255,
38     };
39
40 const uint8_t RGBLED_BREATHING_TABLE[] PROGMEM = {
41   0, 0, 0, 0, 1, 1, 1, 2, 2, 3, 4, 5, 5, 6, 7, 9,
42   10, 11, 12, 14, 15, 17, 18, 20, 21, 23, 25, 27, 29, 31, 33, 35,
43   37, 40, 42, 44, 47, 49, 52, 54, 57, 59, 62, 65, 67, 70, 73, 76,
44   79, 82, 85, 88, 90, 93, 97, 100, 103, 106, 109, 112, 115, 118, 121, 124,
45   127, 131, 134, 137, 140, 143, 146, 149, 152, 155, 158, 162, 165, 167, 170, 173,
46   176, 179, 182, 185, 188, 190, 193, 196, 198, 201, 203, 206, 208, 211, 213, 215,
47   218, 220, 222, 224, 226, 228, 230, 232, 234, 235, 237, 238, 240, 241, 243, 244,
48   245, 246, 248, 249, 250, 250, 251, 252, 253, 253, 254, 254, 254, 255, 255, 255,
49   255, 255, 255, 255, 254, 254, 254, 253, 253, 252, 251, 250, 250, 249, 248, 246,
50   245, 244, 243, 241, 240, 238, 237, 235, 234, 232, 230, 228, 226, 224, 222, 220,
51   218, 215, 213, 211, 208, 206, 203, 201, 198, 196, 193, 190, 188, 185, 182, 179,
52   176, 173, 170, 167, 165, 162, 158, 155, 152, 149, 146, 143, 140, 137, 134, 131,
53   128, 124, 121, 118, 115, 112, 109, 106, 103, 100, 97, 93, 90, 88, 85, 82,
54   79, 76, 73, 70, 67, 65, 62, 59, 57, 54, 52, 49, 47, 44, 42, 40,
55   37, 35, 33, 31, 29, 27, 25, 23, 21, 20, 18, 17, 15, 14, 12, 11,
56   10, 9, 7, 6, 5, 5, 4, 3, 2, 2, 1, 1, 1, 0, 0, 0
57 };
58
59 __attribute__ ((weak))
60 const uint8_t RGBLED_BREATHING_INTERVALS[] PROGMEM = {30, 20, 10, 5};
61 __attribute__ ((weak))
62 const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {120, 60, 30};
63 __attribute__ ((weak))
64 const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {100, 50, 20};
65 __attribute__ ((weak))
66 const uint8_t RGBLED_SNAKE_INTERVALS[] PROGMEM = {100, 50, 20};
67 __attribute__ ((weak))
68 const uint8_t RGBLED_KNIGHT_INTERVALS[] PROGMEM = {100, 50, 20};
69
70 rgblight_config_t rgblight_config;
71 rgblight_config_t inmem_config;
72
73 LED_TYPE led[RGBLED_NUM];
74 uint8_t rgblight_inited = 0;
75 bool rgblight_timer_enabled = false;
76
77 void sethsv(uint16_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1) {
78   uint8_t r = 0, g = 0, b = 0, base, color;
79
80   if (sat == 0) { // Acromatic color (gray). Hue doesn't mind.
81     r = val;
82     g = val;
83     b = val;
84   } else {
85     base = ((255 - sat) * val) >> 8;
86     color = (val - base) * (hue % 60) / 60;
87
88     switch (hue / 60) {
89       case 0:
90         r = val;
91         g = base + color;
92         b = base;
93         break;
94       case 1:
95         r = val - color;
96         g = val;
97         b = base;
98         break;
99       case 2:
100         r = base;
101         g = val;
102         b = base + color;
103         break;
104       case 3:
105         r = base;
106         g = val - color;
107         b = val;
108         break;
109       case 4:
110         r = base + color;
111         g = base;
112         b = val;
113         break;
114       case 5:
115         r = val;
116         g = base;
117         b = val - color;
118         break;
119     }
120   }
121   r = pgm_read_byte(&DIM_CURVE[r]);
122   g = pgm_read_byte(&DIM_CURVE[g]);
123   b = pgm_read_byte(&DIM_CURVE[b]);
124
125   setrgb(r, g, b, led1);
126 }
127
128 void setrgb(uint8_t r, uint8_t g, uint8_t b, LED_TYPE *led1) {
129   (*led1).r = r;
130   (*led1).g = g;
131   (*led1).b = b;
132 }
133
134
135 uint32_t eeconfig_read_rgblight(void) {
136   return eeprom_read_dword(EECONFIG_RGBLIGHT);
137 }
138 void eeconfig_update_rgblight(uint32_t val) {
139   eeprom_update_dword(EECONFIG_RGBLIGHT, val);
140 }
141 void eeconfig_update_rgblight_default(void) {
142   dprintf("eeconfig_update_rgblight_default\n");
143   rgblight_config.enable = 1;
144   rgblight_config.mode = 1;
145   rgblight_config.hue = 0;
146   rgblight_config.sat = 255;
147   rgblight_config.val = 255;
148   eeconfig_update_rgblight(rgblight_config.raw);
149 }
150 void eeconfig_debug_rgblight(void) {
151   dprintf("rgblight_config eprom\n");
152   dprintf("rgblight_config.enable = %d\n", rgblight_config.enable);
153   dprintf("rghlight_config.mode = %d\n", rgblight_config.mode);
154   dprintf("rgblight_config.hue = %d\n", rgblight_config.hue);
155   dprintf("rgblight_config.sat = %d\n", rgblight_config.sat);
156   dprintf("rgblight_config.val = %d\n", rgblight_config.val);
157 }
158
159 void rgblight_init(void) {
160   debug_enable = 1; // Debug ON!
161   dprintf("rgblight_init called.\n");
162   rgblight_inited = 1;
163   dprintf("rgblight_init start!\n");
164   if (!eeconfig_is_enabled()) {
165     dprintf("rgblight_init eeconfig is not enabled.\n");
166     eeconfig_init();
167     eeconfig_update_rgblight_default();
168   }
169   rgblight_config.raw = eeconfig_read_rgblight();
170   if (!rgblight_config.mode) {
171     dprintf("rgblight_init rgblight_config.mode = 0. Write default values to EEPROM.\n");
172     eeconfig_update_rgblight_default();
173     rgblight_config.raw = eeconfig_read_rgblight();
174   }
175   eeconfig_debug_rgblight(); // display current eeprom values
176
177   #ifdef RGBLIGHT_ANIMATIONS
178     rgblight_timer_init(); // setup the timer
179   #endif
180
181   if (rgblight_config.enable) {
182     rgblight_mode(rgblight_config.mode);
183   }
184 }
185
186 void rgblight_update_dword(uint32_t dword) {
187   rgblight_config.raw = dword;
188   eeconfig_update_rgblight(rgblight_config.raw);
189   if (rgblight_config.enable)
190     rgblight_mode(rgblight_config.mode);
191   else {
192     #ifdef RGBLIGHT_ANIMATIONS
193       rgblight_timer_disable();
194     #endif
195       rgblight_set();
196   }
197 }
198
199 void rgblight_increase(void) {
200   uint8_t mode = 0;
201   if (rgblight_config.mode < RGBLIGHT_MODES) {
202     mode = rgblight_config.mode + 1;
203   }
204   rgblight_mode(mode);
205 }
206 void rgblight_decrease(void) {
207   uint8_t mode = 0;
208   // Mode will never be < 1. If it ever is, eeprom needs to be initialized.
209   if (rgblight_config.mode > 1) {
210     mode = rgblight_config.mode - 1;
211   }
212   rgblight_mode(mode);
213 }
214 void rgblight_step(void) {
215   uint8_t mode = 0;
216   mode = rgblight_config.mode + 1;
217   if (mode > RGBLIGHT_MODES) {
218     mode = 1;
219   }
220   rgblight_mode(mode);
221 }
222 void rgblight_step_reverse(void) {
223   uint8_t mode = 0;
224   mode = rgblight_config.mode - 1;
225   if (mode < 1) {
226     mode = RGBLIGHT_MODES;
227   }
228   rgblight_mode(mode);
229 }
230
231 void rgblight_mode(uint8_t mode) {
232   if (!rgblight_config.enable) {
233     return;
234   }
235   if (mode < 1) {
236     rgblight_config.mode = 1;
237   } else if (mode > RGBLIGHT_MODES) {
238     rgblight_config.mode = RGBLIGHT_MODES;
239   } else {
240     rgblight_config.mode = mode;
241   }
242   eeconfig_update_rgblight(rgblight_config.raw);
243   xprintf("rgblight mode: %u\n", rgblight_config.mode);
244   if (rgblight_config.mode == 1) {
245     #ifdef RGBLIGHT_ANIMATIONS
246       rgblight_timer_disable();
247     #endif
248   } else if (rgblight_config.mode >= 2 && rgblight_config.mode <= 24) {
249     // MODE 2-5, breathing
250     // MODE 6-8, rainbow mood
251     // MODE 9-14, rainbow swirl
252     // MODE 15-20, snake
253     // MODE 21-23, knight
254
255     #ifdef RGBLIGHT_ANIMATIONS
256       rgblight_timer_enable();
257     #endif
258   }
259   rgblight_sethsv(rgblight_config.hue, rgblight_config.sat, rgblight_config.val);
260 }
261
262 void rgblight_toggle(void) {
263   rgblight_config.enable ^= 1;
264   eeconfig_update_rgblight(rgblight_config.raw);
265   xprintf("rgblight toggle: rgblight_config.enable = %u\n", rgblight_config.enable);
266   if (rgblight_config.enable) {
267     rgblight_mode(rgblight_config.mode);
268   } else {
269     #ifdef RGBLIGHT_ANIMATIONS
270       rgblight_timer_disable();
271     #endif
272     _delay_ms(50);
273     rgblight_set();
274   }
275 }
276
277 void rgblight_enable(void) {
278   rgblight_config.enable = 1;
279   eeconfig_update_rgblight(rgblight_config.raw);
280   xprintf("rgblight enable: rgblight_config.enable = %u\n", rgblight_config.enable);
281   rgblight_mode(rgblight_config.mode);
282 }
283
284
285 void rgblight_increase_hue(void) {
286   uint16_t hue;
287   hue = (rgblight_config.hue+RGBLIGHT_HUE_STEP) % 360;
288   rgblight_sethsv(hue, rgblight_config.sat, rgblight_config.val);
289 }
290 void rgblight_decrease_hue(void) {
291   uint16_t hue;
292   if (rgblight_config.hue-RGBLIGHT_HUE_STEP < 0) {
293     hue = (rgblight_config.hue + 360 - RGBLIGHT_HUE_STEP) % 360;
294   } else {
295     hue = (rgblight_config.hue - RGBLIGHT_HUE_STEP) % 360;
296   }
297   rgblight_sethsv(hue, rgblight_config.sat, rgblight_config.val);
298 }
299 void rgblight_increase_sat(void) {
300   uint8_t sat;
301   if (rgblight_config.sat + RGBLIGHT_SAT_STEP > 255) {
302     sat = 255;
303   } else {
304     sat = rgblight_config.sat + RGBLIGHT_SAT_STEP;
305   }
306   rgblight_sethsv(rgblight_config.hue, sat, rgblight_config.val);
307 }
308 void rgblight_decrease_sat(void) {
309   uint8_t sat;
310   if (rgblight_config.sat - RGBLIGHT_SAT_STEP < 0) {
311     sat = 0;
312   } else {
313     sat = rgblight_config.sat - RGBLIGHT_SAT_STEP;
314   }
315   rgblight_sethsv(rgblight_config.hue, sat, rgblight_config.val);
316 }
317 void rgblight_increase_val(void) {
318   uint8_t val;
319   if (rgblight_config.val + RGBLIGHT_VAL_STEP > 255) {
320     val = 255;
321   } else {
322     val = rgblight_config.val + RGBLIGHT_VAL_STEP;
323   }
324   rgblight_sethsv(rgblight_config.hue, rgblight_config.sat, val);
325 }
326 void rgblight_decrease_val(void) {
327   uint8_t val;
328   if (rgblight_config.val - RGBLIGHT_VAL_STEP < 0) {
329     val = 0;
330   } else {
331     val = rgblight_config.val - RGBLIGHT_VAL_STEP;
332   }
333   rgblight_sethsv(rgblight_config.hue, rgblight_config.sat, val);
334 }
335
336 void rgblight_sethsv_noeeprom(uint16_t hue, uint8_t sat, uint8_t val) {
337   inmem_config.raw = rgblight_config.raw;
338   if (rgblight_config.enable) {
339     LED_TYPE tmp_led;
340     sethsv(hue, sat, val, &tmp_led);
341     inmem_config.hue = hue;
342     inmem_config.sat = sat;
343     inmem_config.val = val;
344     // dprintf("rgblight set hue [MEMORY]: %u,%u,%u\n", inmem_config.hue, inmem_config.sat, inmem_config.val);
345     rgblight_setrgb(tmp_led.r, tmp_led.g, tmp_led.b);
346   }
347 }
348 void rgblight_sethsv(uint16_t hue, uint8_t sat, uint8_t val) {
349   if (rgblight_config.enable) {
350     if (rgblight_config.mode == 1) {
351       // same static color
352       rgblight_sethsv_noeeprom(hue, sat, val);
353     } else {
354       // all LEDs in same color
355       if (rgblight_config.mode >= 2 && rgblight_config.mode <= 5) {
356         // breathing mode, ignore the change of val, use in memory value instead
357         val = rgblight_config.val;
358       } else if (rgblight_config.mode >= 6 && rgblight_config.mode <= 14) {
359         // rainbow mood and rainbow swirl, ignore the change of hue
360         hue = rgblight_config.hue;
361       }
362     }
363     rgblight_config.hue = hue;
364     rgblight_config.sat = sat;
365     rgblight_config.val = val;
366     eeconfig_update_rgblight(rgblight_config.raw);
367     xprintf("rgblight set hsv [EEPROM]: %u,%u,%u\n", rgblight_config.hue, rgblight_config.sat, rgblight_config.val);
368   }
369 }
370
371 void rgblight_setrgb(uint8_t r, uint8_t g, uint8_t b) {
372   // dprintf("rgblight set rgb: %u,%u,%u\n", r,g,b);
373   for (uint8_t i = 0; i < RGBLED_NUM; i++) {
374     led[i].r = r;
375     led[i].g = g;
376     led[i].b = b;
377   }
378   rgblight_set();
379 }
380
381 __attribute__ ((weak))
382 void rgblight_set(void) {
383   if (rgblight_config.enable) {
384     #ifdef RGBW
385       ws2812_setleds_rgbw(led, RGBLED_NUM);
386     #else
387       ws2812_setleds(led, RGBLED_NUM);
388     #endif
389   } else {
390     for (uint8_t i = 0; i < RGBLED_NUM; i++) {
391       led[i].r = 0;
392       led[i].g = 0;
393       led[i].b = 0;
394     }
395     #ifdef RGBW
396       ws2812_setleds_rgbw(led, RGBLED_NUM);
397     #else
398       ws2812_setleds(led, RGBLED_NUM);
399     #endif
400   }
401 }
402
403 #ifdef RGBLIGHT_ANIMATIONS
404
405 // Animation timer -- AVR Timer3
406 void rgblight_timer_init(void) {
407   // static uint8_t rgblight_timer_is_init = 0;
408   // if (rgblight_timer_is_init) {
409   //   return;
410   // }
411   // rgblight_timer_is_init = 1;
412   // /* Timer 3 setup */
413   // TCCR3B = _BV(WGM32) // CTC mode OCR3A as TOP
414   //       | _BV(CS30); // Clock selelct: clk/1
415   // /* Set TOP value */
416   // uint8_t sreg = SREG;
417   // cli();
418   // OCR3AH = (RGBLED_TIMER_TOP >> 8) & 0xff;
419   // OCR3AL = RGBLED_TIMER_TOP & 0xff;
420   // SREG = sreg;
421
422   rgblight_timer_enabled = true;
423 }
424 void rgblight_timer_enable(void) {
425   rgblight_timer_enabled = true;
426   dprintf("TIMER3 enabled.\n");
427 }
428 void rgblight_timer_disable(void) {
429   rgblight_timer_enabled = false;
430   dprintf("TIMER3 disabled.\n");
431 }
432 void rgblight_timer_toggle(void) {
433   rgblight_timer_enabled ^= rgblight_timer_enabled;
434   dprintf("TIMER3 toggled.\n");
435 }
436
437 void rgblight_show_solid_color(uint8_t r, uint8_t g, uint8_t b) {
438   rgblight_enable();
439   rgblight_mode(1);
440   rgblight_setrgb(r, g, b);
441 }
442
443 void rgblight_task(void) {
444   if (rgblight_timer_enabled) {
445     // mode = 1, static light, do nothing here
446     if (rgblight_config.mode >= 2 && rgblight_config.mode <= 5) {
447       // mode = 2 to 5, breathing mode
448       rgblight_effect_breathing(rgblight_config.mode - 2);
449     } else if (rgblight_config.mode >= 6 && rgblight_config.mode <= 8) {
450       // mode = 6 to 8, rainbow mood mod
451       rgblight_effect_rainbow_mood(rgblight_config.mode - 6);
452     } else if (rgblight_config.mode >= 9 && rgblight_config.mode <= 14) {
453       // mode = 9 to 14, rainbow swirl mode
454       rgblight_effect_rainbow_swirl(rgblight_config.mode - 9);
455     } else if (rgblight_config.mode >= 15 && rgblight_config.mode <= 20) {
456       // mode = 15 to 20, snake mode
457       rgblight_effect_snake(rgblight_config.mode - 15);
458     } else if (rgblight_config.mode >= 21 && rgblight_config.mode <= 23) {
459       // mode = 21 to 23, knight mode
460       rgblight_effect_knight(rgblight_config.mode - 21);
461     } else if (rgblight_config.mode == 24) {
462       // mode = 24, christmas mode
463       rgblight_effect_christmas();
464     }
465   }
466 }
467
468 // Effects
469 void rgblight_effect_breathing(uint8_t interval) {
470   static uint8_t pos = 0;
471   static uint16_t last_timer = 0;
472
473   if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_BREATHING_INTERVALS[interval])) {
474     return;
475   }
476   last_timer = timer_read();
477
478   rgblight_sethsv_noeeprom(rgblight_config.hue, rgblight_config.sat, pgm_read_byte(&RGBLED_BREATHING_TABLE[pos]));
479   pos = (pos + 1) % 256;
480 }
481 void rgblight_effect_rainbow_mood(uint8_t interval) {
482   static uint16_t current_hue = 0;
483   static uint16_t last_timer = 0;
484
485   if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_RAINBOW_MOOD_INTERVALS[interval])) {
486     return;
487   }
488   last_timer = timer_read();
489   rgblight_sethsv_noeeprom(current_hue, rgblight_config.sat, rgblight_config.val);
490   current_hue = (current_hue + 1) % 360;
491 }
492 void rgblight_effect_rainbow_swirl(uint8_t interval) {
493   static uint16_t current_hue = 0;
494   static uint16_t last_timer = 0;
495   uint16_t hue;
496   uint8_t i;
497   if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_RAINBOW_MOOD_INTERVALS[interval / 2])) {
498     return;
499   }
500   last_timer = timer_read();
501   for (i = 0; i < RGBLED_NUM; i++) {
502     hue = (360 / RGBLED_NUM * i + current_hue) % 360;
503     sethsv(hue, rgblight_config.sat, rgblight_config.val, (LED_TYPE *)&led[i]);
504   }
505   rgblight_set();
506
507   if (interval % 2) {
508     current_hue = (current_hue + 1) % 360;
509   } else {
510     if (current_hue - 1 < 0) {
511       current_hue = 359;
512     } else {
513       current_hue = current_hue - 1;
514     }
515   }
516 }
517 void rgblight_effect_snake(uint8_t interval) {
518   static uint8_t pos = 0;
519   static uint16_t last_timer = 0;
520   uint8_t i, j;
521   int8_t k;
522   int8_t increment = 1;
523   if (interval % 2) {
524     increment = -1;
525   }
526   if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_SNAKE_INTERVALS[interval / 2])) {
527     return;
528   }
529   last_timer = timer_read();
530   for (i = 0; i < RGBLED_NUM; i++) {
531     led[i].r = 0;
532     led[i].g = 0;
533     led[i].b = 0;
534     for (j = 0; j < RGBLIGHT_EFFECT_SNAKE_LENGTH; j++) {
535       k = pos + j * increment;
536       if (k < 0) {
537         k = k + RGBLED_NUM;
538       }
539       if (i == k) {
540         sethsv(rgblight_config.hue, rgblight_config.sat, (uint8_t)(rgblight_config.val*(RGBLIGHT_EFFECT_SNAKE_LENGTH-j)/RGBLIGHT_EFFECT_SNAKE_LENGTH), (LED_TYPE *)&led[i]);
541       }
542     }
543   }
544   rgblight_set();
545   if (increment == 1) {
546     if (pos - 1 < 0) {
547       pos = RGBLED_NUM - 1;
548     } else {
549       pos -= 1;
550     }
551   } else {
552     pos = (pos + 1) % RGBLED_NUM;
553   }
554 }
555 void rgblight_effect_knight(uint8_t interval) {
556   static int8_t pos = 0;
557   static uint16_t last_timer = 0;
558   uint8_t i, j, cur;
559   int8_t k;
560   LED_TYPE preled[RGBLED_NUM];
561   static int8_t increment = -1;
562   if (timer_elapsed(last_timer) < pgm_read_byte(&RGBLED_KNIGHT_INTERVALS[interval])) {
563     return;
564   }
565   last_timer = timer_read();
566   for (i = 0; i < RGBLED_NUM; i++) {
567     preled[i].r = 0;
568     preled[i].g = 0;
569     preled[i].b = 0;
570     for (j = 0; j < RGBLIGHT_EFFECT_KNIGHT_LENGTH; j++) {
571       k = pos + j * increment;
572       if (k < 0) {
573         k = 0;
574       }
575       if (k >= RGBLED_NUM) {
576         k = RGBLED_NUM - 1;
577       }
578       if (i == k) {
579         sethsv(rgblight_config.hue, rgblight_config.sat, rgblight_config.val, (LED_TYPE *)&preled[i]);
580       }
581     }
582   }
583   if (RGBLIGHT_EFFECT_KNIGHT_OFFSET) {
584     for (i = 0; i < RGBLED_NUM; i++) {
585       cur = (i + RGBLIGHT_EFFECT_KNIGHT_OFFSET) % RGBLED_NUM;
586       led[i].r = preled[cur].r;
587       led[i].g = preled[cur].g;
588       led[i].b = preled[cur].b;
589     }
590   }
591   rgblight_set();
592   if (increment == 1) {
593     if (pos - 1 < 0 - RGBLIGHT_EFFECT_KNIGHT_LENGTH) {
594       pos = 0 - RGBLIGHT_EFFECT_KNIGHT_LENGTH;
595       increment = -1;
596     } else {
597       pos -= 1;
598     }
599   } else {
600     if (pos + 1 > RGBLED_NUM + RGBLIGHT_EFFECT_KNIGHT_LENGTH) {
601       pos = RGBLED_NUM + RGBLIGHT_EFFECT_KNIGHT_LENGTH - 1;
602       increment = 1;
603     } else {
604       pos += 1;
605     }
606   }
607 }
608
609
610 void rgblight_effect_christmas(void) {
611   static uint16_t current_offset = 0;
612   static uint16_t last_timer = 0;
613   uint16_t hue;
614   uint8_t i;
615   if (timer_elapsed(last_timer) < RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL) {
616     return;
617   }
618   last_timer = timer_read();
619   current_offset = (current_offset + 1) % 2;
620   for (i = 0; i < RGBLED_NUM; i++) {
621     hue = 0 + ((i/RGBLIGHT_EFFECT_CHRISTMAS_STEP + current_offset) % 2) * 120;
622     sethsv(hue, rgblight_config.sat, rgblight_config.val, (LED_TYPE *)&led[i]);
623   }
624   rgblight_set();
625 }
626
627 #endif