
Base Lampara Led Arduino Uno Sensor Pir
thingiverse
Join with http://www.thingiverse.com/thing:27903, a structure for placing an LED lamp capable of operating only when the PIR sensor detects something. Arduino Uno code: byte sensorpir = 7; byte led = 13; void setup() { pinMode(sensorpir, INPUT); pinMode(led, OUTPUT); Serial.begin(9600); } void loop() { if(digitalRead(sensorpir) == HIGH) { Serial.println("Movement detected by the PIR sensor"); digitalWrite(led, HIGH); delay(1000); digitalWrite(led, LOW); } } Connect the sensor to pin 7 and the LED to pin 13 and GND, avoiding using a resistor since the board itself doesn't need one in pin 13. Post-Printing
With this file you will be able to print Base Lampara Led Arduino Uno Sensor Pir with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Base Lampara Led Arduino Uno Sensor Pir.