Git Product home page Git Product logo

pi-aquarium-controller's Introduction

โš ๏ธ WARNING

This project is in development and doesnt actually do a lot at the moment

pi-aquarium-controller

A raspberry pi powered aquarium controller. Monitors temperature and controls lights, air and CO2.

This replaces the original Arduino powered aquarium controller and has the following advantages:

  • Is network connected:
    • can be managed remotely.
    • can send alerts.
    • can use NTP for accurate time-keeping.
  • Multiple on/off times for air, CO2 and lights
  • Other stuff as I think of it...

Installation

Follow these instructions on the command line on your raspberry pi.

Install node

curl -sLS https://apt.adafruit.com/add | sudo bash
sudo apt-get install node
sudo reboot

Install pi-blaster

pi-blaster is an open source project that allows very efficient PWM (pulse width modulation) of GPIO pins on the raspberry pi. This allows us to do things like dim the LED lights, rather than just turn them off or on.

  • Clone the repo
    cd /opt
    sudo git clone https://github.com/sarfata/pi-blaster.git
    
  • Change the owner of the cloned directory to your user and group rather than root (pi is default for both):
    sudo chown -R pi:pi pi-blaster
    
  • Build and install pi-blaster:
    sudo apt-get install autoconf
    cd /opt/pi-blaster
    ./autogen.sh
    ./configure
    make
    sudo make install
    

Install pi-aquarium-controller

  • Clone this repo:
    cd /opt
    sudo git clone https://github.com/kabadisha/pi-aquarium-controller.git
    
  • Change the owner of the cloned directory to your user and group rather than root (pi is default for both):
    sudo chown -R pi:pi pi-aquarium-controller
    
  • Install the project dependencies:
    npm install
    

To update existing installation

Follow these instructions on the command line on your raspberry pi.

  • Update your clone:
    cd /opt/pi-aquarium-controller
    git pull
    
  • Update the project dependencies:
    cd /opt/pi-aquarium-controller
    npm install
    

pi-aquarium-controller's People

Contributors

kabadisha avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.