upm  0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
Public Member Functions

C++ API for the GroveGSR Galvanic Skin Response Sensor. More...

Detailed Description

Measure the electrical conductance of skin in order to measure strong emotional reaction. In other words, it measures sweat on your fingers as an indicator of strong emotional reactions.

// The was tested with the GroveGSR Galvanic Skin Response Sensor module.
// Instantiate a GroveGSR on analog pin A0
cout << "Calibrating...." << endl;
gsr->calibrate();
while (shouldRun)
{
cout << gsr->value() << endl;
usleep(500000);
}

Public Member Functions

 GroveGSR (int pin)
 
 ~GroveGSR ()
 
void calibrate ()
 
int value ()
 

Constructor & Destructor Documentation

GroveGSR ( int  pin)

GroveGSR sensor constructor

Parameters
pinanalog pin to use
~GroveGSR ( )

GroveGSR Destructor

Member Function Documentation

void calibrate ( )

Calibrate the GroveGSR Sensor

int value ( )

Measure the electrical conductance of the skin from the sensor

Returns
the electrical conductance of the skin

The documentation for this class was generated from the following files: