1
0
Fork 0

Small fix for Sol 3 brightness limits (#16157)

This commit is contained in:
XScorpion2 2022-01-31 18:10:46 -06:00 committed by GitHub
parent 1571f8e258
commit a33dcb5a9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

View file

@ -39,7 +39,7 @@ const encodermap_t touch_encoder_map[NUMBER_OF_TOUCH_ENCODERS][TOUCH_ENCODER_OPT
{ { 7, 7 }, { 6, 7 }, { 8, 7 }, { 11, 6 }, { 11, 7 }, } // Touch Encoder 1 matrix entries
};
static bool limit_lightning = false;
static bool limit_lightning = true;
RGB rgb_matrix_hsv_to_rgb(HSV hsv) {
if (limit_lightning) hsv.v /= 2;