test publish

Dependencies:   mbed GroveEarbudSensor

GSRSensor.cpp

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

File content as of revision 10:af58557a4d6c:

#include "GSRSensor.h"

GSRSensor::GSRSensor(AnalogIn *pin){
    input = pin;    
}

float GSRSensor::getGSRValue(){
    return input->read();
}