Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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();
}
