-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
23 lines (17 loc) · 902 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Arduino project to convert Sun Type 5 keyboard data to USB keyboard.
The Sun Keyboard uses a TTL level 1200 baud RS232 at 8N1 with inverted data.
This is read and keycodes are translated into a set of corresponding USB
keycodes.
USB output is done through the V-USB project, using a modified (and provided)
version of the vusb-for-arduino. Modified so that it sends Keypress and
Keyrelease separately, and extending the range of available keys to incorporate
the larger number of keys on the Sun Keyboard.
Simple schematic is in the schema.txt file.
The Makefile approach requires a setup version of the Arduino-Makefile project,
found at https://github.com/mjoldfield/Arduino-Makefile.git
The Setup.mk files referenced contains the settings for the Arduino.mk:
ARDUINO_DIR = /usr/share/arduino
ARDMK_DIR = /usr/local
AVR_TOOLS_DIR = /usr
BOARD_TAG = atmega328
ARDUINO_PORT = /dev/ttyUSB0