#define potPin 34
void setup() {
Serial.begin(115200);
}
void loop() {
int potValue = analogRead(potPin);
Serial.print("ADC value: ");
Serial.println(potValue);
delay(1000);
}
#define potPin 34
void setup() {
Serial.begin(115200);
}
void loop() {
int potValue = analogRead(potPin);
Serial.print("ADC value: ");
Serial.println(potValue);
delay(1000);
}