use Ergodox EZ’s third LED for “scroll lock”
authorcoderkun <olli@coderkun.de>
Sun, 22 May 2016 10:58:54 +0000 (12:58 +0200)
committercoderkun <olli@coderkun.de>
Fri, 29 Jul 2016 09:07:50 +0000 (11:07 +0200)
keyboards/ergodox_ez/keymaps/coderkun_neo2/keymap.c

index 958523c..b71823e 100644 (file)
@@ -1,7 +1,8 @@
 #include "ergodox_ez.h"
 #include "debug.h"
 #include "action_layer.h"
-#include "keymap_neo2.h"
+#include "led.h"
+#include "keymap_extras/keymap_neo2.h"
 
 // Layer names
 #define BASE 0      // default layer
@@ -267,7 +268,13 @@ void matrix_scan_user(void)
             ergodox_right_led_3_on();
         break;
         default:
-            ergodox_board_led_off();
+            if(host_keyboard_leds() & (1<<USB_LED_SCROLL_LOCK)) {
+                ergodox_led_all_set(LED_BRIGHTNESS_HI);
+                ergodox_right_led_1_on();
+            }
+            else {
+                ergodox_board_led_off();
+            }
         break;
     }