Turn a Rotary Phone Into a Radio and Travel Through Time

by carolinebuttet1 in Circuits > Arduino

3075 Views, 36 Favorites, 0 Comments

Turn a Rotary Phone Into a Radio and Travel Through Time

I turned this rotary phone into a radio!
8B54C0C1-9846-4B59-B48F-A78BB9B70880.jpg
C5A56800-8A8B-43A2-9591-B14E21905AA7.jpg
12E93D7E-1DB0-4382-BD59-F6DB4B32A2EB.jpg
how_it_works.jpg
  • I hacked a rotary phone into a radio! Pick up the phone, choose a country and a decade, and listen to some great music!

How it works
This rotary phone has a microcomputer built-in (a Raspberry Pi), that communicates to radiooooo.com, a web radio. There is a microcontroller (an Arduino) behind the map that controls the selection of the country. Together, this makes for an awesome, IoT project!

The map is glued to a metal panel, with an arduino at the back. Some countries have a jack pin. This is how you select the music !

I was sponsored by Digitspace for this project, they kindly sent me over some electronics for this prototype.


Technical breakdown

This project is made of several parts:
A rotary phone

A Raspberry Pi, whose role is to:

  • Play music through radiooooo.com
  • Detect when the handset is picked up / put down
  • Detect the numbers that are dialed in

An Arduino, whose role is to:

  • Detect which country is selected on the map (via jack connectors)
  • Send the info to the RPi over serial

Supplies

​Step 1: Understand How Your Rotary Phone Works

Turning a rotary phone into a radio station
how_rotary_works_02_s.gif
pick-up-switch.gif
20200618_142755.jpg
18952A4C-C8FB-4298-B4C0-091776869499.jpg
IMG_4947.jpg
20200618_091209.jpg
20200618_134227.jpg
20200618_095812.jpg

All rotary phones are different. Yours might not work exactly like mine, but the parts are quite similar.

For this project, the parts you'll need are:

📞 The pick up / put down mechanism for the handset

In my case, those pickup / put down switches were accessible on the board of the telephone: I used a multimeter to find the pins and soldered 2 wires from there. One of the wires goes to the 3.3V of the Rpi ( through a 220-ohm resistor), and the other wire goes to the physical PIN 18 of the RPI (GPIO 24)

🔈 The speaker from the handset

By unscrewing the handset, I could access the speaker. There are 2 wires (positive and negative) that you can hook to an audio cable. The end of your audio cable should have a jack connector so that you can plug it into the audio output of the Raspberry Pi.

⚙️ The rotary module

There are two distinct parts in a rotary module:

- The DIAL SWITCH: A switch that detects when the dialing started
- The NUMBER SWITCH: A switch that opens and closes as many times as the number dialed. For example, for number 6, the switch will open and close 6 times. The only exception is the number 0, which will trigger 10 pulses.

I have connected 2 wires to my DIAL SWITCH. One goes to 3.3V of the Rpi ( through a 220-ohm resistor), and the other wire goes to physical PIN 10 of the RPI (GPIO 15)

I also have connected 2 wires For my NUMBER SWITCH. One goes to3.3V of the Rpi ( through a 220-ohm resistor), and the other wire goes to physical PIN 16 of the RPI (GPIO 23)

Step 2: Build a Map!

IMG_4925.jpg
IMG_4924.jpg
IMG_4921.jpg
IMG_4920.jpg
IMG_4936.jpg
IMG_4962.jpg
IMG_4963.jpg
IMG_4930.jpg
IMG_4926.jpg
IMG_4945.jpg

The map will be used to select countries for your rotary radio.

I built mine by gluing a paper map on a metal panel. You can use any material you want, but make sure it's thin enough so that you can screw the jack sockets on your panel.

Before you glue your map, make sure you drill holes big enough to fit your jack sockets.

You can then glue your map in place and pierce the holes gently (with a pen for example). Your map is now ready!

Once your audio sockets are in place onto your map, you can then proceed to wiring.

The Arduino is connected to a Raspberry Pi via a USB cable (for both power and serial communication).

One end of the jack socket goes to 3.3.V, the other one goes to a digital pin of your choice, through a 10kohm pulldown resistor

You can find the Arduino code in the git repository.

Step 3: Setup Your Raspberry Pi

complete_schematics.jpg

Check out the SCHEMATICS for detailed instructions on how to wire your Raspberry

Optional: I have also included a LED that I connected to pin 15 (GPIO 22). This LED will flash when the main.py script is running.

Optional: Add a push button that allows you to reboot/shutdown your pi. Mine has 2 wires that respectively go to PIN 13 (GPIO 27) and GROUND

I have provided the main script main.py in the project's GitHub repository. The script is ready to use and has comments in case you are interested in how it works.

Please note that running the python script without any Arduino connected will trigger an error.

My raspberry pi is set up to run headlessly (without a screen).

There are a couple of things you need to set up if you want it to work:

- Make sure the GUI (Graphical User Interface) starts even when no monitor is connected.

We'll need it to run our website. In the terminal, type:

sudo nano /boot/config.txt

Then, uncomment the following line:

hdmi_force_hotplug=1

save it by pressing CTRL+X and accept the changes by pressing y when prompted

- Open the radioooo.com website at startup

In the terminal, type:

sudo nano /etc/xdg/lxsession/LXDE-pi/autostart

Add the following line to the file:

/usr/bin/chromium-browser --ignore-certificate-errors --disable-restore-session-state https://www.radiooooo.com

- Run the python script at startup

In the same file, add the following lines:

@/usr/bin/python /home/pi/your/path/main.py

@/usr/bin/python /home/pi/your/path/shutdown_button.py

- Update the script to the correct USB port that you connected your Arduino to

Run the following line in the terminal (with the Arduino unplugged):

ls /dev/tty*

A list of all available ports will show.

Then, plug in your Arduino and run the same command again.

The port that appears is your Arduino (In my case, it's /dev/ttyACM0 )

Open the main.py script and update the following line to match your port:

ser = serial.Serial('/your/port', 9600)

​Step 4: Install the Chrome Extension

Time machine, musical phone update

To interface with the radiooooo.com website, we need a chrome extension that our Rpi can run in Chromium. I have also provided the extension itself and the installation instructions in the GitHub repository. Please refer to the README for more info.

​Step 5: Run the Script

Reboot your pi.

When your pi has rebooted, your LED should flash; this is how you know that your script works.

Everything should work! Happy hacking!