DIY VT220 Keyboard

There’s always been interest in the computers of old, and people love collecting and restoring them. When [peterbjornx] got his hands on a DEC VT220 video terminal, it was in good shape – it needed a bit of cleaning, but it also needed a keyboard. [Peter] couldn’t afford to buy the keyboard, but the service manual for it was available, so he decided to convert a modern keyboard to work with his new terminal. (Editor’s note: Link rot. Try the Internet Archive’s Wayback Machine link instead.)

The original keyboard for the VT220 is the LK201. This keyboard communicates with the terminal using 8-N-1 (eight data bits, no parity, one stop bit) over RS232 at 4800 baud. This meant that it would be pretty simple to implement this on microcontroller in order to communicate with the terminal. [Peter] chose the Arduino Nano. However, the LK200 was more than just a keyboard for communicating with the terminal, it also housed a speaker and LEDs which the terminal used to communicate with the user. Rather than put these into the adapter unit, [Peter] decided to put these into the keyboard – a few holes and a bit of wiring, and they were in.

[Peter]’s write-up includes a description of some of the issues he encountered as well as a picture of the keyboard. He’s put the schematic online and the code up on GitHub. In case you were wondering, he used Vim on the VT220 to write his article. You could also use a Raspberry Pi to help out your dumb terminal, or just hook the terminal directly to your Linux box and go from there.

17 thoughts on “DIY VT220 Keyboard

  1. I wish this had happened when I resurrected my VT220 (found on the roadside). I purchased an LK201 for $30AUD from a DEC reseller that amazing came into existence for a brief period when I was working on getting it going (possibly the last DEC reseller in Melbourne…)

    I managed to get the thing talking to my linux box, but after a little while the display gets garbled. The serial settings are all aligned on both sides, so I’m wondering if one of those arcane VT220 features need adjusting. Looks interesting.

        1. I thought the cool-blast trick only worked on silicon, ICs and transistors. I thought cap breakdown was a chemical thing in nature. You can tell likely failures from the bulging on top of the can.

    1. I’ve noticed that with baud rates >9600 the terminal is only able to handle limited amounts of data successfully(e.g. ls at 19200 baud gets garbled about halfway through a long list). I suspect the readout from the UART FIFO is slower than required and the buffer overflows. Maybe the HW flow control will help, haven’t tried that yet (only have a tx,tx and ground cable for the link)

    2. I wish I’d found a VT Anything on the roadside. Or in a skip, I’m not really fussy. Anyone know of a cheap source for serial terminals? I just want one, as a toy. Wyse 60 would be nice but anything will do!

      It’s ironic those “thin clients” from the fad that never happened in the 1990s, you can get for peanuts now. They’re often just low-end diskless PCs. But I want an old, proper, CRT-based thing with a serial port and less brains than a working-class Tory voter. Just to hang it off the PC (or an Arduino) and make it do stuff. Any stuff, doesn’t matter what.

    1. It might be possible to remap the translation to swap the caps lock key with the control key.
      If all else fails do away with the original controller and have the teensy handle scanning the keyboard matrix.

    2. I’m sure he could if he wanted to, from the way he’s implemented it. As it is, a serial terminal doesn’t send anything for Ctrl. But a PS/2 keyboard does. So he just needs to swap things around a bit in the mapping.

      The fact you have to tell people where Ctrl “belongs” tells me that that particular fight may be long over.

    1. Dammit, a simple Arduino and you could’ve had them running as a PS/2 keyboard on your PC! Actually a lot of old keyboards get fanmail, so you might have benefitted from doing that. Can’t be worse than most modern cheap keyboards.

  2. Now this is a pretty useful project in vintage computing as you often find the terminal without it’s keyboard and it probably could be adopted to things like classic Macs and Amigas.

Leave a Reply to PaulCancel reply

Please be kind and respectful to help make the comments section excellent. (Comment Policy)

This site uses Akismet to reduce spam. Learn how your comment data is processed.