Skip to content

A C programme to decode the pulses from a 1960s Seeburg Wall-O-Matic 100 into the pressed key combination

Notifications You must be signed in to change notification settings

phil-lavin/raspberry-pi-seeburg-wallbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 

Repository files navigation

Intro

Based on my Raspberry Pi GPIO Interrupt demo code. Interfaces the RasPi with my 1960s Seeburg Wall-O-Matic 100 to decode the pulse train into the key combination that was pressed.

Interfacing with the Pi

The wallbox works on 25V AC. A simple circuit was used to pass pulses at this voltage to the GPIO pins of the RasPi at the RasPi's required small current (around 2mA) @ 3.3V DC.

Diagram is as follows:

seeburg circuit

Compiling

Settings

There's a number of defines at the top of the code. You can tweak the GPIO pin that the wallbox circuit is connected to as well as the timings the code works to. Timings may differ between wall boxes, because of the motor arm RPM, significantly enough that these need tweaking.

The pulse train

The code analyses and decodes the pulse train. The train comprises of a number of pulses, a noticable time gap and a number of additional pulses. The code is set up to ignore electrical jitter and pulses unrelated to the train (e.g. when a coin is inserted).

On this model wall box, the pulse train is sequential to represent A1 through to K0. If X represents the number of pulses before the gap and Y represents the number of pulses after the gap, X increments from 1 to 20 whilst Y stays at 1. Y then increments and X resets back to 1. The cycle repeats through to X=20, Y=4 for K0.

The decoding is simple maths as shown in the code.

Running

Must be run as root

./pi-seeburg

You can run with debug:

./pi-seeburg -d

You can pass the key combo through to an external programme:

./pi-seeburg -p 'sonos/sonos-wallbox "Dining Room"'

About

A C programme to decode the pulses from a 1960s Seeburg Wall-O-Matic 100 into the pressed key combination

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages