obelus.c (232B)
1 #include "quantum.h" 2 3 void matrix_init_kb(void) { 4 // put your keyboard start-up code here 5 // runs once when the firmware starts up 6 // Turn status LED on 7 gpio_set_pin_output(D6); 8 gpio_write_pin_high(D6); 9 10 matrix_init_user(); 11 }