Hi there,
I’m using a ACS711EX Current Sensor on a Photon. I’m getting a reading of around 7 amps which is way out, it should be 50 - 120mA with the loads i have on it. my interpretation of the equation is this
const float VCC=3.34;
int rawCurrent = analogRead(A2);
float cVolts = rawCurrent*VCC/4095;
Amps = (73.3 * (cVolts / VCC) - 36.7);
any idea whether this is correct, and for that matter why the absolute figure of 36.7?
Thanks
Ben








