Paso 2: código
El siguiente código lee el valor del sensor, imprimir en la conexión en serie y varían la intensidad del LED con PWM, para coincidir con la distancia:
// Declare the used sensor pin <br>int sensorPin = A0; int LED = 11; // Declare the connected LED void setup(){ // Start the Serial connection Serial.begin(9600); } void loop(){ // Read the analog value of the sensor int val = analogRead(A0); // Print the value over Serial Serial.println(val); // Write the value to the LED using PWM analogWrite(LED, val/4); // Wait a little for the data to print delay(100); }