void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
int val = analogRead(A0);
float volt = val*5.0/1023;
Serial.println(volt);
delay(500);
}