i've run into another problem on my progress.
I have wired up my frankenboard to the teensy now.
He recognises every button except for the right d pad (d on teensy).
It works, as i measured the output on the cables, but as soon as the cable goes to the teensy, nothing happens if i push it.
The script seems to be good:
Code: Select all
void setupKeys() {
keys[0] = key('w', 0);
keys[1] = key('s', 1);
keys[2] = key('a', 2);
keys[3] = key('d', 3);
keys[4] = key('p', 4);
keys[5] = key('l', 5);
keys[6] = key('o', 6);
keys[7] = key('k', 7);
keys[8] = key('x', 8);
keys[9] = key('z', 9);
keys[10] = key('q',10);
keys[11] = key('e',11);