use Ergodox EZ’s third LED for “scroll lock”

This commit is contained in:
coderkun 2016-05-22 12:58:54 +02:00
parent 61fbb47eb6
commit 08239aadea
1 changed files with 9 additions and 2 deletions

View 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;
}