Paso 3: Código!!!!!!
el código es:-
[CÓDIGO /]
#include
LiquidCrystal lcd (7, 6, 5, 4, 3, 2);
int ledpin = 9;
void setup() {}
Serial.Begin(9600);
LCD.Begin (16, 2);
}
void loop() {}
int sensorValue = analogRead(A5);
sensorValue = mapa (sensorValue, 3, 20, 0, 1000);
Si {} (sensorValue > 60)
LCD.Print ("movimiento detectado");
lcd.setCursor(0,1);
LCD.Print(sensorValue);
}
Serial.println(sensorValue);
sensorValue = mapa (sensorValue, 0, 1000, 0, 255);
analogWrite(ledpin,sensorValue);
Delay(50);
LCD.Clear();
}
[/ CODE]