ad8232: Initial Implementation

This driver implements support for the Sparkfun Single Lead Heart Rate
Monitor, based on the AD8232 chip.

It simply outputs ADC data that needs to be sent somewhere for
plotting.  The Sparkfun page has some suggestions.

Alternatively, if you have an oscilliscope that supports a 'Roll'
mode, you can get an EKG-like display by measuring the OUT pin.

https://www.sparkfun.com/products/12650

Signed-off-by: Jon Trulson <jtrulson@ics.com>
Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com>
This commit is contained in:
Jon Trulson
2015-05-20 12:07:08 -06:00
committed by Mihai Tudor Panu
parent c8d0aee873
commit 517f6c1e88
9 changed files with 351 additions and 0 deletions

View File

@ -0,0 +1,9 @@
%module pyupm_ad8232
%include "../upm.i"
%feature("autodoc", "3");
%include "ad8232.h"
%{
#include "ad8232.h"
%}