obstacles detector
Arduino UNO×1USB-A to Mini-USB Cable×1Breadboard (generic)×1Buzzer×1
ABOUT THIS PROJECT
This is tutorial to help you understand ultrasonic and buzzer and go deeper into learning Arduino, follow these steps and give me feedback please.
I'm making it to help my cousin in his school project.
Step 1: Prepare your material and tools
PREVIOUS
NEXT
1
2
3
4
5
1. Test Board
2. Ultrasonic sensor
3. Arduino cable
4. +5V buzzer
5. Male to male pins
6. Arduino uno board
Tools and materials are shown in the pictures.
Step 2: Connect your circuit
PREVIOUS
NEXT
1
2
Connect the Buzzer positive terminal to the Arduino pin 2 and the negative terminal to the Gnd. Connect the VCC pin of ultrasonic to +5v pin and the Gnd to the ground.
Connect trig pin to pin 10 and echo pin to pin 9.
The pictures shows you the connection.
Step 3: Load the code to your Arduino
PREVIOUS
NEXT
1
2
You can find code in codebender.cc here, it is well described and commented. This is copy of the code any way.
/*
This code should work to get warning cross the buzzer when something be closer than 0.5 meter
Circuit is ultrasonic sensor and buzzer +5v and Arduino uno is used
a_atef45@yahoo.com
www.zerosnones.net
+201153300223
*/ // Define pins for ultrasonic and buzzer int const trigPin = 10; int const echoPin = 9; int const buzzPin = 2; void setup() { pinMode(trigPin, OUTPUT); // trig pin will have pulses output pinMode(echoPin, INPUT); // echo pin should be input to get pulse width pinMode(buzzPin, OUTPUT); // buzz pin is output to control buzzering } void loop() { // Duration will be the input pulse width and distance will be the distance to the obstacle in centimeters int duration, distance; // Output pulse with 1ms width on trigPin digitalWrite(trigPin, HIGH); delay(1); digitalWrite(trigPin, LOW); // Measure the pulse input in echo pin duration = pulseIn(echoPin, HIGH); // Distance is half the duration devided by 29.1 (from datasheet) distance = (duration/2) / 29.1; // if distance less than 0.5 meter and more than 0 (0 or less means over range) if (distance <= 50 && distance >= 0) { // Buzz digitalWrite(buzzPin, HIGH); } else { // Don't buzz digitalWrite(buzzPin, LOW); } // Waiting 60 ms won't hurt any one delay(60); }
this is my project about which i wanted to make please support.
obstacles detector
- Comments(0)
- Likes(0)
- 0 USER VOTES
- YOUR VOTE 0.00 0.00
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
More by shiva sai teja
-
-
-
3D printed Enclosure Backplate for Riden RD60xx power supplies
56 0 0 -
-
-
-
Sega Master System RGB Encoder Switcher Z80 QSB v1.2
57 0 0 -
18650 2S2P Battery Charger, Protection and 5V Output Board
78 0 0 -
High Precision Thermal Imager + Infrared Thermometer | OpenTemp
422 0 6 -
Sony PlayStation Multi Output Frequency Oscillator (MOFO) v1
129 0 2