test publish

Dependencies:   mbed GroveEarbudSensor

GSRSensor.h

Committer:
antoineA
Date:
2016-04-11
Revision:
10:af58557a4d6c

File content as of revision 10:af58557a4d6c:

#ifndef _GSR_SENSOR_H_
#define _GSR_SENSOR_H_

#include <mbed.h>

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

#endif