- Added Capslock/Esc led
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user