how to use the HCSR04 Ultrasonic Sensor
- Get link
- X
- Other Apps
Ultrasonic Sensor
Introduction
The HC-SR04 ultrasonic sensor uses sonar to determine distance to an object like bats or dolphins do. It offers excellent non-contact range detection with high accuracy and stable readings in an easy-to-use package. From 2cm to 400 cm (or 1” to 13 feet). It operation is not affected by sunlight or black material like Sharp rangefinders are (although acoustically soft materials like cloth can be difficult to detect). It comes complete with ultrasonic transmitter and receiver module.
In this tutorial you will learn how to use this sensor with the Arduino uno and print the distance from an object to the serial monitor.
In this tutorial you will learn how to use this sensor with the Arduino uno and print the distance from an object to the serial monitor.
What you will need - Hardware
The Circuit
The connections are pretty easy, see the image above with the breadboard circuit schematic.
The code ::
Here's the code ::
- ultrasonic.Ranging(CM) will return distance from an object to centimeters
- ultrasonic.Ranging(INC) will return distance from an object to inches
- ultrasonic.Timing() will return the time (ms) where the signal took to return from the object
****************************************************************
/* How to use the HC-SR04 Ultrasonic Sensor with Arduino */
//Libraries
#include "Ultrasonic.h"
//Define pins ultrasonic(trig,echo)
Ultrasonic ultrasonic(A0,A1);
//Variables
int distance;
void setup() {
Serial.begin(9600);
}
void loop()
{
distance = ultrasonic.Ranging(CM); //Use 'CM' for centimeters or 'INC' for inches
//Print distance...
Serial.print("Object found at: ");
Serial.print(distance);
Serial.println("cm");
//every 1sec.
delay(1000);
}
****************************************************************
Well done!
You have successfully completed one more Arduino "How to" tutorial and you learned how to use the HC-SR04 Ultrasonic Sensor with Arduino uno. I hope you liked this, let me know in the comments.
- Get link
- X
- Other Apps
Comments
Post a Comment