#define INPUT_PIN 34
int value;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
delay(200);
}
void loop() {
// put your main code here, to run repeatedly:
value = analogRead(INPUT_PIN);
Serial.print("Value: ");
Serial.print(value);
delay(5000);
}