2nd Prototype: 5 LEDs 1m-6m wiring.

Note: sensor needs tuning. Light seems to be going on and off randomly, but really is just picking up LOW-phases shorter than a given time and there for sometimes not sending signal when nothing is happening.
This is the code im using now:
*/
int ledPin = 13; // choose the pin for the LED
int inPin = 2; // choose the input pin (for a pushbutton)
int val = 0; // variable for reading the pin status
void setup() {
pinMode(ledPin, OUTPUT); // declare LED as output
pinMode(inPin, INPUT); // declare motion detector as input
}
void loop(){
val = digitalRead(inPin); // read input value
if (val == HIGH) { // check if the input is LOW (sense motion)
digitalWrite(ledPin, LOW); // turn LED OFF
} else {
digitalWrite(ledPin, HIGH); // turn LED ON
}
}
Next step: Codes















































