const int potPin = 34;
const int led1Pin = 17;
const int led2Pin = 18;
const int led3Pin = 19;
int potValue = 0;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
potValue = analogRead(potPin);
Serial.println(potValue);
delay(500); // this speeds up the simulation
}