2016-03-27 16:17:40 -07:00
|
|
|
#include "clueboard1.h"
|
|
|
|
|
2016-06-23 22:18:20 -04: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-28 22:49:24 -07:00
|
|
|
}
|