diff options
| author | Joel Challis | 2023-09-29 19:31:21 +0200 |
|---|---|---|
| committer | GitHub | 2023-09-29 19:31:21 +0200 |
| commit | 6910ed2de5c8935712b646e1c2143c4e7e5f9bea (patch) | |
| tree | d6a653458c169162ece1a18aa7e38469b856a762 /quantum/led_matrix/led_matrix.c | |
| parent | 2eed1f5bad453b11e9f2190239f9c43f4dde979d (diff) | |
Add _DEFAULT_ON lighting configuration options (#21865)
Diffstat (limited to 'quantum/led_matrix/led_matrix.c')
| -rw-r--r-- | quantum/led_matrix/led_matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/led_matrix/led_matrix.c b/quantum/led_matrix/led_matrix.c index a59d475521..c13ca94077 100644 --- a/quantum/led_matrix/led_matrix.c +++ b/quantum/led_matrix/led_matrix.c @@ -97,7 +97,7 @@ void eeconfig_update_led_matrix(void) { void eeconfig_update_led_matrix_default(void) { dprintf("eeconfig_update_led_matrix_default\n"); - led_matrix_eeconfig.enable = 1; + led_matrix_eeconfig.enable = LED_MATRIX_DEFAULT_ON; led_matrix_eeconfig.mode = LED_MATRIX_DEFAULT_MODE; led_matrix_eeconfig.val = LED_MATRIX_DEFAULT_VAL; led_matrix_eeconfig.speed = LED_MATRIX_DEFAULT_SPD; |