Wish List 0

Grove Gsr Sensor

Rs. 737.00 Rs. 907.00

-GSR stands for galvanic skin response, is a technique of measuring the electrical conductance of the pores and skin.
-Strong emotion can purpose stimulus to your sympathetic fearful device, resulting greater sweat being secreted through the sweat glands.

SPECIFICATIONS:
Operating voltage         3.3V/5V
Sensitivity               Adjustable via a potentiometer
Input Signal              Resistance, NOT Conductivity
Output Signal             Voltage, analog reading
Finger contact material   Nickel

OVERVIEW:

-Detects conductance of skin

-Finger Straps for electrodes

PACKAGE INCLUDES:

1 PCS x Grove Gsr Sensor


//SOURCE CODE TAKEN FORM BELOW LINK

//https://wiki.seeedstudio.com/Grove-GSR_Sensor/

const int GSR=A0;

int sensorValue=0;

int gsr_average=0;

 

void setup(){

  Serial.begin(9600);

}

 

void loop(){

  long sum=0;

  for(int i=0;i<10;i++)           //Average the 10 measurements to remove the glitch

      {

      sensorValue=analogRead(GSR);

      sum += sensorValue;

      delay(5);

      }

   gsr_average = sum/10;

   Serial.println(gsr_average);

}

15 days

Write a review

Please login or register to review