logo

qmk_firmware

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

gamenum.c (264B)


  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. gpio_set_pin_output(C6);
  6. gpio_write_pin_low(C6);
  7. gpio_set_pin_output(D4);
  8. gpio_write_pin_low(D4);
  9. matrix_init_user();
  10. }