added gamenum handwired keyboard

This commit is contained in:
SethSenpai
2016-10-03 08:53:09 +00:00
parent 35e6870e5c
commit c0c0c579ff
6 changed files with 430 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#include "gamenum.h"
void matrix_init_kb(void) {
// put your keyboard start-up code here
// runs once when the firmware starts up
DDRC |= (1<<6);
PORTC &= ~(1<<6);
DDRD |= (1<<4);
PORTD &= ~(1<<4);
matrix_init_user();
}