test publish

Dependencies:   mbed GroveEarbudSensor

GSRSensor.cpp

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

File content as of revision 13:879d678baf64:

#include "GSRSensor.h"

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

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