diff options
Diffstat (limited to 'keyboards/clueboard1/clueboard1.c')
-rw-r--r-- | keyboards/clueboard1/clueboard1.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/keyboards/clueboard1/clueboard1.c b/keyboards/clueboard1/clueboard1.c deleted file mode 100644 index 5785f447f0..0000000000 --- a/keyboards/clueboard1/clueboard1.c +++ /dev/null @@ -1,12 +0,0 @@ -#include "clueboard1.h" - -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); - } -} |