A Cold Wind From the USSR - Part 2, Keyboard Emulator for a PDP-11
To read Part 1 of this series, click here . The Russian Elektronika DVK-3 PDP-11 clone is a very fascinating computer to me, and I want to share it with the world. Part of that endeavor involves allowing people to actually interact with it and play games on it remotely, not just see videos of me using it. To get this to happen, I need to actually allow people to input into the system via the keyboard. I could build a ridiculous robotic action to hit the keys on behalf of remote users, but this would likely introduce a great deal of latency into the system and would not be good for those critically-timed Tetris block rotations. The best bet is to spoof the keyboard by basically building a whole new one, but instead of keys, use an Internet connection and microcontroller to generate the scan codes. The Elektronika MS7004 keyboard is based on the DEC LK201 keyboard interface , standard for PDP-11 minicomputers. It utilizes the RS423 serial communication st...