Files
cheapino_qmk_firmware/keyboards/maartenwut/atom47/rev3/rev3.c
skullY 5ba8a76da5 wip
2020-02-29 21:35:29 -08:00

17 lines
326 B
C

#include "rev3.h"
#include "led.h"
void matrix_init_kb(void) {
// put your keyboard start-up code here
// runs once when the firmware starts up
led_init_ports();
};
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);
}