USING THE HC-SR04 ULTRASONIC SENSOR FOR ECHOLOCATION
in a float inĀ inches
using ARC serial monitor
another video I will use a car
for Arduino
Distance = rate * time
Time = PingTravelTime
Rate = speed of sound miles per hour - need microseconds
Below
1 second = 1,000,000 micro seconds
I hour = 3600 seconds
Inches to mile
Feet 5280 = 1 mile
12 in = 1 foot
int Trig=A5;
int Echo=A4;
int pingT;
float targ00 secondsetDistance;
void setup() {
// put your setup code here, to run once:
pinMode(Trig,OUTPUT);
pinMode(Echo,INPUT);
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
targetDistance=measDist();
Serial.println(targetDistance);
delay(500);
}
int pingTime(){
int pingTravelTime;
digitalWrite(Trig, LOW);
delayMicroseconds(2);
digitalWrite(Trig, HIGH);
delayMicroseconds(20);
digitalWrite(Trig, LOW);
pingTravelTime = pulseIn(Echo, HIGH);
return pingTravelTime;
}
float measDist(){
int pingTravelTime;
float Dist;
pingTravelTime=pingTime();
Dist=(pingTravelTime*761.*5280.*12.)/(1000000.*3600.);
Dist=Dist/2;
return Dist;
}
thanks
By EzAng
Other robots from Synthiam community
Mohanish's Making Of 4 Wheel Robot
Hello Guys my Self Mohanish From India and im also an Mechanical Engineer and working as a Designer. i would like to...
Jstarne1's Omnibot 2000 , Rad 2.0 Vacuum Bot
This project has evolved some , the basic rundown is Im modding two Omnibots , one a regular the other a larger 2000...
Nolan's Nolan's First Robot
My name is Nolan, I am 7 years old. after Grampa showed me some robots, I picked the gravity robot because I can change...