Need help on Galvanic Skin Response (GSR) Sensor processing code .

edited July 2014 in Arduino

I have this arduino's Code .. and I need the code of processing

#include <eHealth.h> 

// the setup routine runs once when you press reset:
void setup() {
  Serial.begin(9600);       
}

// the loop routine runs over and over again forever:
void loop() {

  float conductance = eHealth.getSkinConductance();  
  float resistance = eHealth.getSkinResistance();  
  float conductanceVol = eHealth.getSkinConductanceVoltage(); 

  Serial.print("Conductance : ");      //Leitfähigkeit 
  Serial.print(conductance, 2);  
  Serial.println("");         

  Serial.print("Resistance : ");      //Widerstandsfähigkeit-bewegung 
  Serial.print(resistance, 2);  
  Serial.println("");    

  Serial.print("Conductance Voltage : ");       //Voltzahl der Leitwert
  Serial.print(conductanceVol, 4);  
  Serial.println("");

  Serial.print("\n");  


  // wait for a second  
  delay(300);       // Verzögerungszeit  in [ms]    
}
Sign In or Register to comment.