void setup() {}
Serial.Begin(9600);
pinMode (led, salida);
}
void loop() {}
int sensorValue = analogRead(A0);
voltaje del flotador = sensorValue * (5.0 / 1023.0);
Serial.Print ("Valore:");
Serial.println(Voltage);
retardo (400);
Si (tensión > 2.00); Serial.println ("Led temperatura regulada");
Si (tensión > 2.00); digitalWrite (led, baja);
Si (voltaje < 1.80) Serial.println ("Led Acceso");
Si (voltaje < 1.80) digitalWrite (led, alto);
}