tokyo60.c 349 B

123456789101112131415161718
  1. #include "tokyo60.h"
  2. void matrix_init_kb(void) {
  3. // Keyboard start-up code goes here
  4. // Runs once when the firmware starts up
  5. matrix_init_user();
  6. led_init_ports();
  7. };
  8. void matrix_scan_kb(void) {
  9. // Looping keyboard code goes here
  10. // This runs every cycle (a lot)
  11. matrix_scan_user();
  12. };
  13. void led_init_ports(void) {
  14. /* LEDs on */
  15. }