logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

obelus.c (232B)


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