ADD RGBLIGHT_LIMIT_VAL (#2214)

This commit is contained in:
YouCanFly
2018-01-03 10:54:56 +08:00
committed by Jack Humbert
parent d19805f9de
commit 6c24e28b8d
2 changed files with 7 additions and 0 deletions

View File

@ -46,6 +46,12 @@ bool rgblight_timer_enabled = false;
void sethsv(uint16_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1) {
uint8_t r = 0, g = 0, b = 0, base, color;
#ifdef RGBLIGHT_LIMIT_VAL
if (val > RGBLIGHT_LIMIT_VAL) {
val=RGBLIGHT_LIMIT_VAL; // limit the val
}
#endif
if (sat == 0) { // Acromatic color (gray). Hue doesn't mind.
r = val;
g = val;