How to measure sweat using galvanic skin response?

How would i measure sweat using galvanic skin response, i got some sample code online but all it does is measure the movements that i make.

Interesting problem. Looks like your sample code must be more than just measuring the skin DC resistance. What is your circuit and what is you code?

Does this involve two different metals, and if so: which metals?

"Electrodermal activity (EDA)" - theory of physiochemical response in the nervous system to an emotional event. "Sweatin' bullets" without physical exercise.

It's simply the electrical resistance between skin-placed electrodes. You can experiment with it using only a DMM.

all it does is measure the movements that i make

The gizmo is probably measuring a lot of things at once. The trick is to subtract off the parts of the signal that aren't interesting and focus on the part that remains.

If you were to provide details about your setup (links to parts, code, wiring), what you did to test it and examples of the signals you observed, you might get some useful responses.

You need to make your Arduino circuit perform just like the Ohmmeter circuit on your digital volt/Ohmeter. No AC allowed. Add some capacitors to the test leads to bypass any AC voltages.

int sensor = A0;
int sensorValue = 0;

void setup() {
  Serial.begin(9600);

}

void loop() {
  sensorValue = analogRead(sensor);
  sensorValue = map(sensorValue, 0, 1023, 0, 100);
  Serial.println(sensorValue);
  delay(100);

 
}

And your circuit schematic is?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.