Version 61 (modified by hek, 11 years ago) (diff)

--

Arduino Nano

Arduino Sensor Plugin

The Arduino sensor plugin allows you to build your own cheap wireless sensors [for less than $10]. The sensors is using Nordic Semiconductors transceiver nRF24L01. The Arduino Vera plugin automatically creates the sensor devices it finds on the radio network. Creating your own sensors should be pretty simple using the supplied Arduino library and example sensor sketches.

Arduino is an open source hardware prototype board that have lots of both digital and analog IO pins. There are an enormous amount of different cheap sensors that is compatible with the Arduino hardware.

Link Arduino page: http://arduino.cc
Relevant forum thread: http://forum.micasaverde.com/index.php/topic,16170.msg123378.html

Architecture

Author

Henrik Ekblad - henrik.ekblad at gmail.com (hek on forum)

Installing the Vera plugin

The latest version of the Vera plugin can be found here:

http://code.mios.com/trac/mios_arduino-sensor/browser/trunk/Vera

  1. Download all files and upload them in Vera under APPS->Develop Apps->Luup files.
  2. To create the new device to to APPS->Develop Apps->Luup and enter "D_Arduino1.xml" in "Upnp Device Filename" and press "Create Device"
  3. After the usual reload/refresh ritual the Arduino root device should pop up.
  4. If you have your Arduino board plugged into Vera you should now configure which serial device to use. See image to the right.

About the Arduino library and plugin

All the components developed and compiled here are Open Source. The Vera plugin was inspired by the excellent rfxtrx plugin. I've also written a Arduino library handling all encoding and communication between Arduino sensors and ArduinoGateway. The Vera plugin part automatically creates newly found sensors in Vera.

It should be pretty simple to use the library (some more documentation in vera.h). But here follows the basic usage in your Arduino sketch:

#include <SPI.h>  
#include <nRF24L01.h>
#include <RF24.h>
#include <Vera.h>  

// Create RF24 library instance using pin 9,10 which is what I've described how to hook up the radio module in this wiki.
RF24 radio(9,10); 

// Create a Vera library instance with radio id <radioId>. This should be a value between 1-255. 
// You cannot share radioId between two arduino sensors.
Vera sensors(<radioId>, &radio); 

void setup()  
{
  // Initialize and start up vera library (this also initializes the radio stuff)
  vera.begin();

  // Register sensor(s) to Vera (they will be created as child devices when found).
  // childId - Each Arduino can have up to 128 child sensors. 0-127.
  // deviceType - Which (vera) device type to use for this sensor. See [[http://code.mios.com/trac/mios_arduino-sensor/browser/trunk/Arduino/libraries/Vera/Vera.h|vera.h]]).
  vera.sendSensorPresentation(<childId>, <deviceType>); 
}



Arduino Sketches

A sketch is a small program that you download to the Arduino boards. To get started download Arduino SDK here: http://arduino.cc/en/Main/Software

Also make sure to install all Arduino libraries I've created and collected here before trying to build the sensor sketches below. http://code.mios.com/trac/mios_arduino-sensor/browser/trunk/Arduino/libraries

Follow the description below on how to assemble hardware and configure each type of sensor. I've also tried to link all the hardware necessary to build each sensor [from aliexpress.com].

Arduino Gateway

Acts as a link between Vera and your wireless sensors. This sketch should be downloaded to an Arduino Nano which then is connected to your Vera using a usb cable. It is important to use a Nano board for the ArduinoGateway as it contains a serial usb chipset recognized directly by Vera.

Dallas Temperature Sensor

This is an example sensor sketch that sends in Dallas temperature information and presents it as a temperature devices in Vera.

Distance Sensor

Bed occupancy sensor? Or use it in the garage to show when the car has reached the right location. Why not measure your own length every day using your Vera?

Humidity Sensor (DHT22)

Sketch that sends DHT11/22 data to Vera which displays them as a humidity and temperature device.

Light Sensor

Sensor sketch that reports light level and displays it in Vera using a light sensor device.

Motion Sensor

Motion sensor sketch that triggers a motion sensor security device in Vera.

Pressure/Temperature/Weather forecast sensor (BMP085)

Example sketch showing how to use a BMP085 pressure sensor to create a simple weather station with forecast calculation. Everything is sent and displayed as a barometer and temperature device in Vera.

Soil Moisture Sensor

Soil moisture sensor that triggers a security sensor device in Vera.

Relay Actuator

Relay sketch that can be controlled from Vera using a regular binary light switch device in Vera.

Attachments