const int potin=34;
int potvalue=0;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
potvalue=analogRead(potin);
Serial.println(potvalue);
delay(10);
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}