#define POT_PIN 34
void setup() {
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
int value = analogRead(POT_PIN);
Serial.println(value);
delay(300); // this speeds up the simulation
}
#define POT_PIN 34
void setup() {
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
int value = analogRead(POT_PIN);
Serial.println(value);
delay(300); // this speeds up the simulation
}