rgblight.c 15 KB

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