int potPin = 33;
int potValue;
void setup() {
Serial.begin(115200);
pinMode(potPin, INPUT);
}
void loop() {
potValue = analogRead(potPin);
Serial.println(potValue);
}
int potPin = 33;
int potValue;
void setup() {
Serial.begin(115200);
pinMode(potPin, INPUT);
}
void loop() {
potValue = analogRead(potPin);
Serial.println(potValue);
}