Bird
0
0
Arduinoprogramming~5 mins

PIR motion sensor in Arduino - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does a PIR motion sensor detect?
A PIR (Passive Infrared) motion sensor detects changes in infrared radiation, which usually means it senses movement of warm objects like humans or animals.
Click to reveal answer
beginner
How do you connect a PIR sensor to an Arduino?
Connect the PIR sensor's VCC pin to 5V on Arduino, GND to ground, and the output pin to a digital input pin on the Arduino (e.g., pin 2).
Click to reveal answer
beginner
What Arduino function reads the PIR sensor output?
Use the digitalRead() function on the Arduino pin connected to the PIR sensor output to check if motion is detected (HIGH) or not (LOW).
Click to reveal answer
intermediate
Why is it important to add a delay after detecting motion with a PIR sensor?
Adding a delay helps prevent multiple rapid triggers and gives the sensor time to stabilize before detecting new motion.
Click to reveal answer
beginner
What is the typical output signal of a PIR sensor when motion is detected?
The PIR sensor output goes HIGH (usually 3.3V or 5V) when motion is detected, and LOW when no motion is present.
Click to reveal answer
What type of signal does a PIR sensor output to the Arduino when motion is detected?
ADigital HIGH signal
BAnalog voltage proportional to distance
CPWM signal
DNo signal
Which Arduino function is used to read the PIR sensor's output pin?
ApulseIn()
BanalogRead()
CdigitalWrite()
DdigitalRead()
Why should you add a delay after detecting motion with a PIR sensor?
ATo increase sensor sensitivity
BTo reset the Arduino
CTo prevent multiple rapid triggers
DTo save power
What voltage is typically used to power a PIR sensor with Arduino?
A5V
B3.3V only
C12V
D1.5V
What does PIR stand for in PIR motion sensor?
AProximity Infrared
BPassive Infrared
CPower Infrared
DPulse Infrared
Explain how a PIR motion sensor works with an Arduino to detect movement.
Think about how the sensor senses heat changes and how Arduino reads that.
You got /4 concepts.
    Describe the steps to connect and program a PIR sensor with Arduino for a simple motion detection project.
    Start from wiring, then how to read and respond to sensor signals.
    You got /5 concepts.