1
0
Fork 0

Move RGBLIGHT_LIMIT_VAL to data driven (#20974)

Co-authored-by: Nick Brassel <nick@tzarc.org>
This commit is contained in:
Ryan 2023-05-27 12:27:44 +10:00 committed by GitHub
parent 8fdcba12e6
commit 363bfdbfda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
679 changed files with 649 additions and 493 deletions

View file

@ -20,7 +20,6 @@
# define RGBLED_NUM 12
# define RGBLIGHT_SLEEP
# define RGBLIGHT_VAL_STEP 5
# define RGBLIGHT_LIMIT_VAL 200
# define RGBLIGHT_EFFECT_BREATHING
# define RGBLIGHT_EFFECT_RAINBOW_MOOD

View file

@ -14,6 +14,9 @@
"ws2812": {
"pin": "A8"
},
"rgblight": {
"max_brightness": 200
},
"debounce": 8,
"layouts": {
"LAYOUT": {

View file

@ -18,7 +18,6 @@
#ifdef RGBLIGHT_ENABLE
# define RGBLED_NUM 4
# define RGBLIGHT_LIMIT_VAL 180
# define RGBLIGHT_EFFECT_BREATHING
# define RGBLIGHT_EFFECT_RAINBOW_MOOD

View file

@ -10,6 +10,9 @@
"pin": "A7",
"driver": "pwm"
},
"rgblight": {
"max_brightness": 180
},
"matrix_pins": {
"cols": ["C13", "C14", "C15", "A3", "A4", "A5", "A6", "B12", "B13", "B14", "B15", "A8", "A9", "A10", "B8"],
"rows": ["B0", "B1", "B2", "B10", "B11", "B9"]