qmk_firmware/keyboards/ckeys/obelus/obelus.c
2020-02-29 21:35:29 -08:00

9 lines
192 B
C

#include "obelus.h"
void matrix_init_kb(void) {
// put your keyboard start-up code here
// runs once when the firmware starts up
// Turn status LED on
DDRD |= (1<<6);
PORTD |= (1<<6);
}