obelus.c 232 B

1234567891011
  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. }