Tidbits on software development, technology, and other geeky stuff

Opening Garage Doors with a Raspberry Pi

About 5 years ago, I wrote about a solution I had for controlling my garage doors from my phone. It was a fun project and generally has been working well. However, the triggering mechanism relies upon X10 through my Honeywell Vista 20-P alarm panel and is therefore not very transferable to others wanting to do a similar project. When friends ask about it and the possibility of doing their own similar project, I always have to hestitate a bit and say “well, it’s a pretty specific setup to my house and equipment”. I really have wanted to say “sure, here’s a blog post showing you each step so you can do a project for yourself”.

I’ve been having more issues with X10 interference lately and decided to dust off one of my Raspberry Pi devices and put it to use as an alternative solution that should surely be more reliable and a fun project along the way!

As a precursor to this project, I was playing around with the GPIO pins and my multimeter to see if I could control them with the Node rpio library and posted about it on Twitter.

Once I was able to get this working, I knew getting the Pi hooked up to a relay and then triggering my garage door openers would be easy.

Parts List

Let’s get started. Here’s what you’ll need:

Raspberry Pi Relay Parts List

Hardware Setup

Using 4 Female to Female jumper wires, connect the Raspberry Pi to the relay:

RPi Pin Relay Pin
Pin 6 (Ground) GND
Pin 11 (GPIO 0) IN1
Pin 12 (GPIO 1) IN2
Pin 2 (5V) VCC
Raspberry Pi Pin Connections to Relay

Software Setup

Now that the relay is connected to the pins, it’s time to setup the OS and software we will use to control the relays.

Arch Linux ARM will be used as the OS and the raspberrypi-relay-controller project will be used to provision the Pi with Ansible and install all necessary software. This will make setting up the Raspberry Pi software very straightforward. Rather than rehashing all the raspberrypi-relay-controller instructions here, simply follow the README step-by-step. In short, you will doing the following:

  1. Install Arch Linux ARM on SD card and then booting the Raspberry Pi
  2. Setup up key-based authentication for root user
  3. Run Ansible playbook to provision all necessary software and configuration

Once you are done with the instructions, you should be able to open http://[raspberry_ip_address]:3000 in a browser and see the following simple web interface that allows triggering of the relays.

Relay Web Interface

Although there are several components at play, the actual control of the relay is handled by a Node.js process that utilizies rpio to trigger the relay temporarily using this block of code:

function toggleGpioPinOn(pin, durationMilliseconds) {
  // Set the initial state to low.
  rpio.open(pin, rpio.OUTPUT, rpio.LOW);
  // Turn pin ON.
  rpio.write(pin, rpio.HIGH);
  // Wait durationMilliseconds
  rpio.msleep(durationMilliseconds);
  // Turn pin OFF.
  rpio.write(pin, rpio.LOW);
}

Conection to Garage Door Openers

  1. Run sudo shutdown and then unplug the Pi
  2. Connect 2 wires from each garage door opener switch contacts to the relay. The switch contacts are usually labeled White and Black and will be the same ones your wall switch(es) are attached to.
  3. Plug back in the Pi and let it boot
Relay to Garage Door Connection

Here is what my Pi looks like all connected up:

Raspberry Pi Connected to Relay and Garage Door

Test

  1. Open http://[ip_address]:3000/ and click the “Relay 1” button. The garage door should open! Press it again and the door should close!

Here’s a video showing the final setup:

Going Further

  1. Get a project box like this one and enclose everything nicely.
  2. Fork raspberrypi-relay-controller and customize the web interface, such as changing the button labels. Then, simply run ./provision.sh again to push out the updates.
  3. Integrate with another system utilizing the simple REST API.
  4. Get a magnetic contact switch like this and use rpio to detect if the door is open or closed.

Discuss on Twitter