summaryrefslogtreecommitdiff
path: root/keyboards/evyd13/atom47/rev3/rev3.c
blob: 24e12c840bec5155f9a27d1f0e89902382729abe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "rev3.h"
#include "led.h"

void led_init_ports(void) {
    // * Set our LED pins as output
    DDRE |= (1 << 6);

	//Set output high, so the capslock led is off
	PORTE |= (1 << 6);
}

void led_set_kb(uint8_t usb_led) {
    led_set_user(usb_led);
}