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?
✗ Incorrect
The PIR sensor outputs a digital HIGH signal when it detects motion.
Which Arduino function is used to read the PIR sensor's output pin?
✗ Incorrect
digitalRead() reads the digital signal from the PIR sensor output pin.
Why should you add a delay after detecting motion with a PIR sensor?
✗ Incorrect
Adding a delay prevents multiple rapid triggers and allows the sensor to stabilize.
What voltage is typically used to power a PIR sensor with Arduino?
✗ Incorrect
Most PIR sensors work well with 5V power from the Arduino.
What does PIR stand for in PIR motion sensor?
✗ Incorrect
PIR stands for Passive Infrared, meaning it detects infrared radiation passively.
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.
