GUEST POST by Thomas Sprinkmeier on how he used a Raspberry Pi to return a vintage jukebox to its former glory.

The original aim was to repair the jukebox’s mechanism and restore it to it’s vinyl-playing glory. Failing that it was important that whatever was done didn’t do further damage. Apart from one retaining clip and a bunch of wires soldered to the switches the jukebox is in as-used condition! The original plan was to multiplex the switches onto a few GPIO lines on a Leostick. It turns out the switches all have a common earth connection, multiplexing would have meant breaking those connections. The Arduino Mega has more than enough GPIO pins to address the switches individually, so that’s what I used. The switches have a solenoid which I suspect retained the letter selection until a number was selected. I suspect that this failed some time ago, as the owners were used to pressing and holding both a letter and a number to select a song. I assumed the letter and number were selected individually the first version of the scanning code would go nuts when you pressed and held both, queueing the same song over and over again. Easy fix, once you know it’s broken. The Mega has few (dozen) GPIO pins left, as well as ADC. Adding a few buttons (stop, pause, skip, …) and a volume control would be nice. The USB WiFi dongle connects to the home WiFi net. Running as an open AP would make the jukebox more ‘party friendly’ by allowing guests to queue music. The Raspberry Pi listens to the Mega, provides the web-interface and plays selected songs through the portable docking station (which has surprisingly good sound, especially once the doors are closed). It’s running the default Raspian distro with a CGI web interface and a jukebox daemon, both written in Python. To the web-interface which can be used to upload, delete, queue and download songs. It also provides a CSV files listing all the songs in the right order to make printing labels easy.

ToDo/Wishlist

  • Fake record changing sound-effects between tracks!
  • Lots of GPIO pins left for stop/skip/pause/play/shutdown buttons.
  • Lots of ADC for volume controls, or even an equalizer.
  • Extract the metadata from the songs. And do something sensible with it.
  • The web interface is ugly enough to qualify as a desperate cry for help.
  • Split the web interface into public (queue songs etc.) and private (authenticated, upload/download/delete songs etc.)
  • Re-use the chassis speakers rather than docking station.
  • Replace the neon tubes with LED strips.
  • Without all the hungry mechanics and neon tubes it should run nicely off a batteries.

As before any additions should have minimal impact. Any ugliness in the design or implementation is hereby officially blamed on a rather tight deadline; the jukebox had to be ready to play at a birthday party (and it was!). All code and schematics are on GitHub. Questions? Comments? Patches? Contact me: [email protected].     This Seeburg Select-O-Matic Phonograph SS160 got a bit of a bump one day and stopped working: Repairing the mechanical problem was prohibitive. However, there is easy access and plenty of space in the case to install a ghost in the machine: The mechanical selection switches are wired up with ribbon cable … … to an Arduino Mega The Mega scans the mechanical switches and reports to a Raspberry Pi: A portable docking station provides plenty of sound, and a WiFi dongle allows remote control as well as managing songs:

6 thoughts on “Resurrecting a Vintage Jukebox with a Raspberry Pi”
  1. I like your suggestion to replace the neon tubes with LED strips to the jukebox can run nicely on batteries. My husband and I are interested in buying an old jukebox to fix up together. I hadn’t considered replacing the neon tubes with an alternate light source, so thanks for sharing that idea!

Leave a Reply to Andrew RubinCancel reply