const int analogPin = A0;
float widerstandMessung = 1000;
void setup() {
// put your setup code here, to run once:
}
void loop() {
float Sensor = analogRead(analogPin);
float spannung = Sensor * (5.0 / 1023.0);
float widerstand = (widerstandMessung);
}