diff options
Diffstat (limited to 'keyboards/keebio/sinc/rev1/rev1.c')
-rw-r--r-- | keyboards/keebio/sinc/rev1/rev1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/keebio/sinc/rev1/rev1.c b/keyboards/keebio/sinc/rev1/rev1.c index 906b9b7d58..ec3eb1c0c9 100644 --- a/keyboards/keebio/sinc/rev1/rev1.c +++ b/keyboards/keebio/sinc/rev1/rev1.c @@ -2,14 +2,14 @@ #include "split_util.h" void matrix_init_kb(void) { - setPinOutput(CAPS_LOCK_LED_PIN); + setPinOutput(LED_CAPS_LOCK_PIN); matrix_init_user(); } bool led_update_kb(led_t led_state) { // Only update if left half if (isLeftHand && led_update_user(led_state)) { - writePin(CAPS_LOCK_LED_PIN, !led_state.caps_lock); + writePin(LED_CAPS_LOCK_PIN, !led_state.caps_lock); } return true; } |