Contains python control script, Android app code, schematics, and an installer script to automate installation on the Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
767 B

6 years ago
5 years ago
  1. # Pi-Garage-Door-Opener
  2. Contains Python script, schematics, and additional information from the youtube video at https://youtu.be/An7KQbmUnhs. The install.sh file can automate all of the tasks involved in this project, including installing python3 & pip3, installing bottlepy, making the directory, pulling the latest version of the python script, and editing the /etc/rc.local file to run on startup.
  3. ## How to run install.sh ##
  4. ### Make sure system is up to date: ###
  5. `sudo apt update && sudo apt upgrade -y`
  6. ### Get the latest version of the script ###
  7. `wget https://raw.githubusercontent.com/Rav4s/Pi-Garage-Door-Opener/master/install.sh`
  8. ### Add execute permissions ###
  9. `chmod +x install.sh`
  10. ### Run the script and follow the terminal prompts ###
  11. `./install.sh`