test publish

Dependencies:   mbed GroveEarbudSensor

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers GSRSensor.h Source File

GSRSensor.h

00001 #ifndef _GSR_SENSOR_H_
00002 #define _GSR_SENSOR_H_
00003 
00004 #include <mbed.h>
00005 
00006 class GSRSensor{
00007 public :
00008     GSRSensor(AnalogIn *pin);
00009     float getGSRValue();
00010 private :
00011     AnalogIn *input;
00012     
00013 };
00014 
00015 #endif