gogo-garage-opener

command module
v2.0.0+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 24, 2018 License: GPL-3.0 Imports: 17 Imported by: 0

README

Build Status

gogo-garage-opener

Go implementation of a Raspberry Pi garage door opener

Features
  • Open garage door using a mobile app
  • Generate one time pins to allow someone temporary access to your garage i.e. A delivery man or a friend or a family member.
Apps

Garage Opener on Play Store (source)

Garage Opener for iPhone, Android App implemented using ionics framework (source)

Guide
Prerequisites
To build
Software

The build framework uses docker to make the process easier. With some fiddling about you can build it natively on the Raspberry Pi or on your development machine.

Note. If compiling manually rather than using docker you will need to install an arm gcc on your development machine compile the source. The docker build takes care of all of this.

Building using docker

  1. Open up your command line tool and navigate to the project on your development machine
  2. Compile the project by runningdocker build . --tag gogo-garage-opener-builder && docker run --rm -v "$PWD":/go/src/gogo-garage-opener -w /go/src/gogo-garage-opener gogo-garage-opener-builder:latest (tested on linux)
  3. You should have a binary file called gogo-garage-opener in the project directory
  4. Copy the binary file gogo-garage-opener to your Raspberry Pi
Creating a user

To use gogo-garage-opener-ui or use the APIs you will need to create an account

  1. Ensure you have built the binary
  2. Run the app with --email and --password arguments e.g. ./gogo-garage-opener --email benjefferies@example.com --password secret
  3. The application will exit with a message Created account email:benjefferies@example.com. Exiting...
Running
  1. Ensure you have completed the Hardware set up
  2. Run the application as root sudo nohup ./gogo-garage-opener -s 15 -r 18 &
    • nohup will redirect the output from the application to a log file called nohup.out
    • The -s argument tells the application which gpio pin the magnetic switch is hooked up to
    • The -r argument tells the application which gpio pin the relay is hooked up to

Note. If you are considering making the application available over the internet you will want your credentials to be encrypted over SSL, this can be achieved with a reverse proxy such as ngnix or apache2 with the correct mod.

Use one time pin

To use a one time pin go to http://localhost:8080/user/one-time-pin/abcd1234. The pin at the end is the generated pin, once the open button has been pressed the pin will be marked as used.

Open garage door notification

The application can be configured to notify users which have accounts via their email address if the garage door has been left open for a configurable period. The command line argument -notification=15m configures the app to notify all users if the door has been left open longer than the configuration duration. It uses AWS SES as an SMTP service for sending the emails. To configure the application to use your SES account you will need to set the environmental variables $AWS_ACCESS_KEY_ID, $AWS_SECRET_KEY and $AWS_SES_ENDPOINT environmental variables. See go-ses

Hardware

I will describe how to set up your Raspberry Pi and the peripherals referring to the GPIO pins set up my Raspberry PI. Check that they are the same for your version. GPIO documentation

Wiring up the relay

  1. Connect up a (black) GPIO wire to pin 2 which is a 5v output
  2. Connect up a (white) GPIO wire to pin 6 which is a ground
  3. Connect up a (grey) GPIO wire to pin 18 which is a GPIO pin. This will be used in "out" mode to toggle the relay
  4. Connect up the (black) 5v output GPIO pin 2 wire to the VCC on the relay
  5. Connect up the (white) ground GPIO pin 6 wire to the GND on the relay
  6. Connect up the (grey) GPIO pin 18 wire to IN1 on the relay
  7. Connect the positive from the garage door to the NO1 connector on the relay
  8. Connect the negative from the garage to the COM1 connector on the relay

It should now look like the images below

Pins right view Relay switch Relay switch garage door opener wires Garage door opener wiring

Wiring up the magnetic switch

  1. Fix the magnet to the garage door
  2. Fix the sensor to the garage door frame
  3. Connect up a (brown) GPIO wire to pin 15 which is a GPIO pin. This will be used in "in" mode to read from the sensor
  4. Connect up a (red) GPIO wire to pin 9 which a ground
  5. Connect up the (red) ground GPIO pin 9 wire to a terminal strip on the breadboard
  6. Connect up the (brown/blue) GPIO pin 15 wire to a different terminal strip on the breadboard
  7. Connect one wire of the magnetic switch to the terminal strip for GPIO pin 9 and the other to the terminal strip for GPIO pin 15

Pins left view Breadboard with magnetic switch wiring

Future
  • Open garage door via location i.e. Automatically open garage within 100 metres of your garage. I have found a nice way to do this using Automate. I can upload a template of a flow if anyone would find it useful.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL