Save
...
ict 8
3rd quarter
Passive Infrared Sensor (PIR)
Save
Share
Learn
Content
Leaderboard
Share
Learn
Created by
sophia
Visit profile
Cards (32)
What is the main function of a PIR sensor?
Detects motion by sensing
infrared radiation
View source
How does a PIR sensor detect motion?
By sensing changes in
infrared radiation
View source
What can you trigger with a PIR sensor?
Events like turning on an
LED
View source
What does "passive" mean in the context of a PIR sensor?
It does not emit
energy
View source
What type of radiation does a PIR sensor detect?
Infrared
radiation
View source
What is near infrared (NIR) used for?
Enabling
light
and remote controls
View source
What is far infrared (FIR) associated with?
Thermal radiation
from
hot objects
View source
What is a common application of PIR sensors?
Security
and automation systems
View source
What is the role of a pyroelectric sensor in a PIR?
It detects
infrared
radiation changes
View source
What happens when there is no infrared radiation detected?
The two
signals
are equal and opposite
View source
What occurs when there is a temperature change detected by a PIR sensor?
It causes
signal changes
and charge redistribution
View source
What does the electrical difference in charge create?
An
output signal
View source
What are the materials needed to configure a PIR sensor?
Arduino board
, PIR sensor module, jumper wires
View source
What does the GND pin on a PIR sensor connect to?
Ground connection
View source
What voltage does the VCC pin of a PIR sensor require?
5V
power
View source
What does the OUT pin of a PIR sensor indicate?
High when motion is
detected
View source
How do you connect the GND pin of the PIR sensor?
To the GND pin on the
Arduino
board
View source
Which digital pin can the OUT pin of the PIR sensor connect to?
Digital pin
D2
on the
Arduino
board
View source
What does "int" represent in variable declaration?
It represents a
numeric
value
View source
What does the void setup() function do?
Runs once after the
void loop()
has executed
View source
What is the purpose of the Serial.begin() function?
To initiate
serial communication
View source
What does digitalRead() do?
Checks the
state
of a
digital pin
View source
What does Serial.println() do?
Sends data to the
serial monitor
View source
What components are needed for the PIR with LED circuit design?
USB cable
, LED,
220-ohm
resistor
View source
What does digitalWrite(2, HIGH) do?
Sets
pin
2 to HIGH state
View source
What is the purpose of the piezo buzzer in the circuit design?
To produce sound based on
motion detection
View source
What are the steps to configure a PIR sensor with an Arduino?
Connect
GND
pin to Arduino GND
Connect
VCC
pin to Arduino 5V
Connect
OUT
pin to a digital pin (e.g., D2)
View source
What are the key coding functions used in the PIR sensor program?
void
setup()
: Initializes the program
digitalRead()
: Checks digital pin state
Serial.println()
: Sends data to serial monitor
View source
What are the components needed for the PIR with LED circuit?
Arduino board
PIR sensor module
LED
220-ohm resistor
USB cable
Jumper wires
View source
What are the components needed for the PIR with piezo buzzer circuit?
Arduino board
PIR sensor module
Piezo buzzer
Jumper wires
USB cable
View source
What are the differences between near infrared (NIR) and far infrared (FIR)?
NIR: Used for light and remote controls
FIR: Associated with
thermal radiation
from hot objects
View source
What are the strengths and weaknesses of using PIR sensors?
Strengths:
Cost-effective
Low power consumption
Reliable motion detection
Weaknesses:
Limited
range
Sensitivity to
environmental changes
View source