Water Elf

From Open Source Ecology
Jump to: navigation, search

Intro

For context, see Water Elf IoT

Content

Waterelfbasicbreadboard.jpg Gareth cropped.jpg

The electronic device pictured above is a WaterElf. The WaterElf can be connected to waterproof temperature sensors, air humidity and temperature sensors, light level and pH level sensors. It can also control power sockets through 433MHz radio controls. It logs these both internally (limited space for data) and uploads them 'to the cloud' so you can see the data on the internet:

Screenshot - 101115 - 01 35 32.png

The WaterElf has a wifi station and webserver, and generates its own webpages. You can use these to see the data from the sensors and control the power socket:

Watereld Screenshot2.png

These instructions are designed to help you program the WaterElf device, a one-time step that you have to do before using the device. After programming, the device can be disconnected and when power is applied again, the program starts. All the normal communication and control (apart from initial programming) is done over wifi.

For demonstration purposes during today's workshop, you can just do stage 1 and imagine using a local or remote database. In this case you can use almost any computer, and it can be either 32 or 64 bit. If not using linux (e.g Windows or Mac) follow the relevant instructions from the https://www.arduino.cc/en/Main/OldSoftwareReleases#previous page to get the version 1.6.5 arduino IDE installed instead of steps 2-8, then carry on with step 9:

First stage gets the arduino IDE installed to program the ESP8266 chip.

  1. To download our code for the device, goto https://github.com/hamishcunningham/fishy-wifi/archive/master.zip and save the (1.2MB) file. Extract it to the home directory, then rename the folder from fishy-wifi-master to fishy-wifi.
  2. Visit http://www.arduino.cc/download.php?f=/arduino-1.6.5-r5-linux64.tar.xz. 90 MB download - takes a few minutes.
  3. Click on the downloaded file and extract it somewhere.
  4. Open up a terminal (click on ubuntu icon (top left), type terminal into search box, click on its icon).
  5. Type the following three commands into the terminal:
  6. cd <directory where extracted>/arduino-1.6.5-r5 - e.g. 'cd Downloads/arduino-1.6.5-r5'
  7. sudo chmod +x install.sh
  8. ./install.sh
  9. Now you should be able to find arduino IDE program from the ubuntu icon - click on it to run the arduino IDE.
  10. Open File, then Preferences.
  11. Set sketch folder to be /home/ubuntu/fishy-wifi/ardesp/Arduino (change to match where it is on your computer)
  12. In the Additional Board Manager URLs field put http://arduino.esp8266.com/staging/package_esp8266com_index.json and click OK.
  13. Open the Tools, Board: "Arduino/Genuine Uno", Boards Manager
  14. In the search box at the top right type "ESP" and then select the esp8266 by ESP8266 Community item and click install. 34MB download - takes 5 minutes. Sometimes it doesn't work the first time, just close down boards manager and try again.
  15. Now you can select Tools, Board - Choose the Adafruit HUZZAH ESP8266 board.
  16. When you plug in the board via the USB-serial/UART/FTDI thingy, you should see the port (Tools, Port) selected automatically.

To actually program the WaterElf sketch, open the fishy-wifi/ardesp/waterelf/waterelf.ino sketch with the arduino IDE, connect the device (and sensors and transmitter) as detailed here:

Frizingwaterelf.png

The wire at the top right is from the waterproof temperature sensor - and it usually comes with three wires, red black and yellow. The yellow wire (which looks orange on the picture) should be connected as shown and you probably won't have a white wire. For bonus points if you have time, you can connect additional sensors such as humidity, light level and even pH. The code on the device detects which sensors are connected automatically during startup. Just to give you a chance, the light level and pH sensors use I2C and so connect them to pins #4(SDA) and #5(SCL) as well as power. The humidity sensor gets connected to power and the signal goes to pin #12. You also need a 4.7k resistor between positive and signal - like this:

Dht11wiring.gif

To program the device, hold the mode button (left one) whilst pressing and releasing the reset (right). In upload mode the red led glows dimly. Once in this mode, click on the upload icon to program the device.

Once device is programmed, it generates a wifi access point called 'WaterElf-xxxxxxxx'. Join this network with a laptop (no password needed).

Open a browser to 192.168.99.1 - this should load the WaterElf home page. Occasionally the webpages don't load well or at all and you need to refresh them. Give the device a few seconds to respond before trying to refresh - it is only a little chip, after all!

In the WaterElf page, click on the 'join a wifi network' link, choose your network and enter it's password. Wait a few seconds, then goto the 'wifi status' page to see if you joined the network ok. Once that is established, go to the main page (click on WaterElf link at the bottom) and goto 'configure data sharing'. This is where you can put in an address of a couchdb database for logging and visualising the data. ' You can check the sensor is working by clicking on the 'sensor data' link. You can also control the external power socket with the 'External power' radio buttons (set the power socket to settings IV and 2)

In the very near future we'll get the cloud connection working, to see the visualisation and data over the internet. Sadly everything went wrong for me when I tried to do it (<excuse>I'm not the main software dev on this bit</excuse>).

Now I will just pause for a few seconds to allow the cheering to subside...

And if you want to 'be your own cloud' then read on...

The following instructions are for running a local database and visualisation app. They were written for ubuntu 12.04, (note - docker requires 64 bit):

Second stage, get couchdb and associated app installed.

  1. In the terminal type the following:
  2. cd ~
  3. sudo add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/precise universe multiverse"
  4. sudo add-apt-repository "deb http://us.archive.ubuntu.com/ubuntu/precise-updates universe multiverse"
  5. echo -e "deb https://apt.dockerproject.org/repo ubuntu-precise main" | sudo tee -a /etc/apt/sources.list.d/docker.list
  6. sudo apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D
  7. sudo apt-get update && sudo apt-get upgrade -y
  8. sudo apt-get install -y git python-dev python-pip docker-engine linux-image-generic-lts-trusty linux-headers-generic-lts-trusty xserver-xorg-lts-trusty libgl1-mesa-glx-lts-trusty (takes a couple of min)
  9. git clone https://github.com/hamishcunningham/fishy-wifi.git (this takes a few min)
  10. cd fishy-wifi/ardesp/wegrow
  11. sudo pip install -U docker-compose (takes a minute)
  12. DOCKER_HOST=localhost sudo docker-compose up (65MB takes a couple of min the first time)

Now the database should be up and running. Leave this terminal open but open another tab with control-shift-t. Type the following commands to get the app running.

  1. cd ~/fishy-wifi/ardesp/wegrow/
  2. sudo pip install couchapp
  3. cd fishyapp
  4. couchapp push fishydata

the app reports a URL to load e.g. http://127.0.0.1:5984/fishydata/_design/fishyapp/index.html open browser and load the URL given.