tmk_keyboard/converter/terminal_usb
You Xiaojie / 尤晓杰 494faeb488 Correct the comments of matrix ROW and COL. (#604)
according to the code:
static uint8_t matrix[MATRIX_ROWS];
#define ROW(code)      (code>>3)
#define COL(code) (code&0x07)
in converter/terminal_usb/matrix.c
ROW is decided by bits 7-4 of scancode
COL is decided by bits 2-0 of scancode
2019-03-18 15:47:07 +09:00
..
config.h Correct the comments of matrix ROW and COL. (#604) 2019-03-18 15:47:07 +09:00
keymap.c Redefine GRV,CAPS,RALT and RCTL (#596) 2019-03-18 08:03:04 +09:00
led.c Made directories for keyboard and converter projects. 2012-06-08 13:32:38 +09:00
Makefile terminal_usb: Fix pin configuration in README 2019-03-10 22:48:21 +09:00
matrix.c Fix matrix.c to use new default impl. 2016-10-08 13:14:06 +09:00
README terminal_usb: Fix pin configuration in README 2019-03-10 22:48:21 +09:00

Keyboard converter for IBM terminal keyboard
============================================
It supports PS/2 Scan Code Set 3 and runs on USB AVR chips such like PJRC Teensy.
I tested the converter on ATMega32U4 with 1392595(102keys) and 6110345(122keys).

Source code: https://github.com/tmk/tmk_keyboard
Article: http://geekhack.org/index.php?topic=27272.0


CONNECTION
----------
Keyboard    ATMega32U4
----------------------
Data:       PD0
Clock:      PD1

And VCC and GND, of course. See RESOURCE for keyboard connector pin assign.


BUILD
-----
$ git clone https://github.com/tmk/tmk_keyboard.git
$ cd converter/terminal_usb
$ make 


RESOURCE
--------
Soarer's Converter: http://geekhack.org/index.php?topic=17458.0
102keys(1392595): http://geekhack.org/index.php?topic=10737.0
122keys(1390876): http://www.seasip.info/VintagePC/ibm_1390876.html
KbdBabel: http://www.kbdbabel.org/
RJ45 Connector: http://www.kbdbabel.org/conn/kbd_connector_ibmterm.png
DIN Connector: http://www.kbdbabel.org/conn/kbd_connector_ibm3179_318x_319x.png

EOF