Go to file
Rick Carlino 95e6b32355 Remove pry 2016-05-16 20:07:59 -05:00
db remove old settings file 2016-03-29 21:19:21 -05:00
lib Remove pry 2016-05-16 20:07:59 -05:00
setup Temporary setup wizard is good-to-go 2016-03-27 08:57:56 -05:00
spec Fix bug in `time` variable` 2016-05-13 16:04:27 -05:00
.gitignore oops log files 2016-05-06 14:21:25 -05:00
.gitmessage Rough draft of working calibration menu 2015-08-12 11:47:21 -05:00
.rspec Refactor of MessageHandler and MessageHandlerMessage 2015-03-18 10:25:07 -05:00
CONTRIBUTING.md Add CLA 2015-09-18 23:01:46 -07:00
Gemfile so close 2016-05-13 22:07:35 -05:00
Gemfile.lock so close 2016-05-13 22:07:35 -05:00
README.md Fixing README issues as noted by @PressY4EKG 2016-05-10 17:29:16 -05:00
Rakefile Temporary setup wizard is good-to-go 2016-03-27 08:57:56 -05:00
farmbot.god Remove pry 2016-05-16 20:07:59 -05:00
farmbot.rb Lower reconnect wait time to 1000 ms 2016-05-10 15:55:03 -05:00
setup.rb Remove pry? 2016-04-14 21:08:09 -05:00

README.md

FarmBot Software for the RaspBerry Pi

The "brains" of Farmbot. Responsible for receiving the commands from users or the farmbot-web-app. It executes them and report back the results to any subscribed user(s).

Technical Stuff

  • Written in Ruby.
  • Operation scheduling data is stored in SQLite 3.
  • Device status info, such as X, Y, Z and calibration data is stored via PStore
  • Backups to the cloud provided by Farmbot Web API.
  • Messaging happens via MQTT.
  • Communicates with Arduino hardware using the farmbot-serial gem

Running in production

bundle install

If you want to enable auto restarts on crash or memory leak, run:

god -c farmbot.god -D

If you don't care about autorestarts, just run:

ruby farmbot.rb

You can find your device credentials inside of credentials.yml

Running on Local

If you're running your own local farmbot web app

FBENV=development ruby farmbot.rb

Installation

Install Ruby 2.2

This gem requires Ruby 2.2 minimum. Later versions will work fine as well. As of this writing, a Pi is loaded with 1.9.3 by default.

To remove the old version of Ruby that comes with most RPi distributions:

sudo apt-get remove ruby* --purge

To upgrade your ruby version, try this:

gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
curl -L https://get.rvm.io | bash -s stable --ruby

This will take about 2 hours a standard Raspberry Pi 2.

Raspberry PI

Update the RPi, install ruby and the arduino IDE

sudo apt-get update
sudo apt-get install git-core sqlite3 arduino

Clone, install and run:

git clone https://github.com/FarmBot/farmbot-raspberry-pi-controller
cd farmbot-raspberry-pi-controller
gem install bundler
bundle install
rake db:setup
ruby farmbot.rb

Setup the device:

Go to the My Farmbot Website (or your private server) and sign up for a Farmbot account.

Then from within the farmbot-raspberry-pi-controller project directory run:

ruby setup.rb

Report problems:

We can't fix issues we don't know about. If you are having issues with setup, please raise an issue with us. This helps us identify confusing steps, common setup issues and other problems.

Arduino

You will need to flash your Arduino with custom firmware. For instructions on how to do this, see the FarmBot-Arduino github page

Authors

  • Rick Carlino
  • Tim Evers

License

The MIT License

Copyright (c) 2016 Farmbot Project

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.