Grove Gsr Sensor
Rs. 737.00 Rs. 907.00
- Brand: https://wiki.seeedstudio.com/Grove-GSR_Sensor/
- Product Code: SEN-BIOMEDICAL
- SKU -
- Availability: In Stock
- Price in reward points: 13
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-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
https://wiki.seeedstudio.com/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