]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/tokyo60/tokyo60.c
Add user-overridable callback for cancelling UCIS input (#5564)
[qmk_firmware.git] / keyboards / tokyo60 / tokyo60.c
1 #include "tokyo60.h"
2
3 void matrix_init_kb(void) {
4   // Keyboard start-up code goes here
5   // Runs once when the firmware starts up
6   matrix_init_user();
7   led_init_ports();
8 };
9
10 void matrix_scan_kb(void) {
11   // Looping keyboard code goes here
12   // This runs every cycle (a lot)
13   matrix_scan_user();
14 };
15
16 void led_init_ports(void) {
17   /* LEDs on */
18 }