diff options
author | Wilba <Jason.S.Williams@gmail.com> | 2019-04-05 01:10:07 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-04 07:10:07 -0700 |
commit | 852d125413388aa3e71d2be91f04ddea534f2af3 (patch) | |
tree | cdf5a8791bd764f921fe8761dae9f89a96d321aa /keyboards/hs60 | |
parent | 3c7cb5cf5dbf9e97db9b98e32beca9ee58a1c246 (diff) |
[Keyboard] Added configurable defaults for RGB backlight parameters. (#5549)
* Added configurable defaults for RGB backlight indicators.
* Added more configurable defaults
Diffstat (limited to 'keyboards/hs60')
-rw-r--r-- | keyboards/hs60/v2/config.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/keyboards/hs60/v2/config.h b/keyboards/hs60/v2/config.h index bbf17251b4..05255d1331 100644 --- a/keyboards/hs60/v2/config.h +++ b/keyboards/hs60/v2/config.h @@ -102,9 +102,19 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. // disable backlight after timeout in minutes, 0 = no timeout #define RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT 0 +// the default brightness +#define RGB_BACKLIGHT_BRIGHTNESS 255 + // the default effect (RGB test) #define RGB_BACKLIGHT_EFFECT 255 +// the default effect speed (0-3) +#define RGB_BACKLIGHT_EFFECT_SPEED 0 + +// the default color1 and color2 +#define RGB_BACKLIGHT_COLOR_1 { .h = 0, .s = 255 } +#define RGB_BACKLIGHT_COLOR_2 { .h = 127, .s = 255 } + #define DRIVER_COUNT 2 #define DRIVER_LED_TOTAL 64 |