- Notifications
You must be signed in to change notification settings - Fork3
Open Source Rootzone Monitoring
License
autogrow/openminder
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Part of Autogrows open initiative, this project is an open source API to be used in conjuction withthe open source OpenMinder hat for the RaspberryPi. When coupled with the hardware this server will readand report via a REST API the readings for:
- 2 Autogrow Intelligent EC probes
- 2 pH probes
- 2 tipping buckets
This allows anyone to build a device that can monitor the rootzone of their plants to make the most optimumuse of water and fertigation ingredients to ensure a happy plant. This is done by measuring the water goinginto the plants on the irrigation side, as well as coming out on the runoff side, thus allowing comparisons.
You can also use theSample OpenMinder Dashboard to add a web interface that shows the readings from the REST API.
The following is a quick getting started overview:
- Connect the OpenMinder hat to your Raspberry Pi
- Install the latest version of Raspbian (other OS may work but have not been tested)
- Build or download the binary, or install the Debian package
- Run the binary orservice
- Calibrate your probes and tipping buckets
- Call the readings endpoint for the API
curl http://<ip>:3232/v1/readings
See theGetting Started page for more detail.
You can install the package from theAutogrow Debian Repository:
curl -s https://packagecloud.io/install/repositories/autogrow/public/script.deb.sh | sudo bashsudo apt-get install openminder
You can download pre-built binaries from thereleases page
You can build the binaries using go:
go get github.com/autogrow/openminderGOARCH=arm go build github.com/autogrow/openminder/cmd/openminder # API and hat interfaceGOARCH=arm go build github.com/autogrow/openminder/cmd/omcli # command line client
You can build the package using theian utility:
cd dpkgian buildian pkg
You can simply run the API without any arguments to use the defaults for the hat.
openminder
You can change the API port like so:
openminder -p 3131
You can also change the tipping bucket GPIO ports (usually only needed for testing) like so:
openminder -tb1 GPIO17
Seeopenminder -h
for more information.
The main interaction with the binary is via the API. See theAPI page for more detail.
Some readings need to be calibrated to make any sense. For instance to turn the tip count intoa volume reading, the minder needs to know how many millilitres each tip of the tipping bucketrepresents. To set the runoff tipping bucket to 5 mls per tip you could do:
curl -XPUT http://<ip>:3232/v1/calibrations/irrig_tb/5.0/0
Calibrating the EC and pH probes required the use of the companion CLI toolomcli
. This providesa series of prompts to help calibrate the probe in place.
We accept pull requests. If you need any help, please don't hesitate to open an issue.