Hi everyone,
I got my first Arduino recently, here I am gonna show you my first project which is Distance Measurement using Ultrasonic sensors and Arduino, you can use this project in many applications like:
- Liquid Level
- Object Detection
- Distance Measurement
I think it's an awesome and easy project!
Step 1: Placing electronicsThings you need to build this project:
- Arduino Uno R3 (maga)
- Ultrasonic sensor (model HC-SR04)
- Jumper wires (4pc)
- Breadboard
This step will show you where and how to place the electronics on the breadboard and then connect Arduino. First, place the distance sensor on one end of the breadboard so that all of the pins are connected as shown.
Step 2: Connecting Arduino to sensorThe circuit connections
- VCC connection of the sensor attached to +5V
- GND connection of the sensor attached to ground
- TRIG connection of the sensor attached to digital pin 2
- ECHO connection of the sensor attached to digital pin 4
This step is the code that you need to load onto your arduinoMaterials:Arduino +Breadboard + ElectronicsComputerUSB
cable to connect Arduino & computer (Arduino Environment).
Copy and paste this code into the processing environment. This is the code:
const int trigPin = 2;
const int echoPin = 4;
void setup() {
Serial.begin(9600);}
void loop()
{
long duration, inches, cm;
pinMode(trigPin, OUTPUT);
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
pinMode(echoPin, INPUT);
duration = pulseIn(echoPin, HIGH);
inches = microsecondsToInches(duration);
cm = microsecondsToCentimeters(duration);
Serial.print(inches);
Serial.print("in, ");
Serial.print(cm);
Serial.print("cm");
Serial.println();
delay(100);
}
long microsecondsToInches(long microseconds)
{return microseconds / 74 / 2;
}
long microsecondsToCentimeters(long microseconds)
{return microseconds / 29 / 2;}
Original code for Ping example was created by David A. Mellis. Adapted for HC-SR04 by Tautvidas Sipavicius. This example code is in the public domain.
Step 4: Result using serial monitorAfter compiling, uploading and running it, in the Serial Monitor (Tools -> Serial Monitor or Ctrl + Shift + M) the sensor was sending correct data! Serial monitor will show you.
I hope you enjoyed this project and if there is something wrong or not clear please let me know. Thanks for reading.
By: Zakariye Abdirahman
Student: Electronic Engineering
Comments