]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/rgblight.h
Added personal minivan keymap (#1681)
[qmk_firmware.git] / quantum / rgblight.h
1 /* Copyright 2017 Yang Liu
2  *
3  * This program is free software: you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 2 of the License, or
6  * (at your option) any later version.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16 #ifndef RGBLIGHT_H
17 #define RGBLIGHT_H
18
19 #ifdef RGBLIGHT_ANIMATIONS
20         #define RGBLIGHT_MODES 34
21 #else
22         #define RGBLIGHT_MODES 1
23 #endif
24
25 #ifndef RGBLIGHT_EFFECT_SNAKE_LENGTH
26 #define RGBLIGHT_EFFECT_SNAKE_LENGTH 7
27 #endif
28
29 #ifndef RGBLIGHT_EFFECT_KNIGHT_LENGTH
30 #define RGBLIGHT_EFFECT_KNIGHT_LENGTH 7
31 #endif
32 #ifndef RGBLIGHT_EFFECT_KNIGHT_OFFSET
33 #define RGBLIGHT_EFFECT_KNIGHT_OFFSET 0
34 #endif
35
36 #ifndef RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL
37 #define RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL 1000
38 #endif
39
40 #ifndef RGBLIGHT_EFFECT_CHRISTMAS_STEP
41 #define RGBLIGHT_EFFECT_CHRISTMAS_STEP 2
42 #endif
43
44 #ifndef RGBLIGHT_HUE_STEP
45 #define RGBLIGHT_HUE_STEP 10
46 #endif
47 #ifndef RGBLIGHT_SAT_STEP
48 #define RGBLIGHT_SAT_STEP 17
49 #endif
50 #ifndef RGBLIGHT_VAL_STEP
51 #define RGBLIGHT_VAL_STEP 17
52 #endif
53
54 #define RGBLED_TIMER_TOP F_CPU/(256*64)
55 // #define RGBLED_TIMER_TOP 0xFF10
56
57 #include <stdint.h>
58 #include <stdbool.h>
59 #include "eeconfig.h"
60 #include "ws2812.h"
61
62 extern LED_TYPE led[RGBLED_NUM];
63
64 extern const uint8_t RGBLED_BREATHING_INTERVALS[4] PROGMEM;
65 extern const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[3] PROGMEM;
66 extern const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[3] PROGMEM;
67 extern const uint8_t RGBLED_SNAKE_INTERVALS[3] PROGMEM;
68 extern const uint8_t RGBLED_KNIGHT_INTERVALS[3] PROGMEM;
69
70 typedef union {
71   uint32_t raw;
72   struct {
73     bool     enable  :1;
74     uint8_t  mode    :6;
75     uint16_t hue     :9;
76     uint8_t  sat     :8;
77     uint8_t  val     :8;
78   };
79 } rgblight_config_t;
80
81 void rgblight_init(void);
82 void rgblight_increase(void);
83 void rgblight_decrease(void);
84 void rgblight_toggle(void);
85 void rgblight_enable(void);
86 void rgblight_step(void);
87 void rgblight_step_reverse(void);
88 void rgblight_mode(uint8_t mode);
89 void rgblight_set(void);
90 void rgblight_update_dword(uint32_t dword);
91 void rgblight_increase_hue(void);
92 void rgblight_decrease_hue(void);
93 void rgblight_increase_sat(void);
94 void rgblight_decrease_sat(void);
95 void rgblight_increase_val(void);
96 void rgblight_decrease_val(void);
97 void rgblight_sethsv(uint16_t hue, uint8_t sat, uint8_t val);
98 void rgblight_setrgb(uint8_t r, uint8_t g, uint8_t b);
99
100 uint32_t eeconfig_read_rgblight(void);
101 void eeconfig_update_rgblight(uint32_t val);
102 void eeconfig_update_rgblight_default(void);
103 void eeconfig_debug_rgblight(void);
104
105 void sethsv(uint16_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1);
106 void setrgb(uint8_t r, uint8_t g, uint8_t b, LED_TYPE *led1);
107 void rgblight_sethsv_noeeprom(uint16_t hue, uint8_t sat, uint8_t val);
108
109 #define EZ_RGB(val) rgblight_show_solid_color((val >> 16) & 0xFF, (val >> 8) & 0xFF, val & 0xFF)
110 void rgblight_show_solid_color(uint8_t r, uint8_t g, uint8_t b);
111
112 void rgblight_task(void);
113
114 void rgblight_timer_init(void);
115 void rgblight_timer_enable(void);
116 void rgblight_timer_disable(void);
117 void rgblight_timer_toggle(void);
118 void rgblight_effect_breathing(uint8_t interval);
119 void rgblight_effect_rainbow_mood(uint8_t interval);
120 void rgblight_effect_rainbow_swirl(uint8_t interval);
121 void rgblight_effect_snake(uint8_t interval);
122 void rgblight_effect_knight(uint8_t interval);
123 void rgblight_effect_christmas(void);
124
125 #endif