How To Use Ultrasonic Sensors with Arduino! + Project Idea!

  Рет қаралды 93,683

Robonyx

Robonyx

Күн бұрын

Пікірлер: 121
@ExtravagantEthan
@ExtravagantEthan 8 ай бұрын
The Editing makes this insanely easy to follow
@thejasj.635
@thejasj.635 8 ай бұрын
Bruh we need more long videos like this bout various modules and ic 🔥🔥🔥🔥
@Robonyx
@Robonyx 8 ай бұрын
Fo sho
@justaneric
@justaneric 8 ай бұрын
This editing and explanation is nothing like I have ever found on KZbin. Thank you so much and keep up the great work!
@Thisisnotaname-um8rh
@Thisisnotaname-um8rh 8 ай бұрын
That pink one💀💀💀
@nimeshkumar8508
@nimeshkumar8508 8 ай бұрын
I really like the way you explain. Thankyou so much for this video
@rhys6851
@rhys6851 8 ай бұрын
Bro please cover some break beam sensors with some locking mechanism like a solenoid 🙌 love the videos, currently in my final year mechatronics and you’re much more enjoyable to watch than lecture slides
@challasai6415
@challasai6415 3 ай бұрын
which university bro
@nikhil_kapse_412
@nikhil_kapse_412 8 ай бұрын
Once, I used a project for the Mini Project in sem 4 of Engineering (Electronics and Telecommunication). At the time of final review, our group got so awkward for showing such an easy project to the sir. It's my humble request to make a more complicated project on Embedded System and FGPA for my further reference. Currently, I am to start my 7th sem in june.
@maazsarfaraz2269
@maazsarfaraz2269 8 ай бұрын
Please make more Arduino projects 👏
@BlockyTheBlueBlock
@BlockyTheBlueBlock 8 ай бұрын
Tysm for this I’ve been wanting to know how these work
@gustavwagner7024
@gustavwagner7024 8 ай бұрын
Loved your channel since you started Shorts. Your long-form content is amazing too!
@chagd
@chagd 7 ай бұрын
Robonyx : Better than most tutorial videos!
@zihero5127
@zihero5127 8 ай бұрын
Please continue similar videos!
@fiffy6572
@fiffy6572 8 ай бұрын
this videos are a must!
@Cusgan8
@Cusgan8 8 ай бұрын
now i can stay all night without worrying getting caught off guard💀💀
@patchbyte6856
@patchbyte6856 8 ай бұрын
Really good video and thank you for this idea!
@hi12167pies
@hi12167pies 8 ай бұрын
this looks awsome i might try it myself
@uzairattique6214
@uzairattique6214 8 ай бұрын
Very informative 👏
@Sudhanshu1029
@Sudhanshu1029 8 ай бұрын
Please upload more videos like this It's really fun
@allinone5972
@allinone5972 6 ай бұрын
Next level video ,waiting for more long videos in the future
@DarkDan76
@DarkDan76 8 ай бұрын
awesome video and easy to understand. I'm glad I found your channel because of the shorts.
@SatyajitMahapatra-ss3kp
@SatyajitMahapatra-ss3kp 8 ай бұрын
Much love ❤❤❤
@chasexii
@chasexii 6 ай бұрын
So glad to see this video! I m making my DIY ROV with an ESP32 DevKit Board these days. I m looking for an Ultrasonic Sensor which is watertight!
@tifanyjesus4306
@tifanyjesus4306 6 ай бұрын
long duration; int distance; const int trigPin = 10; const int echoPin = 11; void setup() { pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); Serial.begin(115200); } void loop() { digitalWrite(trigPin, LOW); delayMicroseconds(2); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); duration = pulseIn(echoPin, HIGH); distance = duration = 0,034 / 2: 01/12 println() -> size_t Serial.print("Distance: "); Serial.println(distance); } The full code.
@reizenpro101
@reizenpro101 Ай бұрын
i love u
@Mandepgiai
@Mandepgiai Ай бұрын
THE CORRECT CODE: long duration; int distance; const int trigPin = 10; const int echoPin = 11; void setup() { pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); Serial.begin(115200); } void loop() { digitalWrite(trigPin, LOW); delayMicroseconds(2); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); duration = pulseIn(echoPin, HIGH); distance = duration * 0.034 / 2; Serial.print("Distance: "); Serial.println(distance); }
@MARKELR
@MARKELR 8 ай бұрын
your videos are gorgeous!!
@devonotwell
@devonotwell 7 ай бұрын
Thank you for this video. Hopefully it helps me with the turret project my son wants me to help him build for his room.
@lukejijohn1476
@lukejijohn1476 8 ай бұрын
awesome !! can the next vid be about pcb
@bifmuf4179
@bifmuf4179 8 ай бұрын
Greate video as always, thank you very much
@batmunkhbatbayar8586
@batmunkhbatbayar8586 8 ай бұрын
can you make a tutorial on a line follower robot?
@chitramali8797
@chitramali8797 4 күн бұрын
Can you make more videos on IR,PIR and LDR sensors with code? this video was great.
@tahaboudrar-v5m
@tahaboudrar-v5m 11 күн бұрын
please add the code to copy paste because it doesnt work for me but btw very good editing and explanation, the best arduino video i have ever watched!!!!!
@surya20001
@surya20001 8 ай бұрын
very nice as always
@ezrakoper
@ezrakoper 7 ай бұрын
Nice video. No need for the tricks and shows in the video. Just the info and you can spend more time on the technical things. Congrats with your new channel
@neonobel7876
@neonobel7876 4 ай бұрын
Best tutorial video.
@matik09
@matik09 8 ай бұрын
really like your videos!
@catiru510
@catiru510 3 ай бұрын
i am just starting out with arduino, how can i see the output screen that you are seeing on 2:21 i don't know is its my code thats faulty or something but i uploaded the code and it said upload successful.
@capt4in1
@capt4in1 3 ай бұрын
In the Arduino IDE, go to “tools” and select “Serial Monitor”
@catiru510
@catiru510 2 ай бұрын
@@capt4in1 okay, thanks
@Marc1999th
@Marc1999th 8 ай бұрын
Please show us how you programmed the radar in Processing:)
@ahmedbaig5707
@ahmedbaig5707 8 ай бұрын
Plz start a series on Arduino coding plz
@MoulTarikh
@MoulTarikh 2 күн бұрын
Can this one work in a car like while parking make a sign that u close to the car behind so u can stop, we were having ot in car and when i see this video i thought it work with same logic
@shobi_r0412
@shobi_r0412 2 ай бұрын
can you make more like lights on/off bulb and can be control by android phone? also automated sliding mini gate, on/off ceiling fan, temperature detector like that in shorr home automation hehe
@walkingcurse6557
@walkingcurse6557 7 ай бұрын
pls make a full tutorial on all about rfid-rc522 and OV7670 camera module
@Samuel101
@Samuel101 8 ай бұрын
Which software do you use to make these videos?
@kuldipbajwa_
@kuldipbajwa_ 23 күн бұрын
What can I use to measure varying depths of a rough service?
@V_Electronics
@V_Electronics 8 ай бұрын
Love your video
@Robojax1
@Robojax1 6 ай бұрын
hey @Robonyx which software do you use for editing?
@saswat200
@saswat200 6 ай бұрын
Bro can you bring longer videos of other shorts too. Please they will be a boom
@shokranomr
@shokranomr 10 күн бұрын
hi bro i do this but your code doesn't work the code give me error that this is wrong Serial.println(distance);
@RixtronixLAB
@RixtronixLAB 4 ай бұрын
Nice video, thanks :)
@jemers1726
@jemers1726 7 ай бұрын
Can you make a tutorial on esp now using esp 32 that has an ultrasonic sensor and another one that can receive data wirelessly?
@picapaukrk
@picapaukrk 7 ай бұрын
Can you make something like defence turret either with sprayer or electric airsoft gun?
@ThatUltimateTimmy
@ThatUltimateTimmy 2 ай бұрын
how to get the design of the brackets?
@RuizStythan
@RuizStythan 6 ай бұрын
Can you make videos about the ov7670 camera too?
@jojozetapuss180
@jojozetapuss180 8 ай бұрын
best content
@arhan_ai
@arhan_ai 8 ай бұрын
Can you tell me what editing software you use. Only if you wanted to!
@unofficialcut
@unofficialcut 8 ай бұрын
Can you explain PID PLEASE..........
@Zerodoesskits
@Zerodoesskits 6 ай бұрын
I have tried writing the code by hand where could I find the code?
@onyekaojei3654
@onyekaojei3654 Ай бұрын
What's the name of the second background song? The jazz one
@changed55555
@changed55555 8 ай бұрын
Sir please explain other components as like this type of explanation Thank you
@年知ろはると
@年知ろはると 2 ай бұрын
how do you only haave 200k subscriberS!!
@Abhijay-Krishna
@Abhijay-Krishna 7 ай бұрын
Can you please make a video on Bluetooth module HC - 05
@giacomoturati9475
@giacomoturati9475 7 ай бұрын
is it possible to have the stl to print?
@rownakrajbhar
@rownakrajbhar 6 ай бұрын
Can we make this esp8266 instead of Arduino uno?
@ibrahimhersi5570
@ibrahimhersi5570 24 күн бұрын
Could you drop the files for the 3d printed bracket
@-vascular
@-vascular Ай бұрын
i cant find any tutorial that explain the code spesificly so can any one help me
@ARLENZERITH
@ARLENZERITH Ай бұрын
Which language use. In Arduino coding please reply
@qwertio4626
@qwertio4626 8 ай бұрын
Can you create more complex project for your next videos please
@Ruqaya-y7g
@Ruqaya-y7g 6 ай бұрын
Hii ,ur vid is amazing however can make tut for lcd 16x4
@padmaseelank1180
@padmaseelank1180 12 күн бұрын
I from India I can buy on your store?
@Lakshwin35
@Lakshwin35 Ай бұрын
How to give an code for project
@bryanzhang5630
@bryanzhang5630 6 ай бұрын
is anyone else getting all 0's in the serial monitor. Im wondering if i fried the ultrasonic sensor
@budimanaji90
@budimanaji90 5 ай бұрын
Came here because video from nerdforge 😊
@Hrozic
@Hrozic 8 ай бұрын
good bro
@iyadkhamri
@iyadkhamri 4 ай бұрын
The pink one is Jenny RGBduino, thank me later
@ProJakob
@ProJakob 8 ай бұрын
What is that board at 3:39?? xD Why is this a thing
@justaneric
@justaneric 8 ай бұрын
It is called a Gyattduino or an RGBDuino :)
@ProJakob
@ProJakob 8 ай бұрын
@@justaneric That print on it tho xD
@justaneric
@justaneric 8 ай бұрын
@@ProJakob yeaoh xD
@PyduinoEdu
@PyduinoEdu 6 ай бұрын
where is the stl file
@G0ldysFANPAGE
@G0ldysFANPAGE 11 күн бұрын
my code is not working pls help
@G0ldysFANPAGE
@G0ldysFANPAGE 11 күн бұрын
long duration; int distance; const int trigPin = 10; const int echoPin = 11; void setup() { // put your setup code here, to run once: pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); Serial.begin(115200); } void loop() { // put your main code here, to run repeatedly: digitalWrite(tringPin, LOW); delayMicroseconds(2); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); duration = pulseIn(echoPin, HIGH); distance =duration * 0.034 / 2; Serial.print("distance: "); Serial.println(distance) }
@a.c.jinishaece845
@a.c.jinishaece845 2 ай бұрын
hi
@RoboNoobs.
@RoboNoobs. 8 ай бұрын
pls a lab review im your 550th sub
@Kecko0
@Kecko0 4 ай бұрын
i think i fried mine bc when i first used it, it got really hot and now when i try to use it nothing happens
@shashwatpratap
@shashwatpratap 2 ай бұрын
does the led turn on??
@Kecko0
@Kecko0 2 ай бұрын
@@shashwatpratap the ultrasonic sensor? i didnt even know it had an led
@ARRoboTics
@ARRoboTics 8 ай бұрын
❤❤
@amiraelmaddah8798
@amiraelmaddah8798 3 ай бұрын
Ayo 3:39
@abel11112
@abel11112 8 ай бұрын
"Please create a fingerprint attendance system using ESP32, OLED display, SD card module, and an RTC (Real-Time Clock). It should operate on battery power, record working hours, and store today's attendance data on the SD card. I would appreciate additional features. Looking forward to your creation! Will you be able to make it? Please let me know as soon as possible.
@justaneric
@justaneric 8 ай бұрын
This looks like your homework assignment.
@Janezeng-v9z
@Janezeng-v9z 4 ай бұрын
hey! do you need PCB supplier? i can help you.
@a.c.jinishaece845
@a.c.jinishaece845 2 ай бұрын
please block code
@BakulParmar-em8qi
@BakulParmar-em8qi 8 ай бұрын
Please make digital tachometer using ir sensor and arduino Nan please make
@AKElectroDIY
@AKElectroDIY 8 ай бұрын
I will make it
@mayd3153
@mayd3153 8 ай бұрын
Please make more videos
@yakibabyjakey9187
@yakibabyjakey9187 8 ай бұрын
green fn.
@AKElectroDIY
@AKElectroDIY 8 ай бұрын
3rd comment! Pin it or I will like the video!
@Wabuh-Wabuh
@Wabuh-Wabuh 4 ай бұрын
this can be used to make fish finder?
@BakulParmar-em8qi
@BakulParmar-em8qi 8 ай бұрын
Please make digital tachometer using ir sensor and arduino Nan please make
@AKElectroDIY
@AKElectroDIY 8 ай бұрын
Yes ofcourse
@BakulParmar-em8qi
@BakulParmar-em8qi 8 ай бұрын
Please make digital tachometer using ir sensor and arduino Nan please make
@AKElectroDIY
@AKElectroDIY 8 ай бұрын
I will make
@BakulParmar-em8qi
@BakulParmar-em8qi 8 ай бұрын
Please make digital tachometer using ir sensor and arduino Nan please make
@AKElectroDIY
@AKElectroDIY 8 ай бұрын
Bro i will
@BakulParmar-em8qi
@BakulParmar-em8qi 8 ай бұрын
@@AKElectroDIY Thenks Bro please make this
@AKElectroDIY
@AKElectroDIY 8 ай бұрын
@@BakulParmar-em8qi Yeah soon.
@AKElectroDIY
@AKElectroDIY 8 ай бұрын
@@BakulParmar-em8qi I also need this to measure speed of my bldc motors. So I will be making this
@BakulParmar-em8qi
@BakulParmar-em8qi 8 ай бұрын
@@AKElectroDIY ok but display liquid crystal 16×2 use in project ok
@BakulParmar-em8qi
@BakulParmar-em8qi 8 ай бұрын
Please make digital tachometer using ir sensor and arduino Nan please make
@BakulParmar-em8qi
@BakulParmar-em8qi 8 ай бұрын
Please make digital tachometer using ir sensor and arduino Nan please make
@AKElectroDIY
@AKElectroDIY 8 ай бұрын
Yes I will make it
@BakulParmar-em8qi
@BakulParmar-em8qi 8 ай бұрын
Please make digital tachometer using ir sensor and arduino Nan please make
@AKElectroDIY
@AKElectroDIY 8 ай бұрын
Haha I will make
Sensors - which one to use
17:06
Electronoobs
Рет қаралды 1,4 МЛН
I thought one thing and the truth is something else 😂
00:34
عائلة ابو رعد Abo Raad family
Рет қаралды 16 МЛН
What type of pedestrian are you?😄 #tiktok #elsarca
00:28
Elsa Arca
Рет қаралды 42 МЛН
coco在求救? #小丑 #天使 #shorts
00:29
好人小丑
Рет қаралды 84 МЛН
99.9% IMPOSSIBLE
00:24
STORROR
Рет қаралды 16 МЛН
I made a fake CRT TV with a LASER
16:05
bitluni
Рет қаралды 490 М.
How To Make Arduino Human Following Robot
6:26
DIY Builder
Рет қаралды 3,7 МЛН
Can You Charge A Phone with Marbles?
18:06
Engineezy
Рет қаралды 1 МЛН
Make a TINY Arduino Drone with FPV Camera - Will It Fly?
20:26
Max Imagination
Рет қаралды 1,3 МЛН
From Brains to Bot: Arduino's Next-Level Journey with AI.
7:26
DIY Builder
Рет қаралды 509 М.
Making oddly satisfying LED magnet tiles
11:04
bitluni
Рет қаралды 568 М.
Arduino ultrasonic sensor led projects | Hc-sr04 Ultrasonic sensor
7:22
I thought one thing and the truth is something else 😂
00:34
عائلة ابو رعد Abo Raad family
Рет қаралды 16 МЛН