
Fast Shipping.
All orders delivered fast

Quality Products.
Products tested for quality

Secure Payments.
Pay online securely with ssl

Customer Support.
We answer all your questions
Dimensions | 32 × 24 cm |
---|
Circuit Connection:
Module Pinouts:
Testing Source Code:
int ledPin = 13; // choose the pin for the LED
int inputPin = 8; // choose the input pin (for PIR sensor)
int pirState = LOW; // we start, assuming no motion detected
int val = 0; // variable for reading the pin status
void setup() {
pinMode(ledPin, OUTPUT); // declare LED as output
pinMode(inputPin, INPUT); // declare sensor as input
Serial.begin(9600);
}
void loop(){
val = digitalRead(inputPin); // read input value
if (val == HIGH) // check if the input is HIGH
{
digitalWrite(ledPin, HIGH); // turn LED ON
if (pirState == LOW)
{
Serial.println("Motion detected!"); // print on output change
pirState = HIGH;
}
}
else
{
digitalWrite(ledPin, LOW); // turn LED OFF
if (pirState == HIGH)
{
Serial.println("Motion ended!"); // print on output change
pirState = LOW;
}
}
}
Only logged in customers who have purchased this product may leave a review.
All orders delivered fast
Products tested for quality
Pay online securely with ssl
We answer all your questions
Official Online Component online store. Get the best quality components for your next project with us.
No account yet?
Create an Account
Reviews
There are no reviews yet.