qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

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 }