test publish

Dependencies:   mbed GroveEarbudSensor

GSRSensor.h

Committer:
age2pierre
Date:
2016-04-14
Revision:
13:879d678baf64
Parent:
10:af58557a4d6c

File content as of revision 13:879d678baf64:

#ifndef _GSR_SENSOR_H_
#define _GSR_SENSOR_H_

#include <mbed.h>

class GSRSensor{
public :
    GSRSensor(AnalogIn *pin);
    float getGSRValue();
private :
    AnalogIn *input;
    
};

#endif