Apple II expansion card using a Raspberry Pi for I/O
Go to file
2020-12-04 00:28:10 +00:00
Hardware Remove unnecessary vias 2020-11-19 19:06:00 -05:00
RaspberryPi Add non-functional server code for RPi 2020-12-04 00:28:10 +00:00
.gitignore Add non-functional server code for RPi 2020-12-04 00:28:10 +00:00
LICENSE Initial commit 2020-11-02 21:02:52 -05:00
README.md Add non-functional server code for RPi 2020-12-04 00:28:10 +00:00

Apple2-IO-RPi

Apple II expansion card using a Raspberry Pi for I/O

Image of Board

Project Status

This is a very early stage project. Currently one partially completed hand wired physical prototype exists that sends data unidirectional from the Raspberry Pi Zero W to the Apple II via 8 bit parallel data bus. The PCB layout has not been physically tested and no firmware or software exists yet.

Purpose

The purpose of this project is to provide I/O for an Apple II series 8 bit computer via a Raspberry Pi Zero W which is powered by the Apple II expansion bus. Initially this would be storage via virtual ProDOS compatible drive. Next might be adding virtual serial card support over wifi. Future enhancements could use the RPi for more complex processing as per request from the Apple II. For example, the Apple II could request a web page or application and the RPi could calculate this in Apple II hi-res graphics mode and send the image data back to the II for display purposes.

Setup

  1. Have PCBs made from the gerber and drill files in the Hardware folder
  2. Solder chips, header and capacitors in place
  3. Attach Raspberry Pi Zero W facing outward from the card
  4. Install Raspberry Pi OS on microSD card
  5. Configure wifi in boot/wpa_supplicant.conf
  6. Add empty ssh file boot (for ssh access over wifi)
  7. Put microSD card in the RPi
  8. Install the expansion card into the Apple II
  9. Power on the Apple II
  10. Install NodeJS 11 for ARMv6 on the RPi over ssh
  11. sudo npm install -g pm2
  12. pm2 startup systemd
  13. Run the command from the output of the previous step
  14. pm2 start server.js

Similar Project

If you're looking for complete hardware design or prefer having Apple II peripherals control a control a Raspberry Pi rather than simply using the Raspberry Pi to provide storage and network access to the Apple II, have a look at David Schmenk's excellent Apple2Pi project.