Search found 2 matches

by FritzTheGerman
28 May 2020, 08:53
Forum: Keyboards
Topic: AEK II and tmk_keyboard - how to the keep Numlock LED on?
Replies: 2
Views: 978

Re: AEK II and tmk_keyboard - how to the keep Numlock LED on?

Solved it - an additional change in hook.c keeps the NumLock LED permanently on.

Code: Select all

__attribute__((weak))
void hook_keyboard_leds_change(uint8_t led_status) {
// " | 0x01" to keep NumLock LED permanently on
    keyboard_set_leds(led_status | 0x01);
}
Thanks for the help!
by FritzTheGerman
27 May 2020, 22:47
Forum: Keyboards
Topic: AEK II and tmk_keyboard - how to the keep Numlock LED on?
Replies: 2
Views: 978

AEK II and tmk_keyboard - how to the keep Numlock LED on?

Hello,

I'm using an AEK II with a Teensy 2.0-based ADB to USB converter. Software is the great tmk_keyboard code from Haus.

Now I would like keep the Num-Lock LED on, as kind of power LED, since on OSX the numpad is already always in numeric mode.

So far, I've managed to turn the Num-Lock LED on ...

Go to advanced search