diff options
author | lokher <lokher@gmail.com> | 2024-03-02 14:17:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-02 14:17:37 +0800 |
commit | 613719b66db811d4795c87eb5efb99f4fe7eed97 (patch) | |
tree | 84fa5e1964e655c512d3d053e0ffef94f9204322 | |
parent | 87e48857b11e4be3842b15407f1b2c67197ce96f (diff) | |
parent | c1ef96df3ec6fa3728080333765403e4487f53f9 (diff) |
Merge pull request #232 from jeremy-engel/q2-pro-led-indicator-index
Use expected LED indices for host and battery indicators on Q2 Pro
-rw-r--r-- | keyboards/keychron/q2_pro/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/keychron/q2_pro/config.h b/keyboards/keychron/q2_pro/config.h index fef8025b2e..cf5b2ffbeb 100644 --- a/keyboards/keychron/q2_pro/config.h +++ b/keyboards/keychron/q2_pro/config.h @@ -47,10 +47,10 @@ # define LED_DRIVER_SHUTDOWN_PIN C14 # define HOST_LED_MATRIX_LIST \ - { 16, 17, 18 } + { 15, 16, 17 } # define BAT_LEVEL_LED_LIST \ - { 16, 17, 18, 19, 20, 21, 22, 23, 24, 25 } + { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10} /* Backlit disable timeout when keyboard is disconnected(unit: second) */ # define DISCONNECTED_BACKLIGHT_DISABLE_TIMEOUT 40 |