From 498fd87f155c79c60540913db2fd49ea7464ac62 Mon Sep 17 00:00:00 2001 From: jotix <69703151+jotix@users.noreply.github.com> Date: Sat, 5 Mar 2022 21:45:57 -0300 Subject: [PATCH] leds on in layers 4 & 5 (#129) --- keyboards/handwired/jotanck/keymaps/vial/keymap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keyboards/handwired/jotanck/keymaps/vial/keymap.c b/keyboards/handwired/jotanck/keymaps/vial/keymap.c index a1e65afe7e..e6f8f854a2 100644 --- a/keyboards/handwired/jotanck/keymaps/vial/keymap.c +++ b/keyboards/handwired/jotanck/keymaps/vial/keymap.c @@ -77,7 +77,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { }; layer_state_t layer_state_set_user(layer_state_t state) { - writePin(JOTANCK_LED1, (get_highest_layer(state) == 1)); - writePin(JOTANCK_LED2, (get_highest_layer(state) == 2)); + writePin(JOTANCK_LED1, (get_highest_layer(state) == 4)); + writePin(JOTANCK_LED2, (get_highest_layer(state) == 5)); return state; }