I can never understand how some people can put thumbs down on any of your videos.
@marvelous17513 жыл бұрын
fr
@muhammadsalmani77092 жыл бұрын
@@marvelous1751 ĺ
@marty8125 жыл бұрын
Excellent teaching! Your voice is easy to listen to and I appreciate that you sound like someone I would know. Accents are sometimes hard to understand and since we come from the same part of the world, our dialects and accents are the same. Therefore I don’t have to work past that first to get to the great content you have. Straight, to the point, and well written beforehand and not just made up on the fly with tons of stutters repeats. Thanks again. Now my number one source for Arduino tutorials.
@emiliomartineziii2980 Жыл бұрын
For anyone in 2023 trying to make a wireless car with the steering controlled by a servo, it will work, but you will need to download the ServoTimer2 library. Also the number to insert in the servo.write() command will need to be from 1000-2000 or it will not work. For the normal servo library, its from 0 to 255, but for the ServoTimer2 library, its 0 to about 2300. Also, if you want to prevent the motor from spiraling out of control, make the max analog output to the motor driver be around 20% less than the actual max, so instead of writing from 0-255, make the range 0-200. I did this and it tremendously increased the stability. When I had it from 0-255 and I went full speed for a few moments, the motor would get stuck on the max speed, but when I made the max analog out be 200, it never got stuck. These are some of the problems I ran into after working nonstop for 10 hours, but I eventually got the entire thing to work!
@SVSunnyJim2 жыл бұрын
Dronebot , your videos are setting fr the standard for learning. You are thoughtful, concise, detailed and thorough. I just wish there was a teacher like you in every field.... 👍
@brianjohnson20596 жыл бұрын
Who the heck are you? I don't know of anyone who can explain things so fast. so complete, and tolerable. be it voice, tone or speed of speaking.. Wow, I found a gold mine here. Thank you Sir. On my journey to save the world from corruption, evil, and deceiving government, religious, or what ever people are doing to destroy our beautiful world. Know there are people out there doing really big things to fix things, and you are a big help to ID10T's like me. One thing you could do for me if you would? If you could configure the eight array antennas' for the Van de Graaff generator's, for E=mc^2. Thanks, you the man!
@ansondhakim4 ай бұрын
After trying more than 10 different source, this is the one that actually works. Thank you.
@samhintz84794 жыл бұрын
You seriously have one of the best channels i’ve seen! Quality videos and quality information. Keep up the good work!
@TheAFWWA3 жыл бұрын
WOW. One of the most comprehensive videos I have ever seen. Amazing video quality and editing too.
@musickorner695 жыл бұрын
Most comprehensive NRF robot car in KZbin by far! Thanks! It really helped a lot understanding NRF module. Take care man. 😊
@padmalayarawal30915 жыл бұрын
You are super awesome teacher...... You don't leave anything about the topic and explanation is excellent 👍
@sifatrahman27494 жыл бұрын
you are an amazing mentor, tutor what do I say! I learnt so many things from you that I didn't even learn from my course teachers!
@morosanvalentin25244 жыл бұрын
me too . i agree ! this man is SAINT !
@landmarker2 жыл бұрын
I mean you know you are a life saver and a great teacher. Thank you for the lecture! On a side note, I have the same digital clock you have on your work bench right there. Makes me hope I can get my workspace that clean and organized one day :)
@yasserhussein6665 жыл бұрын
great video, I don't really understand why few minority would dislike the demo, it must be that they are dump or something. Keep up the great work :) thanks a ton
@naimmekni7536 Жыл бұрын
From tunisia 🇹🇳 i want to thank you for all your efforts and the excellent explication for everything ... thanks a lot again and bravo continue ❤
@ericlayton33005 жыл бұрын
I can only echo what so many others have said, in one word, "Fabulous" ! The quality of your videos are amazing, information is precise, relevance is on the money and most important just plain fun. Thank You for spending the time to share your passion to educate the rest of us!!
@stevealdrich24725 жыл бұрын
When he mentions reversing the pins on input output, that means swap the MOSI pin with the MISO pin on the adapter. (pins 11 & 12 on the arduino.) Thanks Drone Bot!!!
@justfun99714 жыл бұрын
Does it work
@deltaworkshop81814 жыл бұрын
@@justfun9971 obvious man 😃😄
@casemotube4 жыл бұрын
Dear Bill: Thank you SO MUCH for all of the help and inspiration you provide to we Aduinovians; I've learned more than words can describe. I thought I might share something I've learned along the way that may help others on a project like this. If an individual is running the Arduino IDE using Windows 10, there's no need to have two computers to observe the communication between two NRF25 WI-FI breakout boards. As long as there are two COM port plugs on the computer, and there are two USB cables to use, here's the trick... First, connect all of the wires between the two wi-fi breakout boards and the two Arduino boards, and open the Arduino IDE to get ready for testing. Open either the client-side or server-side .ino file of the NRF24 project being tested, and plug-in ONLY ONE of the Arduino boards using a USB connector cable to the computer's first COM port. Compile and link the .ino file and upload it into one of the Arduino boards. Make note of the COM port the computer assigns to the connection. Next, right click the Arduino IDE's tab at the bottom of the screen (or wherever the open-program tabs may sit on the screen), and OPEN ANOTHER INSTANCE of the Arduino IDE (don't open the second client/server-side .ino file being tested using the same Arduino IDE as the first). Now that there are two separate instances of the Arduino IDE running, connect the second Arduino board to the computer's second USB port using a second USB cable. Compile, link, and upload the second .ino file being tested into the second Arduino board. The two different instances of the Arduino IDE are now running two separate .ino files on two different COM ports, and two seperate serial monitors can be opened to watch the communications between the two separate WI-FI boards. NOTE: The IDE has trouble when two copies of the SAME .ino file are open. The second instance of the Arduino IDE will most likely open with a copy of the SAME .ino file that is open in the first instance of the IDE. Be certain to close the initially open (copy) .ino file from the SECOND IDE after the second NRF24 file has been opened in the second IDE. If you close the first copy of the two .ino files open (of the same name), you just closed the first instance of the IDE, and now, one IDE shares both open files again (sounds more confusing than it really is). If something goes wrong, say my two favorite words, "oh well," and try again. It's important to follow these steps in order and to remember which Arduino board is connected to which instance of the Arduino IDE, which .ino file sits in which Arduino board, and which COM port each the the Arduino's communicate through. When coding modifications are involved, it's easy to forget which board is the server and which is the client (or, am I just getting too old?). Thank you, again, for your time and effort in sharing your wealth of knowledge. I'll be joining the DroneBot Workshop Forum just as soon as I get my MS email account password sorted out (that's it...I'm too old). I've only known about Arduino since early January of 2020, but have a I have decades of experience in DCv SCR-drive electric vehicles, and I was coding Turbo C in the early 1990, so I have a lot of coding experience to share. I look forward to the experience of the Forum. We have a lot to talk about, and I love to gab. Stay well and take care; Casey aka itsCaseyDambit
@cosmikodes5 жыл бұрын
Thanks a lot. I am from India and I ve successfully completed the project you are telling about. You did help me a lot to understand and completing the project with in first try. Your long and more informative videos are great for beginners like me.
@aardvarksrock5 жыл бұрын
With respect to previous comments, I think the videos are of a perfect duration, in that all important aspects of a project are covered completely. Too many "explanatory" vids go to "I'll cover that in another video..." Sometimes I'd understand if their presentations were as rich and explanatory as Mr. Bill's, but more frequently it's someone just drawing stuff on a piece of paper. I don't know if the graphical and animation aspects are contacted out ... but their like watching Fantasia in a world of Beavis and Butthead animations. Now with two vids a week, no one can complain.
@w.19293 жыл бұрын
Really good explanation. I failed miserably in the past trying to achieve this very setup 😆 on an Atmega 32 in C++, switched to Arduino a while back but never got around to try again. Thank you so much for going into sufficient detail, but not too much and taking the time to creating this content! Off to try again! 🏃♂️
@garypowell20168 ай бұрын
Thank you so much. I'm relatively new to all things Arduino, IoT etc. I have never coded before and at 67 yrs just loving every small success. It'll be a while before I can get everything together for this one. You explain everything so clearly & certainly "know your stuff" & 100% agree with "TheMarbo74". I fully recommend your videos to anyone interested in electronics. Keep doing what you are doing.
@maxwong63715 жыл бұрын
I have been doing this project for almost 2 years,but never success,then my friend suggested me to your website and it looks great! Gotta try it soon.
@ToorGS3 жыл бұрын
Sir, your workshop is very well organized. I like so much
@asadparvez59586 жыл бұрын
Excellent job. Your work and presentation is exceptional and has me hooked to your channel. So far I've learned a lot from you. Please keep up the good work. Kind regards
@saeedsobhani42132 жыл бұрын
Thanks for your Chanel and your hard work, I studied electronics for many years, in different country, they thought so many things except how to program or build robots from scratch. Electronics terms and procedures can be very confusing and challenging, thanks for simplifying them.
@tubeDude485 жыл бұрын
This proved to be very useful. Thanks Bill!
@josverberkmoes99027 ай бұрын
Thank you SO much for this great instruction video. I never could have build this on my own from scratch. I really love it and will soon share it with one of my grandchildren. Hopefully he likes it too.😀👍👍
@r.a.monigold97895 жыл бұрын
...our reward - watching the next video!!! Thank you for sharing...
@markgilding65003 жыл бұрын
Another great video Bill. Hope you are keeping well.
@darlingtononwuemebolam767 Жыл бұрын
Thanks a lot for this well explained video and concept. Indeed u make technology look very easy and practical to grasp.. but I have a challenge yet unsolved, when experimenting with the reliableDataServer / Client alongside with sensor(joystick), the transmitter is cable of sending data(joystick values) but at the order end(Receiver) , it shows *init failed* on the serial monitor… I have tried troubleshooting to no avail. Pls I need help…Thanks
@mav292 жыл бұрын
that was thorough, very calm and very clear. thanks sir
@treverbelmont83932 жыл бұрын
can you show us how to use these to control multiple servos, because i have looked up alot of tutorials on youtube and all of them dont explain it very well
@MaxImagination3 жыл бұрын
Hi, well made and explained video, I'm trying to hook up the same kind of car with my homemade Arduino transmitter and receiver. How would I make it so I can use 2 joysticks instead of 1, so I can control forwards/backwards with the left joystick and turning left/right with the right joystick, what would I have to change in the code if I were to make such change? Please reply as soon as you can, thanks in advance! Cheers, Max from the KZbin channel "Max Imagination"
@hfe18335 жыл бұрын
One of the best video I see on the net with crystal clear explanation and code
@takumu.h87692 жыл бұрын
Thank you so much! This video saved my lunar rover project.
@bruce120002 жыл бұрын
Thank you so much for all the great videos and the teaching you do on KZbin for us Respect!👍
@jlucasound4 жыл бұрын
Great tutorials, Sir! @33:00 you picked up a wicked echo. :-) I am sure you know. Remember "Test for Echo"? Not my favorite Rush album but I love Rush as I am sure you do, also. 2112 and Permanent Waves and Signals. Pretty much everything up to Signals are my favorites. RIP Neil.
@alexmarkovic58716 жыл бұрын
Great video. Having the same issues as others...too much latency in rcvr response. Reduced delay value to 10ms, but still having issue. Also would be nice to turn both wheels when direction change is activated.
@joriskingma6 жыл бұрын
Indeed a lot of detail, perfect! Many details i already know and understand. Some details though are crucial for me to properly understand the stuff I need to understand. The detailed explanation is a good thing in this case. Thank you for te great video!
@NickCornaglia6 жыл бұрын
Another interesting video. I need to pickup some RF modules to experiment as Arduino and Radio Communication is something I'd like to investigate. Thanks again!
@Dronebotworkshop6 жыл бұрын
You're welcome Nick, glad I could inspire you. Be sure to let us know if you build something interesting with your RF modules.
@tehosdevs17273 жыл бұрын
@@Dronebotworkshop Hey I love your videos! I was wondering if I could get an idea of the difficulty of making my own antenna? Transmitter & receiver.
@michaelgad41874 жыл бұрын
Your videos are super! I cannot thank you enough!
@Vip3rNZL5 жыл бұрын
Really enjoy your videos, had to pause the video just to let you know! :) please whatever you do, don't stop making them! :)
@MattyEngland5 жыл бұрын
Thanks for all your hard work doing these videos.
@mohdfarezsamin14935 жыл бұрын
Hi, I followed exactly as described but somehow the receiving end seems to be the problem i.e not receiving the data. I swapped the arduino uno & the RF24L01 with the transmitter and yet face the same problem; i.e transmitting but not receiving. I have used other examples available in the internet and the result is the same. Not sure where I went wrong.
@Rexan4 жыл бұрын
U are explaining everything soo good. Thank youu. :) I learned almost everything for arduino here on this channel. Thanks. :)
@gjdanco42603 жыл бұрын
Hi. I am having no success at all with my setup. I tried the first client and server sketches and nothing. I moved on and loaded the nrf24 reliable datagram server on my windows 10 laptop and all I get on the serial monitor is "init failed". I uploaded the nrf24 reliable datagram client to my linux mint laptop, and I get "Sending to nrf24_reliable_datagram_server sendtoWait failed" over and over. I reversed the sketches so linux laptop is server and windows laptop is client...same issues. I would like to troubleshoot the nRF24L01 modules and the adapters but I have no way to determine if one or more are causing this issue. Is there any troubleshooting advice you can give me? I am at a complete loss here. Looking forward to a reply...thanks again.
@jordanmisseos78133 жыл бұрын
Is there any reason why my nrf24l01 isn't initialising properly. It wont let me use the Arduino to send the data
@naboulsikhalid77635 жыл бұрын
what can I say, Thank you very much. You become my mentor, and I am proud
@tancelik4 жыл бұрын
how can i do this project with 4 engines and 2 l298n? would be glad for your answer
@nigeriarc37433 жыл бұрын
I think a single l298n would do the job,just connect two motors in parallel
@willytwo530724 жыл бұрын
Great job as usual. Really enjoy your shows!
@davidbock51483 жыл бұрын
Many thanks, I´m always referring to your videos as its clear instruction for Arduino. I built a few of these over the holiday including my own spin on the HW using a really nice Arduino Nano and shield. I hope its ok I put a reference to you in my Thingiverse build as my bias is more HW. I managed to squeeze in all your sensors on a easy to print version. Dave
@ThomasPalowitchSr5 жыл бұрын
Thank you for the excellent video - very professional. You provided a very thorough and detailed method to follow. I can't wait to get started on my own project.
@atdforgebc46054 жыл бұрын
How to change cn and ce pin in the setting. Pls I really need know. My pins are already occupied. I only have 10 and 2 and my board is already set.
@mykeruiz21293 жыл бұрын
This is a great video. I am trying this robot car. Though I encounter some problems on the transmitter side it says "init failed" on the receiver side it says "sendtoWait failed" and there are values given by x and y axis. Is there a problem using a clone arduino UNO as receiver and original arduino UNO as transmitter?
@coryknipe54713 жыл бұрын
I am wondering if you can do a video with proximity sensors and beeper. I have a Harley trike that I am going to experiment with and can not tell how close I am to things when backing up or to the sides of the widest points at the rear. Thought this would be a neat project and very inexpensive. Thanks and keep up the great videos.
@jrareas4 жыл бұрын
This was awesome. i made my own using arduino nano and a shield. Thanks Bill.
@mrafayshams30896 жыл бұрын
Sir can you please work with the SIM800L GSM module? please? I have searched the entire internet but have not found a good and simple tutorial. You do an amazing job explaining everything in detail. Sir please make a SIM800L GSM module tutorial video. It will do wonders.
@rockfan79595 жыл бұрын
You are a super kind teacher. Thx!
@umairraza75426 жыл бұрын
Superb Video... i Have learned so many things its great.. i will be highly grateful if u will upload any tutorial on 2-way communication using these NRF24L01 modules..
@elnursucayev66255 жыл бұрын
Thanks for your all videos
@willofirony6 жыл бұрын
Great video and the perfect length. That having been said, I am a member of a generation for whom an expected concentration span in excess of 5 minutes is NOT cruel and unusual punishment.
@Dronebotworkshop6 жыл бұрын
I'm happy to hear you say that Michael, I always worry that my videos are too long but I also don't want to leave anything out. Thanks so much for your comment.
@jean-christophesicotte-bri13156 жыл бұрын
you can always remember people they can change the playback speed! 1.25 or even 1.5 is alright since you speak loud and clear
@Taran726 жыл бұрын
thank you for the video! the Radiohead library with the reliable datagram code is the only one that's working for the NRF24L01 modules I got. I also like your code because it's simple and efficient. Yes, it's better to figure out the joystick position at the transmitter and then send just one enable command vs sending the joystick encoded value to the receiver. I will use this code to complete my RC tank project. :)
@dominickcivitano27173 жыл бұрын
Hi there! really solid video but I need some help. For some reason it says init failed. I've triple checked the circuit, replaced almost every single part and have gotten no results. any way you could help me?
@plebaniaurydzyka83564 жыл бұрын
DroneBot Workshop , can I use this device with AtMega328 which you showed in one of your videos? I am using that device and I have problem because every time I use it I see "init failed" on the Serial monitor.
@grahamvernon39634 жыл бұрын
Great programes & as a 78yrs old I am trying to find witch two wires you are suggesting That were swap around (Input & output) as I am new to wireless controls With the nRF24LO1?
@stephanbecker63944 жыл бұрын
Hi there! i realy enjoy your lessons. and i was wondering if its possible by using arduino uno (or micro) with wifi (wifi over things) meaning controling things by using arduino uno (micro) over internet
@JoLo-vx1nb2 жыл бұрын
Bill. I found that the latest RadioHead library zip file is quite different than the library you used.(even the example). Using this library does not allow your sketch for the robot car to work. Can you comment on why this may be the case? Can you do an "update" on this video with the latest RH library? The proper pin numbers to use for a nano and/or a Mega 2560 would be helpful. They are not shown in the sketch or the software. I know my hardware is OK since I have an old sketch that still works with the same nRF24L01 hardware but with RF24 software. The RadioHead software is confusing to me ( pin #s and commands) also to many other users. Using for Nano (pins 8,10) and for Mega(8,53). A simple example of how to send /receive a few bytes of data would be extremely helpful.THANK YOU !!!
@bigdavid33192 жыл бұрын
Thanks for the information it was of great help
@pieceofcake20574 жыл бұрын
is it possible to use a nano on this project?
@jbflores013 жыл бұрын
excellent tutorial! thanks for the detained instructions and reasoning...
@Coffee-hh6we22 күн бұрын
omg thank youuuuuu finally a code that worked
@MagicSmoke114 жыл бұрын
Where could be that Labeling issue on that adapter board you mentioned ? My adapter board also having issues in configuring. Where could be that labelling to check for ?
@cosmikodes5 жыл бұрын
I ve made it two times, but it works like a charm
@henkoegema63902 жыл бұрын
Excellent explained!
@Subrara.2 жыл бұрын
A great and outstanding project.Thaks
@warrenscorner4 жыл бұрын
Haha, glad I watched until the very end to see the bloopers!
@jupiterpaintingllc14315 жыл бұрын
Teacher, excellent video and explanation, I'am learning a lot. thank You
@panwarhappy93684 жыл бұрын
Your workshop is nice
@isaacstitely16793 жыл бұрын
Please help. I have triple checked my wiring and code but I can’t get this to work. The serial monitor is showing the joystick sketch as working and transmitting. However, the car sketch only shows “obit failed.” What am I missing...?
@semihk093 жыл бұрын
Did you program the receiver and transmitter circuit on a single computer? How can I open two different serial monitors on the same computer?
@MrMully032 жыл бұрын
I'm confused with your if statements in the steering section, wouldn't your if statements for >255 and
@leyuanma48864 жыл бұрын
Thanks very much for your sharing. I tested my robot car as you taught, but the joystick side always shows "sendtoWait failed",could you please provide me some possible troubleshooting techniques? I would be very appreciated. Thank you very much !
@karthickkumar98216 жыл бұрын
Thankyou So Much for the Video Explanations.... Very Easy in Understanding..Intresting too. !!!
@basantsinghtomar33544 жыл бұрын
I m trying to connect many times but receiver code is not working please let me know what is the problem in receiver code.
@RemoteWatercraft2 жыл бұрын
Thank you for all your videos. They are excellent!. I would like to know how I could transmit the car battery voltage back to the transmitter and display it on an LCD In my case it's a boat and the voltage is 12 volts.
@ECE_Engineering4 жыл бұрын
I tried replicating the work you have done but I could not succeed as Server module prompts the message "Init failed". What could be the reason?
@3nagib3 жыл бұрын
Tried got initialise failed
@DiscoveryNewsNow4 жыл бұрын
if you are using a mega you will also need to add the following code RH_NRF24 driver(8, 53) in the datagram sketches and RH_NRF24 RadioDriver(8, 53); for the joystick sketch as well as change the pin out if you do not make this change to the code it will not work. Great videos thank you
@leglessinoz3 жыл бұрын
What changes need to be made to control two servos rather than two motors using these same arduino circuits?
@bigsteve67293 жыл бұрын
Cool video, do you know the practical range of those antenna'd modules. For example, what is the max range inside a home
@Jair04forever5 жыл бұрын
Amigo,deseo que la vida te de mucha salud y bienestar,para que nos sigas compartiendo tus conocimientos,tus proyectos son excelentes y nos permiten aprender,ojala otros tuvieran las mismas intenciones y no solamente por un numero de visitas.Gracias. Friend, I hope that life gives you a lot of health and well-being, so that you continue sharing your knowledge, your projects are excellent and allow us to learn, hopefully others had the same intentions and not only for a number of views. Thank you.
@kevinbass8851 Жыл бұрын
@10:25 when you say "input and output pins" are you referring to MO and MI as labeled on the adapter???
@lenyportilla98595 жыл бұрын
Your job is outstanding. Excellent. Question.... can i use 12v or 24v motors, if yes, how?...
@mykeruiz21293 жыл бұрын
I've done it. The problem I encountered is the loose connections of wires. Next project I'll try to use MPU6050.
@mohamedjamesha12896 жыл бұрын
Thanks for your tutorial sir, but my setup takes too much response time how to rectify that? Also I am using 9v battery for powering both Arduino and motor driver instead of 12v, whether this may the reason for delayed response?
@fieroboom3 жыл бұрын
Holy camera switching Batman!! 😂🤣 Great tutorial!!
@bigsteve67293 жыл бұрын
Love it when he does the camera switch always makes me chuckle 😁
@PyroRob693 жыл бұрын
Without digging through the libraries, is the reliable datagram encrypted? Is the encrypted traffic reliable?
@lincolnhahn86093 жыл бұрын
I have done everything in the video and it doesn't work
@dancowan61305 жыл бұрын
Awesome awesome teaching sir. TY so much.. have you ever done one of these videos with and rc receiver and controller. I have built this one following your teachings but could you add an RC receiver instead
@partouelectric23534 жыл бұрын
Thank you very much, sir, for the great videos you are a great teacher How many meters will the signal go without an external antenna
@pcninstrument34245 жыл бұрын
Great video, I would like to ask is the maximum distance I can control, thank.
@goutamdutta17344 жыл бұрын
Very helpful, interesting and informative video. I am going to play with some RF modules to make a low cost Robot Car to accomplish some household activities. Just one question here - what about 433 Mhz RF Transmitter and Receiver Module, any drawback or major theoretical difference? Will be very helpful f you reply or make a video of comparative analysis of different RF modules.