]> git.donarmstrong.com Git - qmk_firmware.git/blob - docs/feature_rgblight.md
5369d2fb76812073a9bbe4373541512af256afe0
[qmk_firmware.git] / docs / feature_rgblight.md
1 # RGB Lighting
2
3 If you've installed addressable RGB lights on your keyboard you can control them with QMK. Currently we support the following addressable LEDs on Atmel AVR processors:
4
5 * WS2811 and variants (WS2812, WS2812B, WS2812C, etc)
6 * SK6812RGBW
7
8 Some keyboards come with RGB LEDs pre-installed. Others have to have LEDs installed after the fact. See below for information on modifying your keyboard.
9
10 ## Selecting Colors
11
12 QMK uses Hue, Saturation, and Value to set color rather than using RGB. You can use the color wheel below to see how this works. Changing the Hue will cycle around the circle. Saturation will affect the intensity of the color, which you can see as you move from the inner part to the outer part of the wheel. Value sets the overall brightness.
13
14 <img src="gitbook/images/color-wheel.svg" alt="HSV Color Wheel" width="250">
15
16 If you would like to learn more about HSV you can start with the [Wikipedia article](https://en.wikipedia.org/wiki/HSL_and_HSV).
17
18 ## Configuration
19
20 Before RGB Lighting can be used you have to enable it in `rules.mk`:
21
22     RGBLIGHT_ENABLE = yes
23
24 You can configure the behavior of the RGB lighting by defining values inside `config.h`.
25
26 ### Required Configuration
27
28 At minimum you have to define the pin your LED strip is connected to and the number of LEDs connected.
29
30 ```c
31 #define RGB_DI_PIN D7     // The pin the LED strip is connected to
32 #define RGBLED_NUM 14     // Number of LEDs in your strip
33 ```
34
35 ### Optional Configuration
36
37 You can change the behavior of the RGB Lighting by setting these configuration values. Use `#define <Option> <Value>` in a `config.h` at the keyboard, revision, or keymap level.
38
39 | Option | Default Value | Description |
40 |--------|---------------|-------------|
41 | `RGBLIGHT_HUE_STEP` | 10 | How many hues you want to have available. |
42 | `RGBLIGHT_SAT_STEP` | 17 | How many steps of saturation you'd like. |
43 | `RGBLIGHT_VAL_STEP` | 17 | The number of levels of brightness you want. |
44 | `RGBLIGHT_LIMIT_VAL` | 255 | Limit the val of HSV to limit the maximum brightness simply. |
45 | `RGBLIGHT_SLEEP`     |    |  `#define` this will shut off the lights when the host goes to sleep | 
46
47
48 ### Animations
49
50 If you have `#define RGBLIGHT_ANIMATIONS` in your `config.h` you will have a number of animation modes you can cycle through using the `RGB_MOD` key. You can also `#define` other options to tweak certain animations.
51
52 | Option | Default Value | Description |
53 |--------|---------------|-------------|
54 | `RGBLIGHT_ANIMATIONS` | | `#define` this to enable animation modes. |
55 | `RGBLIGHT_EFFECT_BREATHE_CENTER` | 1.85 | Used to calculate the curve for the breathing animation. Valid values 1.0-2.7. |
56 | `RGBLIGHT_EFFECT_BREATHE_MAX` | 255 | The maximum brightness for the breathing mode. Valid values 1-255. |
57 | `RGBLIGHT_EFFECT_SNAKE_LENGTH` | 4 | The number of LEDs to light up for the "snake" animation. |
58 | `RGBLIGHT_EFFECT_KNIGHT_LENGTH` | 3 | The number of LEDs to light up for the "knight" animation. |
59 | `RGBLIGHT_EFFECT_KNIGHT_OFFSET` | 0 | Start the knight animation this many LEDs from the start of the strip. |
60 | `RGBLIGHT_EFFECT_KNIGHT_LED_NUM` | RGBLED_NUM | The number of LEDs to have the "knight" animation travel. |
61 | `RGBLIGHT_EFFECT_CHRISTMAS_INTERVAL` | 1000 | How long to wait between light changes for the "christmas" animation. Specified in ms. |
62 | `RGBLIGHT_EFFECT_CHRISTMAS_STEP` | 2 | How many LED's to group the red/green colors by for the christmas mode. |
63
64 You can also tweak the behavior of the animations by defining these consts in your `keymap.c`. These mostly affect the speed different modes animate at.
65
66 ```c
67 // How long (in ms) to wait between animation steps for the breathing mode
68 const uint8_t RGBLED_BREATHING_INTERVALS[] PROGMEM = {30, 20, 10, 5};
69
70 // How long (in ms) to wait between animation steps for the rainbow mode
71 const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[] PROGMEM = {120, 60, 30};
72
73 // How long (in ms) to wait between animation steps for the swirl mode
74 const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[] PROGMEM = {100, 50, 20};
75
76 // How long (in ms) to wait between animation steps for the snake mode
77 const uint8_t RGBLED_SNAKE_INTERVALS[] PROGMEM = {100, 50, 20};
78
79 // How long (in ms) to wait between animation steps for the knight modes
80 const uint8_t RGBLED_KNIGHT_INTERVALS[] PROGMEM = {127, 63, 31};
81
82 // These control which colors are selected for the gradient mode
83 const uint16_t RGBLED_GRADIENT_RANGES[] PROGMEM = {360, 240, 180, 120, 90};
84 ```
85
86 ### LED Control
87
88 Look in `rgblights.h` for all available functions, but if you want to control all or some LEDs your goto functions are:
89
90 ```c
91 // turn all lights off (stored in EEPROM)
92 rgblight_disable();
93 // turn lights on, based on their previous state (stored in EEPROM)
94 rgblight_enable(); 
95
96 // turn all lights off (not stored in EEPROM)
97 rgblight_disable_noeeprom();
98 // turn lights on, based on their previous state (not stored in EEPROM)
99 rgblight_enable_noeeprom();
100
101 // where r/g/b is a number from 0..255.  Turns all the LEDs to this color (ignores mode, not stored in EEPROM). 
102 rgblight_setrgb(r, g, b); 
103 // HSV color control - h is a value from 0..360 and s/v is a value from 0..255 (stored in EEPROM)
104 rgblight_sethsv(h, s, v);  
105 // HSV color control - h is a value from 0..360 and s/v is a value from 0..255 (not stored in EEPROM)
106 rgblight_sethsv_noeeprom(h, s, v);  
107
108 // Sets the mode, if rgb animations are enabled (stored in eeprom)
109 rgblight_mode(x);
110 // Sets the mode, if rgb animations are enabled (not stored in eeprom)
111 rgblight_mode_noeeprom(x);
112 // MODE 1, solid color
113 // MODE 2-5, breathing
114 // MODE 6-8, rainbow mood
115 // MODE 9-14, rainbow swirl
116 // MODE 15-20, snake
117 // MODE 21-23, knight
118 // MODE 24, xmas
119 // MODE 25-34, static rainbow
120
121 rgblight_setrgb_at(r,g,b, LED);  // control a single LED.  0 <= LED < RGBLED_NUM
122 rgblight_sethsv_at(h,s,v, LED);  // control a single LED.  0 <= LED < RGBLED_NUM
123 ```
124 You can find a list of predefined colors at [`quantum/rgblight_list.h`](https://github.com/qmk/qmk_firmware/blob/master/quantum/rgblight_list.h). Free to add to this list!
125
126 ## RGB Lighting Keycodes
127
128 These control the RGB Lighting functionality.
129
130 |Key                |Aliases   |Description                                                         |
131 |-------------------|----------|--------------------------------------------------------------------|
132 |`RGB_TOG`          |          |Toggle RGB lighting on or off                                       |
133 |`RGB_MODE_FORWARD` |`RGB_MOD` |Cycle through modes, reverse direction when Shift is held           |
134 |`RGB_MODE_REVERSE` |`RGB_RMOD`|Cycle through modes in reverse, forward direction when Shift is held|
135 |`RGB_HUI`          |          |Increase hue                                                        |
136 |`RGB_HUD`          |          |Decrease hue                                                        |
137 |`RGB_SAI`          |          |Increase saturation                                                 |
138 |`RGB_SAD`          |          |Decrease saturation                                                 |
139 |`RGB_VAI`          |          |Increase value (brightness)                                         |
140 |`RGB_VAD`          |          |Decrease value (brightness)                                         |
141 |`RGB_MODE_PLAIN`   |`RGB_M_P `|Static (no animation) mode                                          |
142 |`RGB_MODE_BREATHE` |`RGB_M_B` |Breathing animation mode                                            |
143 |`RGB_MODE_RAINBOW` |`RGB_M_R` |Rainbow animation mode                                              |
144 |`RGB_MODE_SWIRL`   |`RGB_M_SW`|Swirl animation mode                                                |
145 |`RGB_MODE_SNAKE`   |`RGB_M_SN`|Snake animation mode                                                |
146 |`RGB_MODE_KNIGHT`  |`RGB_M_K` |"Knight Rider" animation mode                                       |
147 |`RGB_MODE_XMAS`    |`RGB_M_X` |Christmas animation mode                                            |
148 |`RGB_MODE_GRADIENT`|`RGB_M_G` |Static gradient animation mode                                      |
149
150 note: for backwards compatibility, `RGB_SMOD` is an alias for `RGB_MOD`.
151
152 ## Hardware Modification
153
154 ![Planck with RGB Underglow](https://raw.githubusercontent.com/qmk/qmk_firmware/3774a7fcdab5544fc787f4c200be05fcd417e31f/keyboards/planck/keymaps/yang/planck-with-rgb-underglow.jpg)
155
156 Here is a quick demo on Youtube (with NPKC KC60) (https://www.youtube.com/watch?v=VKrpPAHlisY).
157
158 For this mod, you need an unused pin wiring to DI of WS2812 strip. After wiring the VCC, GND, and DI, you can enable the underglow in your Makefile.
159
160     RGBLIGHT_ENABLE = yes
161
162 In order to use the underglow animation functions, you need to have `#define RGBLIGHT_ANIMATIONS` in your `config.h`.
163
164 Please add the following options into your config.h, and set them up according your hardware configuration. These settings are for the `F4` pin by default:
165
166     #define RGB_DI_PIN F4     // The pin your RGB strip is wired to
167     #define RGBLED_NUM 14     // Number of LEDs
168
169 You'll need to edit `RGB_DI_PIN` to the pin you have your `DI` on your RGB strip wired to.