- Added Capslock/Esc led

This commit is contained in:
Damien Broqua
2017-05-30 22:13:34 +02:00
parent f06f883589
commit e280f7aad7
3 changed files with 92 additions and 30 deletions

View File

@@ -1,13 +1,34 @@
#include "dk60.h"
void led_set_kb(uint8_t usb_led) {
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
void dk60_blink_all_leds(void)
{
dk60_led_all_off();
dk60_led_all_on();
_delay_ms(500);
dk60_led_all_off();
}
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
void matrix_init_kb(void) {
led_init_ports();
dk60_blink_all_leds();
matrix_init_user();
}
void led_init_ports(void) {
// * Set our LED pins as output
DDRE |= (1<<6);
DDRF |= (1<<0);
}
void led_set_kb(uint8_t usb_led) {
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
// Turn capslock on
dk60_caps_led_on();
} else {
} else {
// Turn capslock off
dk60_caps_led_off();
}
}
led_set_user(usb_led);
}