diff options
author | Wilba <Jason.S.Williams@gmail.com> | 2019-04-04 16:10:07 +0200 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-04 16:10:07 +0200 |
commit | 852d125413388aa3e71d2be91f04ddea534f2af3 (patch) | |
tree | cdf5a8791bd764f921fe8761dae9f89a96d321aa /keyboards/zeal60 | |
parent | 3c7cb5cf5dbf9e97db9b98e32beca9ee58a1c246 (diff) | |
download | qmk_firmware-852d125413388aa3e71d2be91f04ddea534f2af3.tar.gz qmk_firmware-852d125413388aa3e71d2be91f04ddea534f2af3.tar.xz |
[Keyboard] Added configurable defaults for RGB backlight parameters. (#5549)
* Added configurable defaults for RGB backlight indicators.
* Added more configurable defaults
Diffstat (limited to 'keyboards/zeal60')
-rw-r--r-- | keyboards/zeal60/config.h | 10 | ||||
-rw-r--r-- | keyboards/zeal60/rgb_backlight.c | 8 |
2 files changed, 14 insertions, 4 deletions
diff --git a/keyboards/zeal60/config.h b/keyboards/zeal60/config.h index 94cc9989b..a5e41116d 100644 --- a/keyboards/zeal60/config.h +++ b/keyboards/zeal60/config.h @@ -86,9 +86,19 @@ // 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 } + // These define which keys in the matrix are alphas/mods // Used for backlight effects so colors are different for // alphas vs. mods diff --git a/keyboards/zeal60/rgb_backlight.c b/keyboards/zeal60/rgb_backlight.c index 8d7a7fe8d..d5f206fdc 100644 --- a/keyboards/zeal60/rgb_backlight.c +++ b/keyboards/zeal60/rgb_backlight.c @@ -69,11 +69,11 @@ backlight_config g_config = { .disable_hhkb_blocker_leds = RGB_BACKLIGHT_DISABLE_HHKB_BLOCKER_LEDS, .disable_when_usb_suspended = RGB_BACKLIGHT_DISABLE_WHEN_USB_SUSPENDED, .disable_after_timeout = RGB_BACKLIGHT_DISABLE_AFTER_TIMEOUT, - .brightness = 255, + .brightness = RGB_BACKLIGHT_BRIGHTNESS, .effect = RGB_BACKLIGHT_EFFECT, - .effect_speed = 0, - .color_1 = { .h = 0, .s = 255 }, - .color_2 = { .h = 127, .s = 255 }, + .effect_speed = RGB_BACKLIGHT_EFFECT_SPEED, + .color_1 = RGB_BACKLIGHT_COLOR_1, + .color_2 = RGB_BACKLIGHT_COLOR_2, .caps_lock_indicator = RGB_BACKLIGHT_CAPS_LOCK_INDICATOR, .layer_1_indicator = RGB_BACKLIGHT_LAYER_1_INDICATOR, .layer_2_indicator = RGB_BACKLIGHT_LAYER_2_INDICATOR, |