Amiga 500 USB Keyboard

Amiga 500 keyboard into a USB HID, allowing it to function as a modern USB keyboard. Using an Arduino Leonardo, which supports native USB communication, the sketch reads the Amiga 500 keyboard signals and translates them into USB keystrokes, preserving the vintage feel with modern compatibility.

Download as .zip Download as .tar.gz View on GitHub

Amiga 500 Keyboard to USB (HID)

Build Arduino Leonardo Kyb

By following the provided instructions, you can retrofit the Amiga 500 keyboard for modern applications while preserving its unique layout and feel.

This was developed and tested with an original Amiga 500 keyboard and an Arduino Leonardo board. Other combinations are not tested, other boards based on the ATmega32U4 microcontroller should work (wiring might need to be adapted).

I own only an Amiga 500 (Mitsumi) keyboard, so I can’t test other models, but other protocol-compatible models should work fine (500/1000/2000), though wiring (and/or keymap) might need to be adjusted.

For a demonstration of the original Amiga 500 keyboard in action, visit the Amiga Undead GitHub repository.

Dependencies

Board Microcontroller Flash Memory SRAM EEPROM Clock Speed Tested
Arduino Leonardo ATmega32U4 32 KB 2.5 KB 1 KB 16 MHz
Arduino Micro ATmega32U4 32 KB 2.5 KB 1 KB 16 MHz  
SparkFun Pro Micro ATmega32U4 32 KB 2.5 KB 1 KB 16 MHz  
Adafruit ItsyBitsy 32u4 ATmega32U4 32 KB 2.5 KB 1 KB 16 MHz  
Teensy 2.0 ATmega32U4 32 KB 2.5 KB 1 KB 16 MHz  

Libraries and Platform

Library Version Platform Version
Keyboard 1.0.6+ arduino:avr 1.8.6+
HID 1.0+    
EEPROM 2.0+    

Wiring Information

This section describes the wiring for connecting the Amiga 500 keyboard to an Arduino Leonardo.

To connect the Amiga 500 keyboard to the Arduino Leonardo, refer to the following table:

Connector Pin Function Wire Color Arduino Leonardo IO Pin
1 KBDATA Black 8
2 KBCLK Brown 9
3 KBRST Red 10
4 5V Orange 5V
5 NC - -
6 GND Green GND
7 LED1 Blue 5V
8 LED2 Purple -

Amiga keyboard specs: http://amigadev.elowar.com/read/ADCD_2.1/Hardware_Manual_guide/node0173.html


Amiga 500 Keyboard Layout

Amiga 500 Keyboard Layout

Credit: AmigaOS Wiki

Responsiveness

Average from key press to release in normal use: ~66 ms

Mostly due to the old membrane keys themselves. Keys have long travel time and need some force in the press. There is lot of variability for this reason.

Minimum natural key press/release i achieved is: ~20 ms (very light press/tap to reduce key travel time)

Worst was: ~398 ms (heavy strong key press)

Help Key Special Functions

The Help key on the Amiga 500 keyboard is used as a modifier in this implementation, enabling additional functions when combined with other keys. Below are the available combinations and their corresponding functions.

Key Combination Function
Help + F1 F11
Help + F2 F12
Help + Ptr Sc (on numpad) Print Screen
Help + 0 (on numpad) Insert
Help + F3 Record macro
Help + F4 Save macro
Help + F5 Toggle looping macro
Help + R Toggle robot macro mode
Help + Backspace Stop all playing macros
Help + Del Reset all macros (delete all)
Help + F6 Play macro slot 1
Help + F7 Play macro slot 2
Help + F8 Play macro slot 3
Help + F9 Play macro slot 4
Help + F10 Play macro slot 5
Key Combination (Multimedia) Function
Help + Arrow Up Volume Up
Help + Arrow Down Volume Down
Help + Arrow Right Next Track
Help + Arrow Left Previous Track
Help + Enter Play/Pause
Help + Space Stop
Help + M Mute

NumLock

When NumLock is turned off, the following keys on the numeric keypad function as navigation keys by default:

With NumLock turned on, these keys will function as standard numeric keys instead.

Macro Recording and Playback Guide

This section explains how to use the macro recording and playback functionality of the Amiga 500 Keyboard to USB HID Converter. Macros allow you to record a sequence of key presses and play them back with a single key combination.

Macro Slots

There are 5 macro slots available, each capable of storing up to 32 key events. The macros are stored in EEPROM, so they persist across power cycles. 32 to keep withing the EEPROM 1kb size of the Leonardo. If you disable persistent macros flag you can larger macros per slot but macros will not persist power cycles.

Recording a Macro

  1. Start Recording:
    • Press Help + F3 to begin recording a macro.
    • Normal key presses will be temporarily blocked until you select a recording slot.
  2. Select a Recording Slot:
    • Press one of the keys F6 to F10 to choose a recording slot (slots 1 to 5).
    • After selecting a slot, the keyboard will function normally, but every key press will be recorded until the slot is full or you stop recording.
  3. Stop Recording:
    • Press Help + F4 to stop recording and save the macro in the selected slot.

Playing a Macro

  1. Play a Macro:
    • Press Help + F6 to Help + F10 to play the macro stored in the corresponding slot (slots 1 to 5).
    • The macro will replay the recorded key presses/releases with the original timing by default.
    • If Robot Macro Mode is on (toggle with HELP + R), the macro is played with minimal interval between key events.
  2. Activate Looping:
    • Press Help + F5 to toggle looping mode for macros.
    • When looping is active:
      • A macro will repeat continuously once started.
      • You can deactivate looping mode to allow other macros to play just once.
    • To stop a looping macro, press the corresponding slot key again (e.g., Help + F6) while the macro is playing.
    • Note: Running too many loops with many key presses may interfere with normal keyboard functionality and introduce delays to standard key presses. Use with caution.
  3. Stop All Macros:
    • Press Help + Backspace to stop all currently playing macros.

Resetting Macros

  1. Reset Macros:
    • Press Help + Del to stop any playing macro and reset all macros. WARNING this cleans and reset the EEPROM.

Example Usage

  1. Recording a Macro:
    • Press Help + F3 to start recording.
    • Press F6 to select slot 1.
    • Type the sequence of keys you want to record.
    • Press Help + F4 to stop recording and save the macro.
  2. Playing a Macro:
    • Press Help + F6 to play the macro stored in slot 1.

Notes

Build and Upload Guide

This guide will help you compile and upload the Amiga 500 Keyboard converter code to an Arduino Leonardo. Choose between the Arduino CLI (for command-line users) or the Arduino IDE (beginner-friendly) to get started.


Option 1: Provided makefile (Arduino CLI)

This method uses a Makefile to automate the process of compiling and uploading the sketch. It also handles the installation of the Arduino CLI, required cores, and libraries.

Requirements

Steps

  1. Install Arduino CLI:
    • If you don’t have the Arduino CLI installed, you can install it using the provided Makefile:
      make install-arduino-cli
      
  2. Install Required Core:
    • Install the required core for the Arduino Leonardo:
      make install-core
      
  3. Install Required Libraries:
    • Install the required libraries:
      make install-libraries
      
  4. Update Cores and Libraries:
    • Ensure all cores and libraries are up to date:
      make update-cores-libraries
      
  5. Compile the Sketch:
    • Compile the sketch with warnings enabled:
      make verify
      
  6. Upload the Sketch:
    • Compile and upload the sketch to the Arduino Leonardo:
      make upload
      
  7. Clean Build Artifacts:
    • Remove build artifacts:
      make clean
      

Makefile Targets

Option 2: Arduino CLI (Manual, Command Line)

This method is ideal for users comfortable with the command line. Arduino CLI allows for efficient building and uploading.

Requirements

Steps

  1. Install Arduino CLI:
    curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh
    sudo mv bin/arduino-cli /usr/local/bin/
    
  2. Configure Arduino CLI:
    arduino-cli config init
    arduino-cli core update-index
    arduino-cli core install arduino:avr
    arduino-cli lib install "Keyboard"
    
  3. Connect Arduino Leonardo via USB and identify the port:
    arduino-cli board list
    
    • Note your board’s port (e.g., /dev/ttyACM0) and FQBN (arduino:avr:leonardo).
  4. Compile the Sketch: Navigate to the directory containing your .ino file (e.g., Amiga500-USB-Keyboard-Leonardo.ino) and run:
    arduino-cli compile --fqbn arduino:avr:leonardo Amiga500-USB-Keyboard-Leonardo.ino
    
  5. Upload the Sketch:
    arduino-cli upload -p /dev/ttyACM0 --fqbn arduino:avr:leonardo Amiga500-USB-Keyboard-Leonardo.ino
    
    • Replace /dev/ttyACM0 with your actual port if different.
  6. Test the Uploaded Sketch:
    • Connect your Amiga 500 keyboard and verify functionality in a text editor.

Option 3: Arduino IDE (Beginner-Friendly)

The Arduino IDE provides a graphical interface for writing, compiling, and uploading Arduino sketches.

Steps

  1. Install the Arduino IDE:
  2. Install the Keyboard Library:
    • In the Arduino IDE, go to Tools > Manage Libraries….
    • In the Library Manager, search for “Keyboard” and install the Keyboard library.
  3. Open Your Sketch:
    • Launch the Arduino IDE.
    • Go to File > New, paste your code, and save it as Amiga500-USB-Keyboard-Leonardo.ino.
  4. Select Board and Port:
    • Go to Tools > Board > Arduino Leonardo.
    • Go to Tools > Port and select the port for your Arduino Leonardo.
  5. Compile and Upload:
    • Click Verify (checkmark icon) to compile.
    • Click Upload (arrow icon) to upload the sketch to the board.
  6. Test the Keyboard:
    • Connect your Amiga 500 keyboard to the Arduino Leonardo.
    • Open a text editor and verify functionality.

Additional Notes

Wiring Guide for Dual Joysticks

Joystick 1

DB9 Pin Joystick Signal Arduino Pin
1 Up Pin 0
2 Down Pin 1
3 Left Pin 2
4 Right Pin 3
5 Button 1 (Fire) Pin 4
6 +5V (Optional) +5V
7 Ground GND
8 Button 2 (Optional) Pin 6

Joystick 2

DB9 Pin Joystick Signal Arduino Pin
1 Up Pin A0
2 Down Pin A1
3 Left Pin A2
4 Right Pin A3
5 Button 1 (Fire) Pin A4
6 +5V (Optional) +5V
7 Ground GND
8 Button 2 (Optional) Pin A5

Notes

TODO