SlideShare ist ein Scribd-Unternehmen logo
1 von 41
SENSORS
A sensor is a device that measures a physical quantity and converts it
into a signal which can be read by an observer or by an instrument.
Sensors are used in everyday objects such as touch sensitive elevator
buttons and lamps which dims or brighten the light by touching the
base.
Applications can includes cars, machines, aerospace, medicine,
manufacturing and robotics.
PIR SENSOR
Operating principle:
• All objects with a temperature above absolute zero emit heat
energy in the form of radiation.
• Usually this radiation is invisible to the human eye because it
radiates at infrared wavelengths, but it can be detected by electronic
devices designed for such a purpose.
 The term passive in this instance refers to the fact that PIR
devices do not generate or radiate any energy for
detection purposes.
 They work entirely by detecting the energy given off by
other objects. PIR sensors don't detect or measure "heat";
instead they detect the infrared radiation emitted or
reflected from an object.
 Infrared radiation exists in the electromagnetic
spectrum at a wavelength that is longer than visible
light.
 It cannot be seen but it can be detected.
 Objects that generate heat also generate infrared
radiation and those objects include animals and the
human body whose radiation is strongest at a
wavelength of 9.4μm.
 Infrared in this range will not pass through many types
of material that pass visible light such as ordinary
window glass and plastic
.
However it will pass through, with some attenuation,
material that is opaque to visible light such as
germanium and silicon.
An unprocessed silicon wafer makes a good IR
window, It provides additional filtering for light in the
visible range. 9.4μm infrared will also pass through
polyethylene which is usually used to make Fresnel
lenses to focus the infrared onto sensor elements.
 This sensor is made of a crystalline material(also known as sensor element)
that generates a surface electric charge when exposed to heat in the form
of infrared radiation.
 When the amount of radiation striking the crystal changes, the amount of
charge also changes. The sensor elements are sensitive to radiation over a
wide range so a filter window is added to limit detectable radiation to the 8
to 14μm range which is most sensitive to human body radiation.
 Typically, the FET source terminal pin 2 connects through a pull down
resistor of about 100 K to ground and feeds into a two stage amplifier
having signal conditioning circuits.
 The amplifier is typically bandwidth limited to below 10Hz to reject high
frequency noise and is followed by a window comparator that responds to
both the positive and negative transitions of the sensor output signal.
 The PIR325 sensor has two sensing elements connected in a voltage
bucking configuration. This arrangement cancels signals caused by
 A body passing in front of the sensor will activate first
one element
and then the other, whereas other sources will affect both
elements simultaneously and be cancelled.
 Fresnel lens is made of an infrared transmitting
material design to focused an infrared radiation onto
sensor element as can be shown below
SPECIFICATION OF PIR 325
SENSOR
Applications
 Automatic lighting system
 Security system
 Smart Floodlights
 Burglar Alarm
and many more
What do we mean by ‘Intelligent
lighting’?
Compared with a conventional lighting system, a
system where every light has a manual switch or
dimmer that you must operate directly, ‘Intelligent
lighting’ can be as simple as automating a single
light, so that it can be controlled by a
remote control device or timer.
Why do we need Intelligent lighting system?
19% of energy use in the world is used for lighting, and 6% of
greenhouse emissions in the world derive from this energy used for
lighting
 Intelligent lightning is the good way which enables to minimize and
save light by allowing the householder to control remotely cooling
and heating, lighting, and the control of appliances. This ability saves
energy and provides a level of comfort and convenience.
 The concept of Intelligent lighting also involves utilizing natural light
from the sun to reduce the use of man-made lighting.
 Lighting control systems serve to provide the right amount of light
where and when it is needed.
Daylight Dimming
 Daylight Diming controls the artificial light
depending on the available daylight.
When enough daylight is available, the
artificial light dims down according to how
much light is available.
 With the common light fitting , Photo
sensor elements are integrated in the
ceiling.
Applications
• Office- In offices, we can use day dimmer instead of operating
switches multiple times in a day.
Applications
• Street light- We can use day dimmer in street lighting to automatically
dim the light in early hours.
Occupancy sensors
 Occupancy sensors / presence detectors are a
special type of motion sensors. It automatically
turns lights on when a room is occupied and off
when a room is vacant.
 They are specifically designed to pick up small
movements in demanding applications such as
tunnels.
Methods of intelligent lighting
Applications
• Long corridors – Motion sensors can be used.
Applications
• In staircase,
Applications
• Security purpose
Methods of intelligent lighting
Wireless lighting
In Wireless control system, all lamps are connected in a wireless
network allowing them to be controlled from remote controls, wall
switches or internet connected devices.
PIR sensor with Arduino in Tinkercad
PIR sensor with Arduino in Tinkercad
APPLICATION
AUTOMATIC LIGHTING
PIR sensor with Arduino in Tinkercad
APPLICATION
CODE FOR AUTOMATIC LIGHTING AND SERVO
MOTOR
#include<Servo.h>
Servo myservo;
int led=6;//Arduino pin connected to LED
int pir=2;//Arduino pin connected to motion sensor's pin
void setup()
{
pinMode(pir,INPUT);//set arduino pin to input mode
pinMode(led,OUTPUT);// set arduino pin to output mode
myservo.attach(9);// attaches the servo on pin 9 to the servo object
Serial.begin(9600);//initialise the serial
}
void loop()
{
int val= digitalRead(pir);
Serial.println(val);
if(digitalRead(pir)== HIGH)
{
digitalWrite(led,HIGH);
myservo.write(70);
}
else
{
digitalWrite(led,LOW);
myservo.write(10);
A Tilt Sensor switch is an electronic device that detects
the orientation of an object and gives its output High or Low
accordingly. Basically, it has a mercury ball inside it which
moves and makes the circuit. So tilt sensor can turn on or
off the circuit based on the orientation.
Tilt Sensor
This is a Mercury switch based tilt sensor module that gives high at
its output pin when tilted. It requires a 5V of DC input.
It’s a three-terminal device consist of input, ground, and output.
It has a glass tube consist of two electrode and liquid mercury ball.
The liquid mercury ball closes and opens the circuit when inclined
in a particular direction.
The working and internal structure of the module is given below:
Tilt Sensor
Working of Tilt Sensor
CASE 1: NOT TILTED
Initially, when it is in NOT tilted position as shown in the image
below, it gives LOW output because of the liquid mercury
complete the circuit by connecting the two electrodes. When
the output is LOW on-board LED remain ON.
CASE 1: TILTED
When it is inclined in a particular direction or angle, the liquid mercury
breaks the contact between the metal electrodes and the circuit gets
open. Hence, we get HIGH output in this condition and the onboard
LED turns off.
Applications of Tilt Sensors
•Cameras.
•Video Cameras.
•Aircraft Flight Controls.
•Construction Equipment.
•Robotic Technology.
•Automobile Air Bags.
•Videos Game Controllers.
•Studying Human Movement.
To connect a Tilt sensor with the Arduino, it requires 5v dc
input to operate. That 5v is supplied using Arduino UNO and the
output of Tilt sensor is taken at PIN 4 of the Arduino. LED is
connected with the PIN 2 of the Arduino UNO with 220-ohm
resistor to limit the current to a safe value. And, the buzzer is
directly connected to the PIN 3 of the Arduino UNO.

Weitere ähnliche Inhalte

Was ist angesagt?

motion sensing technology
motion sensing technologymotion sensing technology
motion sensing technology
Santosh Kumar
 
Human body temperature sensed automatic door opening system
Human body temperature sensed automatic door opening systemHuman body temperature sensed automatic door opening system
Human body temperature sensed automatic door opening system
Bhumika PATEL
 

Was ist angesagt? (20)

Sensors
SensorsSensors
Sensors
 
Sensors
SensorsSensors
Sensors
 
Sensor technology
Sensor technologySensor technology
Sensor technology
 
motion sensing technology
motion sensing technologymotion sensing technology
motion sensing technology
 
Pir sensor based security alarm system using um 3561 (2)
Pir sensor based security alarm system using um 3561 (2)Pir sensor based security alarm system using um 3561 (2)
Pir sensor based security alarm system using um 3561 (2)
 
Sensors and its types
Sensors and its typesSensors and its types
Sensors and its types
 
Smart street light system
Smart street light systemSmart street light system
Smart street light system
 
Home automation using IoT
Home automation using IoTHome automation using IoT
Home automation using IoT
 
Sensor of smoke
Sensor of smokeSensor of smoke
Sensor of smoke
 
Implementation Of GSM Based Fire Alarm and Protection System
Implementation Of GSM Based Fire Alarm and Protection SystemImplementation Of GSM Based Fire Alarm and Protection System
Implementation Of GSM Based Fire Alarm and Protection System
 
Human body temperature sensed automatic door opening system
Human body temperature sensed automatic door opening systemHuman body temperature sensed automatic door opening system
Human body temperature sensed automatic door opening system
 
Sensors by saurabh jawale
Sensors by saurabh jawaleSensors by saurabh jawale
Sensors by saurabh jawale
 
Arduino based intelligent greenhouse Project
Arduino based intelligent greenhouse ProjectArduino based intelligent greenhouse Project
Arduino based intelligent greenhouse Project
 
Different types of sensors
Different types of sensorsDifferent types of sensors
Different types of sensors
 
Smart Sensor
Smart SensorSmart Sensor
Smart Sensor
 
Sensor Technology ppt
Sensor Technology pptSensor Technology ppt
Sensor Technology ppt
 
Smoke Detection System
Smoke Detection SystemSmoke Detection System
Smoke Detection System
 
Working Principals of Various Sensors
Working Principals of Various SensorsWorking Principals of Various Sensors
Working Principals of Various Sensors
 
smart Home security
smart Home securitysmart Home security
smart Home security
 
All Types of sensor in power point presentation
All Types of sensor in power point presentation All Types of sensor in power point presentation
All Types of sensor in power point presentation
 

Ähnlich wie PIR sensors day

Iaetsd ethernet based intelligent security system
Iaetsd ethernet based intelligent security systemIaetsd ethernet based intelligent security system
Iaetsd ethernet based intelligent security system
Iaetsd Iaetsd
 

Ähnlich wie PIR sensors day (20)

AUTOMATIC ROOM LIGHTING SYSTEM.pptx
AUTOMATIC ROOM LIGHTING SYSTEM.pptxAUTOMATIC ROOM LIGHTING SYSTEM.pptx
AUTOMATIC ROOM LIGHTING SYSTEM.pptx
 
Ir sensor mechanism and interfacing with a micro controllers.PPT
Ir sensor mechanism and  interfacing with  a micro controllers.PPTIr sensor mechanism and  interfacing with  a micro controllers.PPT
Ir sensor mechanism and interfacing with a micro controllers.PPT
 
sensor.pptx
sensor.pptxsensor.pptx
sensor.pptx
 
Automatic Room Lights Controller Using Arduino & PIR Sensor
Automatic Room Lights Controller Using Arduino & PIR SensorAutomatic Room Lights Controller Using Arduino & PIR Sensor
Automatic Room Lights Controller Using Arduino & PIR Sensor
 
Home automation
Home automationHome automation
Home automation
 
1693579833307_Sensors.ppt
1693579833307_Sensors.ppt1693579833307_Sensors.ppt
1693579833307_Sensors.ppt
 
Infrared IR Sensor Circuit Diagram and Working Principle
Infrared IR Sensor Circuit Diagram and Working PrincipleInfrared IR Sensor Circuit Diagram and Working Principle
Infrared IR Sensor Circuit Diagram and Working Principle
 
Aplikasi sensor pyroelectric
Aplikasi sensor pyroelectricAplikasi sensor pyroelectric
Aplikasi sensor pyroelectric
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI) International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
 
Automatic road light based on vehicles movement
Automatic road light based on vehicles movementAutomatic road light based on vehicles movement
Automatic road light based on vehicles movement
 
ir sensor.docx
ir sensor.docxir sensor.docx
ir sensor.docx
 
Inclinometer.pptx
Inclinometer.pptxInclinometer.pptx
Inclinometer.pptx
 
IRJET- Intelligent Room Lighting System
IRJET-  	  Intelligent Room Lighting SystemIRJET-  	  Intelligent Room Lighting System
IRJET- Intelligent Room Lighting System
 
Iaetsd ethernet based intelligent security system
Iaetsd ethernet based intelligent security systemIaetsd ethernet based intelligent security system
Iaetsd ethernet based intelligent security system
 
Laser Security System Project report
Laser Security System Project reportLaser Security System Project report
Laser Security System Project report
 
Smart street light detector
Smart street light detectorSmart street light detector
Smart street light detector
 
Automatic Room Light Controller Using Arduinom & PIR Sensor
Automatic Room Light Controller Using Arduinom & PIR SensorAutomatic Room Light Controller Using Arduinom & PIR Sensor
Automatic Room Light Controller Using Arduinom & PIR Sensor
 
Arduino with brief description of sensorsppt.pptx
Arduino with brief description of sensorsppt.pptxArduino with brief description of sensorsppt.pptx
Arduino with brief description of sensorsppt.pptx
 
Lighting sensors and its importance
Lighting sensors and its importanceLighting sensors and its importance
Lighting sensors and its importance
 

Kürzlich hochgeladen

FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
 

Kürzlich hochgeladen (20)

Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 

PIR sensors day

  • 1. SENSORS A sensor is a device that measures a physical quantity and converts it into a signal which can be read by an observer or by an instrument. Sensors are used in everyday objects such as touch sensitive elevator buttons and lamps which dims or brighten the light by touching the base. Applications can includes cars, machines, aerospace, medicine, manufacturing and robotics.
  • 2. PIR SENSOR Operating principle: • All objects with a temperature above absolute zero emit heat energy in the form of radiation. • Usually this radiation is invisible to the human eye because it radiates at infrared wavelengths, but it can be detected by electronic devices designed for such a purpose.
  • 3.  The term passive in this instance refers to the fact that PIR devices do not generate or radiate any energy for detection purposes.  They work entirely by detecting the energy given off by other objects. PIR sensors don't detect or measure "heat"; instead they detect the infrared radiation emitted or reflected from an object.
  • 4.  Infrared radiation exists in the electromagnetic spectrum at a wavelength that is longer than visible light.  It cannot be seen but it can be detected.  Objects that generate heat also generate infrared radiation and those objects include animals and the human body whose radiation is strongest at a wavelength of 9.4μm.  Infrared in this range will not pass through many types of material that pass visible light such as ordinary window glass and plastic .
  • 5. However it will pass through, with some attenuation, material that is opaque to visible light such as germanium and silicon. An unprocessed silicon wafer makes a good IR window, It provides additional filtering for light in the visible range. 9.4μm infrared will also pass through polyethylene which is usually used to make Fresnel lenses to focus the infrared onto sensor elements.
  • 6.  This sensor is made of a crystalline material(also known as sensor element) that generates a surface electric charge when exposed to heat in the form of infrared radiation.  When the amount of radiation striking the crystal changes, the amount of charge also changes. The sensor elements are sensitive to radiation over a wide range so a filter window is added to limit detectable radiation to the 8 to 14μm range which is most sensitive to human body radiation.  Typically, the FET source terminal pin 2 connects through a pull down resistor of about 100 K to ground and feeds into a two stage amplifier having signal conditioning circuits.  The amplifier is typically bandwidth limited to below 10Hz to reject high frequency noise and is followed by a window comparator that responds to both the positive and negative transitions of the sensor output signal.  The PIR325 sensor has two sensing elements connected in a voltage bucking configuration. This arrangement cancels signals caused by
  • 7.  A body passing in front of the sensor will activate first one element and then the other, whereas other sources will affect both elements simultaneously and be cancelled.  Fresnel lens is made of an infrared transmitting material design to focused an infrared radiation onto sensor element as can be shown below
  • 8. SPECIFICATION OF PIR 325 SENSOR
  • 9. Applications  Automatic lighting system  Security system  Smart Floodlights  Burglar Alarm and many more
  • 10. What do we mean by ‘Intelligent lighting’? Compared with a conventional lighting system, a system where every light has a manual switch or dimmer that you must operate directly, ‘Intelligent lighting’ can be as simple as automating a single light, so that it can be controlled by a remote control device or timer.
  • 11. Why do we need Intelligent lighting system? 19% of energy use in the world is used for lighting, and 6% of greenhouse emissions in the world derive from this energy used for lighting  Intelligent lightning is the good way which enables to minimize and save light by allowing the householder to control remotely cooling and heating, lighting, and the control of appliances. This ability saves energy and provides a level of comfort and convenience.  The concept of Intelligent lighting also involves utilizing natural light from the sun to reduce the use of man-made lighting.  Lighting control systems serve to provide the right amount of light where and when it is needed.
  • 12. Daylight Dimming  Daylight Diming controls the artificial light depending on the available daylight. When enough daylight is available, the artificial light dims down according to how much light is available.  With the common light fitting , Photo sensor elements are integrated in the ceiling.
  • 13. Applications • Office- In offices, we can use day dimmer instead of operating switches multiple times in a day.
  • 14. Applications • Street light- We can use day dimmer in street lighting to automatically dim the light in early hours.
  • 15. Occupancy sensors  Occupancy sensors / presence detectors are a special type of motion sensors. It automatically turns lights on when a room is occupied and off when a room is vacant.  They are specifically designed to pick up small movements in demanding applications such as tunnels. Methods of intelligent lighting
  • 16. Applications • Long corridors – Motion sensors can be used.
  • 19. Methods of intelligent lighting Wireless lighting In Wireless control system, all lamps are connected in a wireless network allowing them to be controlled from remote controls, wall switches or internet connected devices.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30. PIR sensor with Arduino in Tinkercad
  • 31. PIR sensor with Arduino in Tinkercad
  • 33. PIR sensor with Arduino in Tinkercad
  • 34. APPLICATION CODE FOR AUTOMATIC LIGHTING AND SERVO MOTOR
  • 35. #include<Servo.h> Servo myservo; int led=6;//Arduino pin connected to LED int pir=2;//Arduino pin connected to motion sensor's pin void setup() { pinMode(pir,INPUT);//set arduino pin to input mode pinMode(led,OUTPUT);// set arduino pin to output mode myservo.attach(9);// attaches the servo on pin 9 to the servo object Serial.begin(9600);//initialise the serial } void loop() { int val= digitalRead(pir); Serial.println(val); if(digitalRead(pir)== HIGH) { digitalWrite(led,HIGH); myservo.write(70); } else { digitalWrite(led,LOW); myservo.write(10);
  • 36. A Tilt Sensor switch is an electronic device that detects the orientation of an object and gives its output High or Low accordingly. Basically, it has a mercury ball inside it which moves and makes the circuit. So tilt sensor can turn on or off the circuit based on the orientation. Tilt Sensor
  • 37. This is a Mercury switch based tilt sensor module that gives high at its output pin when tilted. It requires a 5V of DC input. It’s a three-terminal device consist of input, ground, and output. It has a glass tube consist of two electrode and liquid mercury ball. The liquid mercury ball closes and opens the circuit when inclined in a particular direction. The working and internal structure of the module is given below: Tilt Sensor
  • 38. Working of Tilt Sensor CASE 1: NOT TILTED Initially, when it is in NOT tilted position as shown in the image below, it gives LOW output because of the liquid mercury complete the circuit by connecting the two electrodes. When the output is LOW on-board LED remain ON.
  • 39. CASE 1: TILTED When it is inclined in a particular direction or angle, the liquid mercury breaks the contact between the metal electrodes and the circuit gets open. Hence, we get HIGH output in this condition and the onboard LED turns off.
  • 40. Applications of Tilt Sensors •Cameras. •Video Cameras. •Aircraft Flight Controls. •Construction Equipment. •Robotic Technology. •Automobile Air Bags. •Videos Game Controllers. •Studying Human Movement.
  • 41. To connect a Tilt sensor with the Arduino, it requires 5v dc input to operate. That 5v is supplied using Arduino UNO and the output of Tilt sensor is taken at PIN 4 of the Arduino. LED is connected with the PIN 2 of the Arduino UNO with 220-ohm resistor to limit the current to a safe value. And, the buzzer is directly connected to the PIN 3 of the Arduino UNO.