summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlbert Y <76888457+filterpaper@users.noreply.github.com>2022-05-17 13:02:14 +0800
committerGitHub <noreply@github.com>2022-05-16 22:02:14 -0700
commitaa970e85609e46f69ae14f09ec072fea8d165021 (patch)
treef619b2608e22166ed7ebe68d38cf895cb78c78ec
parent467f3ae872101ed6c1c3cbf10f18384304ddbb6e (diff)
[Keyboard] mach3 LED index correction (#17110)
-rw-r--r--keyboards/machkeyboards/mach3/mach3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/machkeyboards/mach3/mach3.c b/keyboards/machkeyboards/mach3/mach3.c
index 9769d02a53..509aac9fe5 100644
--- a/keyboards/machkeyboards/mach3/mach3.c
+++ b/keyboards/machkeyboards/mach3/mach3.c
@@ -19,8 +19,8 @@
 led_config_t g_led_config = { {
   // Key Matrix to LED Index
   {  0,  1,  2 },
-  {  7,  6,  5 },
-  {  8,  9, 10 },
+  {  5,  4,  3 },
+  {  6,  7,  8 },
 }, {
   // LED Index to Physical Position
   { 0,  0 },   { 112,  0 },   { 224,  0 },
@@ -39,4 +39,4 @@ void keyboard_pre_init_kb(void) {
   writePinHigh(F5);
   
   keyboard_pre_init_user();
-}
\ No newline at end of file
+}