dear sir,
i am using pt100 with Wheatstone bridge circuit to measure the change in resistance. my input voltage to the Wheatstone bridge circuit is 5v from arduino. the output voltage at 33 degree Celsius is 0.19 to 0.20v. i can't measure the this voltage with arduino uno. and my Wheatstone bridge is balanced properly.
i haven't added any amplifier. i have connected the Wheatstone bridge circuit directly with arduino
i have attached my code here...
please reply me soon ... i am in need of this very urgently
int in_pin = A0;
void setup()
{
Serial.begin(9600);
}
void loop(0
{
int val = analogRead(in_pin);
double voltage = (5.0 / 1204.0) * val;
Serial.println(voltage);
delay(500);
}