Hi,
I made a pool ORP regulator based on arduino + phidget 1130 + ORP probe.
My ORP readings are high arount 800mV.
I am applying the owner's manual formula :
First get ADC Value (Arduino is 10bits = 1024 values), Reference Voltage is 5V :
ADC_Value = analogRead(A0) * 5 / 1023.0;
PhidgetORP = ((2.5 - ADC_Value) / 1.037)* 1000;
This formula means that positive ORPs are from 2.5V (ORP=0mV) to 0V (ORP=2000mV)
and Negative ORPs are from 2.5V (ORP=0mV) to 5V (ORP=-2000mV).
Can you please confirm this is the right formula ?
I think I will use LM4040 2.048V voltage reference in order to increase resolution and precision. That shoud allow me to measure ORP from 436mV to 2410mV.