]> git.donarmstrong.com Git - tmk_firmware.git/blob - converter/usb_usb/README
985458ed013078de8dd7e8913c756d905d1f5643
[tmk_firmware.git] / converter / usb_usb / README
1 USB to USB keyboard protocol converter
2 ======================================
3
4 Hardware requirement
5 --------------------
6 Arduino Leonardo
7     http://arduino.cc/en/Main/ArduinoBoardLeonardo 
8
9 Circuit@Home USB Host Shield 2.0
10     http://www.circuitsathome.com/products-page/arduino-shields/usb-host-shield-2-0-for-arduino
11
12
13 Build firmware
14 --------------
15     $ git clone git://github.com/tmk/tmk_keyboard.git
16     $ cd tmk_keyboard
17     $ git submodule init
18     $ git submodule update
19     $ cd converter/usb_usb
20     $ make
21
22 Program converter. Push reset button on Leonardo before run this command. Serial port name(COM17) depends your system. On Linux I got /dev/ttyACM0.
23
24     $ DEV=COM17 make program
25     or
26     $ avrdude -patmega32u4 -cavr109 -b57600 -Uflash:w:usb_usb.hex -PCOM17
27
28
29
30 Limitation
31 ----------
32 Only supports 'HID Boot protocol'.
33 Not support keyboard LED yet.
34
35
36 Resource
37 --------
38 http://deskthority.net/workshop-f7/is-remapping-a-usb-keyboard-using-teensy-possible-t2841.html
39 https://github.com/felis/USB_Host_Shield_2.0
40 https://github.com/arduino/Arduino/hardware/arduino/{cores,variants}