const int potPin1 = 12;
const int potPin2 = 14;
void setup() {
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
int potValue1 = (analogRead(potPin1));
int potValue2 = (analogRead(potPin2));
Serial.print(potValue1);
Serial.print(",");
Serial.print(potValue2);
Serial.println("");
delay(100); // this speeds up the simulation
}