Skip to content

PERSISTLab/ekho

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ekho: Realistic and Repeatable Experimentation for Tiny Energy-Harvesting Sensors

Josiah Hester, Timothy Scott, Jacob Sorber
School of Computing, Clemson University

Our paper, "Ekho: Realistic and Repeatable Experimentation for Tiny Energy-Harvesting Sensors" describes the design and evaluation of a new tool for recording and replaying energy harvesting conditions. Energy harvesting is a necessity for many small, embedded sensing devices, that must operate maintenance-free for long periods of time. However, understanding how the environment changes and it's effects on device behavior has always been a source of frustration. Ekho allows system designers working with ultra low power devices, to realistically predict how new hardware and software configurations will perform before deployment. By taking advantage of electrical characteristics all energy sources share, Ekho is able to emulate many different energy sources (e.g., Solar, RF, Thermal, and Vibrational) and takes much of the guesswork out of experimentation with tiny, energy harvesting sensing systems.

This paper received the BEST PAPER Award at the 12th ACM Conference on Embedded Networked Sensor Systems (SenSys 2014), held in Memphis, Tennessee November 3-6, 2014.

For more information on the concept, design, and evaluation of Ekho, checkout the presentation, notes, and the paper itself.

Prerequisites

On a Mac, after installing the XCode command line tools, and then Homebrew, install GSL with:

brew install gsl

On Ubuntu install GSL with:

sudo apt-get install gsl-bin libgsl0-dbg libgsl0-dev

If you are using other Linux distros, then you already know what to do.

Desktop Analog-Front End

image To do anything useful with Ekho, you need the custom designed Analog-front-end. The PCB for the analog front end can be ordered from OSH Park. We are hosting it on OSH Park so anyone can easily, and cheaply get the PCB printed.

Once the PCB is in hand, you can either:

  • Hand solder the parts on the board (requires intermediate soldering skills). Cheapest option!
  • Order a stencil from OSH Stencils and stencil the board.
  • Have Advanced Assembly (or a similiar low-volume fab house) assemble it for you. Just send them the gerbers, the BOM, and the XYRS file (.mnt inside board/).

Mobile Analog-Front End

image

For a version of Ekho that can be deployed for long periods of time (for example with an existing sensor network deployment) order the Mobile Version of Ekho from OSH Park.


Recording IV-surfaces

The recording interface allows you to record energy environments (represented as IV-surfaces) in real time. At its simplest the record program just serves to pipe data (specifically: IV-pairs) from the Teensy to the desktop. The bulk of the remaining code is concerned with converting sets of IV-pairs to IV-curves (using simple polynomial regression) and saving them to a file, and then finally rendering the result in near-real time with OpenGL. The generated files can be analyzed, or emulated at a later date. For more information on how recording works, and the novel techniques we use to explore an IV-surface, check the paper..

Desktop

image To record an IV-surface with the desktop version of Ekho, first load the firmware on the Teensy:

  1. Flash the Teensy 3.1 with the firmware/record/EkhoRecord_t3.ino image using the Arduino application.

  2. Connect the Teensy 3.1, the digital potentiometer / rheostat (synthetic load) and the Analog-front end as shown above.

  3. Connect jumpers JP4 and the left side of JP1 for replay path.

  4. Disconnect the jumper across JP14 (near the "CONNECT FOR EMULATE" silkscreen)

  5. Set the gain on the Analog-front-end

  6. Connect the harvester you want to record to Ekho (HARV(DC) pins).

  7. Build the surface_render executable

    $ cd software/record 
    $ make record
    
  8. Run the executable, supplying the port of the connected Teensy 3.1. The surface will be written to a file named surface.raw in the same directory. The surface will be rendered as it is captured using OpenGL. Don't forget to excite the harvester so you can see the surface (for example, if recording a solar panel, shine a light on the panel).

Mobile

For the mobile version, the raw data can be taken from the micro SD card, or piped from the Teensy in the same way as the desktop version. The Ekho Mobile Front End board functions as a daughter board that sits on top (ot below) the Teensy.

Piping the pairs to the desktop via USB is shown here.

  1. Flash the Teensy with the firmware/record/EkhoRecordMobile_t3.ino program.

  2. Connect the harvester you want to record to the GND and H+ pins on the Ekho board (refer to the silkscreen). Ekho only supports DC harvester inputs.

  3. Attach the Mobile Analog Front-End-Board to the Teensy.

  4. Build the surface_render executable

    $ cd software/record 
    $ make record
    
  5. Run the executable, supplying the port of the connected Teensy 3.1. The surface will be written to a file named surface.raw in the same directory. The surface will be rendered as it is captured using OpenGL. Don't forget to excite the harvester so you can see the surface (for example, if recording a solar panel, shine a light on the panel).

Replaying IV-surfaces

image Emulating allows the user to realistically and repeatably test different software, and hardware configurations in an energy harvesting environment. For more information on how emulation works, and accuracy measures check out the paper.

  1. Flash a Teensy 3.1 with the firmware/emulate/EkhoEmulate_t3.ino image using the Arduino application.

  2. Flash a seoncd Teensy 3.1 with the firmware/emulate/EkhoDAQ_t3.ino image using the Arduino application.

  3. Connect the jumper across JP14 (near the "CONNECT FOR EMULATE" silkscreen)

  4. Connect jumpers JP4 and the left side of JP1 for replay path.

  5. Set the gain on the Analog-front-end

  6. Connect both Teensy 3.1's, the device under test, and the Analog-front end as shown above.

  7. Build the emulate_render executable

    $ cd software/emulate 
    $ make emulate
    
  8. Run the executable, supplying both ports of the connected Teensy 3.1. The surface will be read from a file named surface.raw in the same directory. The surface will be rendered with a trace showing the execution path across the IV-surface as it is captured using OpenGL.

Note that the OpenGL rendering is somewhat uneccessary with emulate, you can conduct emulate without the rendering and with only one Teensy 3.1 with slight modifications to the code. This simplifies the experimental setup. Post an issue here if you require more info on how to do this

License

We use the CRAPL License for all things Ekho. The basic idea is we are not responsible for the code "working" nor do we provide warranties. This is research quality code (which means lots of hacks). Everything including hardware is provided as-is.

Contact Us

About

Ekho: Realistic and Repeatable Experimentation for Tiny Energy-Harvesting Sensors

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published