Quick Links

Linkdump: Arduino and JeeLabs

Here’s a bunch of assorted links that I dug up searching for Arduino and JeeLabs stuff:

Hacks:

Hack a Day: Arduino hacks

Data logging and reporting:

Live Graph - Plot and explore your data in real-time!
Pachube - Store, share & discover realtime sensor, energy and environment data from objects, devices & buildings around the world.

Sensors

ePIR (sparkfun)
How to monitor Gas, Water and Electricity consumption (bwired.nl)

Arduino GSM/GPRS/UMTS:

Lower cost Arduino cell shield
(Probably) the cheapest way to add SMS to an Arduino
Arduino GSM Shield (SIM900 GSM module)
Interfacing Arduino with a Telit GM862
DealExtreme SKU 12057, USB Tri-band GPRS modem / GSM radio

Rotary encoders:

Rotary encoder ISR for AVR micros
Side project: understanding cheap [...]

Continue reading Linkdump: Arduino and JeeLabs

Getting started with the RF12 wireless module on a JeeNode

I recently ordered a couple of JeeNode v6 boards. These boards are mostly Arduino-compatible (standard shields won’t fit) and optionally contain an RF12 radio module. They are ideal for creating wireless sensors.

Download and install the Arduino IDE
Set your serial port and speed correctly (57600 baud)
Download and install the Ports library and RF12 library (see below)

On Mac OS X, the Arduino IDE stores your sketches in your home directory, under ~/Documents/Arduino. Open a Terminal window and type the following commands:

cd ~/Documents/Arduino
mkdir libraries
cd libraries
svn co svn://svn.jeelabs.org/jeelabs/trunk/libraries/Ports
svn co svn://svn.jeelabs.org/jeelabs/trunk/libraries/RF12

Done! The RF12 library is now installed. Do not forget the Ports library, or you [...]

Continue reading Getting started with the RF12 wireless module on a JeeNode