//Code mit Erklärung Poti
// https://esp32io.com/tutorials/esp32-potentiometer
int analogPin = 26;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Analog Read");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
int analogValue = analogRead(analogPin);
Serial.println(analogValue);
delay(500);
}