MAX 471 voltage sensor, I can't get accurate result

@speed57 like this, see first 2 lines of the timed function:

  void PowerMeter() 
{
  int vt_read = analogRead(VT_PIN);
  float voltage = vt_read * (3.2 / 1024.0) * 5.0;  
  Blynk.virtualWrite(V1, voltage);
  terminal.println("Volts: "); 
  terminal.flush();
  terminal.println(voltage, 3);
  terminal.flush();
  Serial.print("Volts: "); 
  Serial.print(voltage, 3);  
}

@Costas working like a charm thanks to you :+1:

can you give me the wiring of that sensor with arduino uno and aa battery?