f77: Add jackhill's layout
[jackhill/qmk/firmware.git] / keyboards / tokyo60 / tokyo60.c
CommitLineData
b806cc9e 1#include "tokyo60.h"
b806cc9e
A
2
3void 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
10void matrix_scan_kb(void) {
11 // Looping keyboard code goes here
12 // This runs every cycle (a lot)
13 matrix_scan_user();
14};
15
16void led_init_ports(void) {
17 /* LEDs on */
18}