Hi,
I am using Ad8232 sensor and we get the data As (0-1024) values on the serial monitor screen of the Arduino,
and I would like kindly to know what is the correlation between this output (0-1024) and the raw data that comes out of the sensor (in milli or micro volt )
Here I attached the data sheet and the code
Waiting for your kind answer
oid setup() {
// initialize the serial communication:
Serial.begin(9600);
pinMode(10, INPUT); // Setup for leads off detection LO +
pinMode(11, INPUT); // Setup for leads off detection LO -
}
void loop() {
if((digitalRead(10) == 1)||(digitalRead(11) == 1)){
Serial.println('!');
}
else{
// send the value of analog input 0:
Serial.println(analogRead(A0));
}
//Wait for a bit to keep serial data from saturating
delay(17);
}
http://www.analog.com/media/en/technical-documentation/data-sheets/AD8232.pdf
//Power Supply 3.3v
//OUTPUT Output Signal A0