Proximity Sensor via Ultrasonic Sonar Module: Difference between revisions

From Iskomunidad
No edit summary
No edit summary
Line 7: Line 7:


I. '''OBJECTIVES'''
I. '''OBJECTIVES'''
* To make an Arduino based Proximity sensor via Ultrasonic Sonar module
* To make an Arduino based Proximity sensor via Ultrasonic Sonar module
* To simulate effectiveness by varying distances
* To simulate effectiveness by varying distances
Line 15: Line 17:


II. '''MATERIALS & COMPONENTS'''
II. '''MATERIALS & COMPONENTS'''


* Arduino micro/ Arduino UNO
* Arduino micro/ Arduino UNO
Line 56: Line 59:


III. '''PROCEDURES'''
III. '''PROCEDURES'''


1. Prepare all the materials.
1. Prepare all the materials.
Line 88: Line 92:


IV. '''SIMULATION'''
IV. '''SIMULATION'''
As soon as you upload the code on the arduino, it will take seconds for the sensor to be working efficiently.
* When something is greater than 3 meter range, the LEDs will not light up.
[[File:FinalTest1.jpg|300px]]
* When something is within the range of 2.51 to 3 meters, the GREEN light will turn on.
[[File:FinalTest2.jpg|300px]]
* When something is within the range of 2.1 to 2.5 meters, the GREEN light and one YELLOW light will light up.
[[File:FinalTest3.jpg|300px]]
* When something is within the range of 1.51 to 2 meters, the GREEN light, and the 2 YELLOW lights will light up.
[[File:FinalTest4.jpg|300px]]
* When something is within the range of 1.1 to 1.5 meters, the GREEN light, the 2 YELLOW lights and one RED light will light up.
[[File:FinalTest5.jpg|300px]]
* When something is very near and within the range of 0 to 1 meter, ALL LEDs will light up.
[[File:FinalTest6.jpg|300px]]




Line 96: Line 135:




[[File:Final1.jpg|400px]]


----


VI. '''REFERENCES'''
[[File:Final2.jpg|400px]]




[[Category:DILC Projects]]
[[Category:DILC Projects]]

Revision as of 10:02, 22 April 2014


Part of the Sensors and Controls Project, this Arduino micro-based Proximity Sensor integrates of an Ultrasonic Sonar module. With this, one can easily monitor if there's someone near or around a specific area, say, room, door, gate.



I. OBJECTIVES


  • To make an Arduino based Proximity sensor via Ultrasonic Sonar module
  • To simulate effectiveness by varying distances



II. MATERIALS & COMPONENTS


  • Arduino micro/ Arduino UNO


  • Ultrasonic Sonar Module (US-100)


  • Jumper wires


  • 5 (Light Emitting Diodes) LEDs


  • 6 330K ohms Resistors


  • Piezo Buzzer


  • Computer (with Arduino 1.0.5 Software)




III. PROCEDURES


1. Prepare all the materials.


2. Put the corresponding components onto the breadboard. Make sure that the pins of the components are properly put to ensure the efficiency of the circuit.


3. There are 5 pins of the US-100. From the back facing yourself, the 2 pins form the left are GROUND. The third pin from the left is the ECHO, followed by the TRIGGER and lastly, the rightmost one, the VCC or the power.


4. Connect the TRIGGER pin to Pin 6 of the Arduino. Connect the ECHO pin to Pin 7 of the Arduino. Make a connection between the 2 GROUND pins and connect it to GROUND pin of the Arduino. Also connect the VCC or power to the 5V pin of the Arduino.


5. For the indication purposes, you will connect 3 LEDs and a small buzzer. The GROUND pins of the LEDs and piezo buzzer will be connected to the GROUND pin of the US-100. The ANODE pins of LED1 to pin 8, LED2 to pin 9, LED3 to pin 10, LED4 to pin11 and LED5 to pin12.


6. Have the code for the given circuit, use the Arduino 1.0.5 to program the operation of the circuit. See the code below and just copy and paste it on the Arduino 1.0.5.

File:Code for Proximity.pdf


7. Verify the code that you program. As it was verified, upload the code to the arduino and you can now test the capabilities of the proximity sensor.



IV. SIMULATION


As soon as you upload the code on the arduino, it will take seconds for the sensor to be working efficiently.


  • When something is greater than 3 meter range, the LEDs will not light up.


  • When something is within the range of 2.51 to 3 meters, the GREEN light will turn on.


  • When something is within the range of 2.1 to 2.5 meters, the GREEN light and one YELLOW light will light up.


  • When something is within the range of 1.51 to 2 meters, the GREEN light, and the 2 YELLOW lights will light up.


  • When something is within the range of 1.1 to 1.5 meters, the GREEN light, the 2 YELLOW lights and one RED light will light up.


  • When something is very near and within the range of 0 to 1 meter, ALL LEDs will light up.




V. OTHER PHOTOS