2016-03-28 01:17:40 +02:00
|
|
|
#include "clueboard1.h"
|
|
|
|
|
2016-06-24 04:18:20 +02:00
|
|
|
void led_set_kb(uint8_t usb_led) {
|
|
|
|
DDRF |= (1<<0);
|
|
|
|
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
|
|
|
// Turn capslock on
|
|
|
|
PORTF |= (1<<0);
|
|
|
|
} else {
|
|
|
|
// Turn capslock off
|
|
|
|
PORTF &= ~(1<<0);
|
|
|
|
}
|
2016-03-29 07:49:24 +02:00
|
|
|
}
|