Skip to content

stroud109/sensitiveimp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Keen IO + Electric Imp + PIR Sensor

A simple Electric Imp device that uses Keen IO to track my sleep schedule

In a nutshell, my device is just a simple passive infrared (PIR) sensor connected to the Imp card, which in turn talks to Keen IO. The PIR sensor is a relatively cheap ($10) motion sensor that detects changes in infrared radiation levels (e.g., human movement) within 20 feet. If well-placed in your home, a PIR sensor can tell when you're active and when you're not. For me, long periods of inactivity correlate to the times when I'm sleeping or at work.

This repo covers, in order:

  1. led_blink, an Electric Imp "hello world" with a blinking LED.
  2. pir_sensor, which uses log statements to test the functionality of a PIR sensor.
  3. pir_events, where basic motion event data is sent to Keen IO.
  4. dashboard (main.js and index.html), where data is visualized.

Materials I used: Electric Imp card and an April breakout board, a breadboard, some wires, a USB mini cable, a 330-ohm resistor, an LED (or several LEDs), a PIR motion sensor, and a free Keen IO account.

led_blink

Electric Imp has a great tutorial to help you get an LED blinking – the Imp equivalent of “Hello world!” To get going, you'll only need your Imp card, April board, LED light, and a resistor.

Pro tip: If your Imp isn't connecting to your Internet network, double check that your wifi password is correct. (Electric Imp won't cue you into the fact that your password is incorrect).

pir_sensor

To get your PIR sensor connected, check out these pages on setup and testing.

There are six basic steps for this part:

  1. Connect the attached red wire to VIN on the April Board.
  2. Connect the black wire to the GROUND, right next to VIN.
  3. Connect the remaining wire to PIN1.
  4. Write your Squirrel device.nut code.
  5. Write your Squirrel agent.nut code.
  6. Click "Build and Run" in your Imp IDE and check the logs. (You may need to reload the page).

For specific information on configuring digital pins, I used these two pages from Electric Imp's dev center. I also used codegirljp's advice with regards to using pin1 and DIGITAL_IN_WAKEUP.

Alt text

pir_events

Sending your event data to Keen IO only requires a few small changes to the pir_sensor code, detailed above. To begin, take a look at Keen IO's getting started guide and this super helpful keenio agent.nut.

  1. Create a free Keen IO account and login.
  2. Create a new project on Keen IO.
  3. Add a snippet of Keen IO's code to your agent.nut code.
  4. Add your Keen IO Project ID and your Keen IO Write API Key to your agent.nut code.
  5. Confirm that your device is still connected to your agent (e.g. agent.send("motion", pir_state); in device.nut and device.on("motion", function (state) { in agent.nut).
  6. Click "Build and Run" in your Imp IDE and check the logs. (You may need to reload the page).

Note: Event meta data logged to Keen IO includes "timestamp", "created_at" and "id".

Alt text

##dashboard For this project, I put together a dashboard that helps me quickly see the motion recorded in my home. The graphs show periods of activity in a 24 hour time period. I created the graphs using the timeline chart from Google, and doing a bit of data massaging to get Keen IO’s data to work with the charts.

Alt text

Additional Resources

Electric Imp code is written in Squirrel. For a Squirrel Sublime Text highlighter, check out: https://github.com/micheg/sublime_squirrel

About

KeenIO + Electric Imp + PIR motion sensor

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published