#define inputPin A0
int value;
void setup() {
// put your setup code here, to run once:
pinMode(inputPin, INPUT);
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
value = analogRead(inputPin);
Serial.println(value);
delay(20);
}