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
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.
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
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!!!!!
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
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
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.
"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.
The Editing makes this insanely easy to follow
Bruh we need more long videos like this bout various modules and ic 🔥🔥🔥🔥
Fo sho
This editing and explanation is nothing like I have ever found on TH-cam. Thank you so much and keep up the great work!
I really like the way you explain. Thankyou so much for this video
That pink one💀💀💀
Please make more Arduino projects 👏
Tysm for this I’ve been wanting to know how these work
As a newcomer these videos are incredible. Dont stop the great work.
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
which university bro
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.
Loved your channel since you started Shorts. Your long-form content is amazing too!
now i can stay all night without worrying getting caught off guard💀💀
Please continue similar videos!
it was great and easy understanding of the -ULTRASONIC SENSOR-
can you make a tutorial on a line follower robot?
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.
i love u
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);
}
Robonyx : Better than most tutorial videos!
this looks awsome i might try it myself
Really good video and thank you for this idea!
Much love ❤❤❤
Please upload more videos like this
It's really fun
awesome video and easy to understand. I'm glad I found your channel because of the shorts.
Very informative 👏
Thank you, this is really well explained. The one question I have is how did you do the radar interface?
Next level video ,waiting for more long videos in the future
this videos are a must!
Greate video as always, thank you very much
awesome !! can the next vid be about pcb
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!
But how to get the "ultrasonic sensor" thing
Thank you for this video. Hopefully it helps me with the turret project my son wants me to help him build for his room.
your videos are gorgeous!!
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
Which software do you use to make these videos?
Plz start a series on Arduino coding plz
really like your videos!
Can you make videos about the ov7670 camera too?
very nice as always
hey @Robonyx which software do you use for editing?
Can you make more videos on IR,PIR and LDR sensors with code? this video was great.
Please show us how you programmed the radar in Processing:)
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!!!!!
Can you make something like defence turret either with sprayer or electric airsoft gun?
Can you make a tutorial on esp now using esp 32 that has an ultrasonic sensor and another one that can receive data wirelessly?
Nice video, thanks :)
What's the name of the second background song? The jazz one
Can you tell me what editing software you use.
Only if you wanted to!
pls make a full tutorial on all about rfid-rc522 and OV7670 camera module
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
this is so cool!
What can I use to measure varying depths of a rough service?
Best tutorial video.
I have tried writing the code by hand where could I find the code?
I from India I can buy on your store?
Love your video
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
how do you only haave 200k subscriberS!!
Bro can you bring longer videos of other shorts too. Please they will be a boom
how to get the design of the brackets?
Can you explain PID PLEASE..........
is it possible to have the stl to print?
Can you please make a video on Bluetooth module HC - 05
Could you drop the files for the 3d printed bracket
hi bro i do this but your code doesn't work the code give me error that this is wrong Serial.println(distance);
Did u code it in python or C++
C++ bro that is Arduino IDE
Sir please explain other components as like this type of explanation
Thank you
Which language use. In Arduino coding please reply
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.
In the Arduino IDE, go to “tools” and select “Serial Monitor”
@@capt4in1 okay, thanks
Can we make this esp8266 instead of Arduino uno?
Can you create more complex project for your next videos please
What is that board at 3:39?? xD
Why is this a thing
It is called a Gyattduino or an RGBDuino :)
@@justaneric That print on it tho xD
@@ProJakob yeaoh xD
can i get the code over here pls pls pls
How to give an code for project
i cant find any tutorial that explain the code spesificly so can any one help me
can you give code in word doc
pls a lab review
im your 550th sub
Hii ,ur vid is amazing however can make tut for lcd 16x4
where is the stl file
my code is not working pls help
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)
}
Nice one
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);
}
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
does the led turn on??
@@shashwatpratap the ultrasonic sensor? i didnt even know it had an led
is anyone else getting all 0's in the serial monitor. Im wondering if i fried the ultrasonic sensor
Make sure that in 0.034 there is a . Instead of a ,
this can be used to make fish finder?
Came here because video from nerdforge 😊
hey! do you need PCB supplier? i can help you.
❤❤
Please make digital tachometer using ir sensor and arduino Nan please make
I will make it
please block code
good bro
hi
"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.
This looks like your homework assignment.
Please make more videos
best content
PLEASE give me the STL
The pink one is
Jenny RGBduino, thank me later
Ayo 3:39
green fn.
3rd comment! Pin it or I will like the video!
Please make digital tachometer using ir sensor and arduino Nan please make
Yes ofcourse