The nRF24L01 - Wireless Joystick for Arduino Robot Car with nRF24L01+

  Переглядів 402,169

DroneBot Workshop

DroneBot Workshop

День тому

Use the nRF24L01+ to build an Arduino Robot Car with a wireless joystick!
Get all the code and more info about using the nRF24L01+ at dronebotworkshop.com/nrf24l01...
More articles and tutorials: dronebotworkshop.com
Join the conversation on the forum: forum.dronebotworkshop.com
Subscribe to the newsletter and stay in touch: dronebotworkshop.com/subscribe/
Let’s learn how to use the nRF24L01+ radio modules! These inexpensive devices can add 2-way wireless communications capability to any Arduino project and once you understand how to work with them they are very easy to use. They perform well both indoors and outdoors.
We will use a couple of nRF24L01+ modules to construct a wireless remote joystick for the Robot Car that we constructed in an earlier video. If you haven’t seen the original robot car video you can take a look at it here - • Arduino Robot Car with... .
Actually, you can use this setup with any robot car base as the speed sensors we used in the original video are not used in this design.
In order to simplify our work with the nRF24L01+ modules, we’ll make use of the RadioHead Library, a very versatile Arduino library that works with all sorts of radio modules to provide advanced communications capabilities. We’ll examine a basic client-server data exchange system and a more advanced 2-way system that uses the “Reliable Datagram” method of packet communications. This is the system that we will adapt to use with our robot car joystick.
Even if you have no desire to remotely control a robot car you’ll still find the lessons valuable as they show you the basis of exchanging sensor and text data between two Arduinos. You can use this code in other remote sensing and control projects.
As always the code for everything, along with a detailed article, can be found on the DroneBot Workshop website.
It’s a VERY long video today, even for me! So if you want to skip ahead to the part that most interests you here’s the table of contents - just click on the timestamp to move to that part of the video:
00:00 - Introduction
04:22 - Introducing the nRF24L01+
09:16 - Tips for using the nRF24L01
12:06 - Hooking up the nRF24L01 module to the Arduino
14:23 - RadioHead Library Intro
17:44 - The Radiohead Library Basic Client-Server
24:08 - Demo 1
26:18 - Radiohead Reliable Datagram
31:57 - Demo 2
33:03 - Joystick Demo Hookup & Code
40:36 - Joystick Demo
42:36 - Wireless Joystick Hookup & Code
59:51 - Wireless Robot Car Demo
01:02:14 - Car Crash Bloopers!
I even threw in a “bloopers” section for those of you who manage to make it to the end!
If you have any questions about using the nRF24L01+ with the Arduino please let me know in the comments. And if you haven’t subscribed to the channel yet please do!

КОМЕНТАРІ: 361
@TheMarbo74
@TheMarbo74 3 роки тому
I can never understand how some people can put thumbs down on any of your videos.
@marvelous1751
@marvelous1751 3 роки тому
fr
@muhammadsalmani7709
@muhammadsalmani7709 Рік тому
@@marvelous1751 ĺ
@musickorner69
@musickorner69 5 років тому
Most comprehensive NRF robot car in UKposts by far! Thanks! It really helped a lot understanding NRF module. Take care man. 😊
@samhintz8479
@samhintz8479 3 роки тому
You seriously have one of the best channels i’ve seen! Quality videos and quality information. Keep up the good work!
@ericlayton3300
@ericlayton3300 4 роки тому
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!!
@SVSunnyJim
@SVSunnyJim 2 роки тому
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.... 👍
@padmalayarawal3091
@padmalayarawal3091 5 років тому
You are super awesome teacher...... You don't leave anything about the topic and explanation is excellent 👍
@landmarker
@landmarker 2 роки тому
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 :)
@TheAFWWA
@TheAFWWA 2 роки тому
WOW. One of the most comprehensive videos I have ever seen. Amazing video quality and editing too.
@r.a.monigold9789
@r.a.monigold9789 5 років тому
...our reward - watching the next video!!! Thank you for sharing...
@maxwong6371
@maxwong6371 5 років тому
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.
@asadparvez5958
@asadparvez5958 5 років тому
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
@sifatrahman2749
@sifatrahman2749 4 роки тому
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!
@morosanvalentin2524
@morosanvalentin2524 3 роки тому
me too . i agree ! this man is SAINT !
@w.1929
@w.1929 3 роки тому
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! 🏃‍♂️
@joriskingma
@joriskingma 6 років тому
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!
@emiliomartineziii2980
@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!
@tubeDude48
@tubeDude48 4 роки тому
This proved to be very useful. Thanks Bill!
@NickCornaglia
@NickCornaglia 6 років тому
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!
@Dronebotworkshop
@Dronebotworkshop 6 років тому
You're welcome Nick, glad I could inspire you. Be sure to let us know if you build something interesting with your RF modules.
@tehosdevs1727
@tehosdevs1727 2 роки тому
@@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.
@marty812
@marty812 5 років тому
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.
@cosmikodes
@cosmikodes 5 років тому
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.
@willytwo53072
@willytwo53072 4 роки тому
Great job as usual. Really enjoy your shows!
@Vip3rNZL
@Vip3rNZL 5 років тому
Really enjoy your videos, had to pause the video just to let you know! :) please whatever you do, don't stop making them! :)
@ThomasPalowitchSr
@ThomasPalowitchSr 5 років тому
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.
@MattyEngland
@MattyEngland 5 років тому
Thanks for all your hard work doing these videos.
@stevealdrich2472
@stevealdrich2472 4 роки тому
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!!!
@justfun9971
@justfun9971 4 роки тому
Does it work
@deltaworkshop8181
@deltaworkshop8181 3 роки тому
@@justfun9971 obvious man 😃😄
@jrareas
@jrareas 3 роки тому
This was awesome. i made my own using arduino nano and a shield. Thanks Bill.
@brianjohnson2059
@brianjohnson2059 6 років тому
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!
@yasserhussein666
@yasserhussein666 5 років тому
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
@alexmarkovic5871
@alexmarkovic5871 5 років тому
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.
@michaelgad4187
@michaelgad4187 3 роки тому
Your videos are super! I cannot thank you enough!
@rockfan7959
@rockfan7959 5 років тому
You are a super kind teacher. Thx!
@naboulsikhalid7763
@naboulsikhalid7763 5 років тому
what can I say, Thank you very much. You become my mentor, and I am proud
@davidbock5148
@davidbock5148 3 роки тому
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
@saeedsobhani4213
@saeedsobhani4213 Рік тому
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.
@warrenscorner
@warrenscorner 3 роки тому
Haha, glad I watched until the very end to see the bloopers!
@Taran72
@Taran72 5 років тому
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. :)
@toorgs6206
@toorgs6206 3 роки тому
Sir, your workshop is very well organized. I like so much
@naimmekni7536
@naimmekni7536 11 місяців тому
From tunisia 🇹🇳 i want to thank you for all your efforts and the excellent explication for everything ... thanks a lot again and bravo continue ❤
@bruce12000
@bruce12000 2 роки тому
Thank you so much for all the great videos and the teaching you do on UKposts for us Respect!👍
@jlucasound
@jlucasound 4 роки тому
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.
@markgilding6500
@markgilding6500 2 роки тому
Another great video Bill. Hope you are keeping well.
@jupiterpaintingllc1431
@jupiterpaintingllc1431 5 років тому
Teacher, excellent video and explanation, I'am learning a lot. thank You
@aardvarksrock
@aardvarksrock 5 років тому
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.
@mav29
@mav29 2 роки тому
that was thorough, very calm and very clear. thanks sir
@takumu.h8769
@takumu.h8769 Рік тому
Thank you so much! This video saved my lunar rover project.
@dancowan6130
@dancowan6130 4 роки тому
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
@dheerajdhanvee8569
@dheerajdhanvee8569 4 роки тому
Sir , I am so amazed with all the videos and projects that you have done ! They inspired me to think and try about different other aspects of these projects as well. But I am stuck at one doubt . How do I make this very wireless robot car GPS guided ?
@cosmikodes
@cosmikodes 4 роки тому
I ve made it two times, but it works like a charm
@pcninstrument3424
@pcninstrument3424 5 років тому
Great video, I would like to ask is the maximum distance I can control, thank.
@karthickkumar9821
@karthickkumar9821 6 років тому
Thankyou So Much for the Video Explanations.... Very Easy in Understanding..Intresting too. !!!
@kirisameari9154
@kirisameari9154 6 років тому
Thank you so much for this tutorial it was immensely helpful! I have faced one problem however... Everything works well, but on my client side I notice that my car's NRF module stops receiving the coordinates from the joystick. The serial monitor shows a few lines of coordinates and then it just stops. Sometimes it picks up one or two more lines sporadically. When I reset the joystick it receives a few more lines and stops again. Any idea what the issue is? I would be thrilled if I could get this to work well. Thanks a lot for your time and effort! It's appreciated
@rgonzalez5804
@rgonzalez5804 6 років тому
excellent video. A long one, indeed, with a lot of information to process. It'll keep me busy for a few days!
@rgonzalez5804
@rgonzalez5804 6 років тому
15:09 Radiohead ... not to be confused with the band that wrote the "ok computer" album ... LOL
@Dronebotworkshop
@Dronebotworkshop 6 років тому
Yes it's the longest one so far, but I didn't want to leave anything out. Check out the article if you haven't already, it's quite long too!
@umairraza7542
@umairraza7542 5 років тому
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..
@partouelectric2353
@partouelectric2353 3 роки тому
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
@Leoninmiami
@Leoninmiami 5 років тому
Great video! Thank you so much for these detailed videos and instructions. Would love to see one of these builds with the esp32 and motors with built in encoders. Those are fairly cheap these days. please Please PLEASE! Would you? ... please.
@xandcapcom
@xandcapcom 6 років тому
Congratulations on the tutorial, I would like to make a rover, with ps3 control, usb shield and nrf24. But I'm not able to run the usb shield with nrf24. I am using two Arduino UNO (TX and RX). Thank you for your help
@casemotube
@casemotube 4 роки тому
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
@morosanvalentin2524
@morosanvalentin2524 3 роки тому
wow..great video ! thanks again !
@garypowell2016
@garypowell2016 Місяць тому
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.
@ttmofy
@ttmofy 5 років тому
Great video and explanation!
@mohamedjamesha1289
@mohamedjamesha1289 5 років тому
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?
@elnursucayev6625
@elnursucayev6625 4 роки тому
Thanks for your all videos
@stephanbecker6394
@stephanbecker6394 4 роки тому
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
@Leroys_Stuff
@Leroys_Stuff 4 роки тому
Thank you for your time
@vk4865
@vk4865 6 років тому
A truly awesome, very informative and flawless video. Surely will try one day.
@Dronebotworkshop
@Dronebotworkshop 6 років тому
Thank you, I hope it does inspire you to build something with the nRF24L01 soon.
@vk4865
@vk4865 6 років тому
Yes, Sure Sir.
@nex1087
@nex1087 2 роки тому
At first I want to thank you for all your excellent videos! They might be a bit long but you go into detail and I love it. I started a project like this by my own but I want to add a few things. One of it would be to add an LCD Display to the joystick to show me the Information of the Sensors but I am not sure if it is possible with only one nrf24L01 or if I need 2 of them each ardiuno. It would really help me if you have an answer for this.
@bigsteve6729
@bigsteve6729 2 роки тому
Cool video, do you know the practical range of those antenna'd modules. For example, what is the max range inside a home
@jbflores01
@jbflores01 2 роки тому
excellent tutorial! thanks for the detained instructions and reasoning...
@thanhtunghoang924
@thanhtunghoang924 6 років тому
Thank you friends 😍
@Dronebotworkshop
@Dronebotworkshop 6 років тому
You are most welcome.
@thanhtunghoang924
@thanhtunghoang924 6 років тому
I subscribed to your channel, it's a really good video
@caddesignbytuvesdotter7003
@caddesignbytuvesdotter7003 4 роки тому
Thanks a lot for your excellent lessons! I am trying to use a Funduino joystick instead but unfortunately I can´t make the car stop or turn. Forward and reverse are working fine. Any chance you could explain how to make it work? Best regards.
@grahamvernon3963
@grahamvernon3963 3 роки тому
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?
@josverberkmoes9902
@josverberkmoes9902 Місяць тому
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.😀👍👍
@MaxImagination
@MaxImagination 3 роки тому
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 UKposts channel "Max Imagination"
@abpccpba
@abpccpba 2 роки тому
A great project as usual.
@mrafayshams3089
@mrafayshams3089 5 років тому
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.
@leyuanma4886
@leyuanma4886 4 роки тому
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 !
@hfe1833
@hfe1833 5 років тому
One of the best video I see on the net with crystal clear explanation and code
@wotesi
@wotesi 4 роки тому
Great video! Thank you! I have got question - I was testing two pcs of NRF24L01 (bought in Aliexpress) with adapter, but it appears that none of them was working. I was trying ling 4-5 times, counter-check everything several times, checked adapter - yes it gives out 3.2-3.3V, checked all pins. Sketch is as simple as possible, but nothing. You mentioned that is is possible that if NRF does not work then I have to change data pins - what pins exactly I have to change? And what do you think - could it be that both NRF modules I got are damaged? Thank you for helping me! Have a good day! Valters
@atdforgebc4605
@atdforgebc4605 4 роки тому
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.
@henkoegema6390
@henkoegema6390 Рік тому
Excellent explained!
@goutamdutta1734
@goutamdutta1734 3 роки тому
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.
@coryknipe5471
@coryknipe5471 2 роки тому
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.
@darlingtononwuemebolam767
@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
@Subrara.
@Subrara. Рік тому
A great and outstanding project.Thaks
@panwarhappy9368
@panwarhappy9368 4 роки тому
Your workshop is nice
@fieroboom
@fieroboom 3 роки тому
Holy camera switching Batman!! 😂🤣 Great tutorial!!
@bigsteve6729
@bigsteve6729 2 роки тому
Love it when he does the camera switch always makes me chuckle 😁
@mykeruiz2129
@mykeruiz2129 2 роки тому
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?
@treverbelmont8393
@treverbelmont8393 2 роки тому
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
@MagicSmoke11
@MagicSmoke11 3 роки тому
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 ?
@lenyportilla9859
@lenyportilla9859 4 роки тому
Your job is outstanding. Excellent. Question.... can i use 12v or 24v motors, if yes, how?...
@NanoVikings
@NanoVikings 5 років тому
hello, once I stop a wheel to turn the car, the engines will reverse, so one going forward and another back, as if it were the movement of a tank, what would change in the programming?
@tomjoad1060
@tomjoad1060 Рік тому
thank you for the video!
@jaed9173
@jaed9173 4 роки тому
great video, sir! can you please tell me how to add joystick and motor in the code? thank you for a ASAP reply, sir.
@steve8939123
@steve8939123 6 років тому
Well, I got my car working. I had to adjust the joystick values, mine went from 0 to 220. I used a car like yours but the kit came with 4 motors the right side two motors are wired in parallel so is the left side. It works ok but I can't figure out how when turning right or left how to get the motors to turn opposite of each other so it makes a sharper turn. Any help would be appreciated. Agan thanks for the VERY good tutorial.
@bigdavid3319
@bigdavid3319 2 роки тому
Thanks for the information it was of great help
@blizzard4025
@blizzard4025 3 роки тому
Thanks dude your video was amazing
@SuperSkullz27
@SuperSkullz27 5 років тому
gotta love the smooth side turn at 3:18 XD
@hanvann135
@hanvann135 5 років тому
great video. Thanks
@kartikeyasingh5755
@kartikeyasingh5755 6 років тому
What about the speed of bot? And also , what if we need to turn it on the spot i.e. one wheel going backwards and other forwards. Please, elaborate this.
@jeremybojaggins6691
@jeremybojaggins6691 5 років тому
all software at this point. just figure it out bruh. Thats the easy part
@josephocampo
@josephocampo 3 роки тому
Thank you very much sir!
@guywhoknows
@guywhoknows 3 роки тому
I was wondering if you would have used spi for transmission? I'm trying to hunt down interconnect My nano and esp32cam. While I could connect to the cam separately, it seems a shame to waste a nano if you can also connect via the WiFi. I understand that a controller is still required, as I don't think the cam has many ports that are usable. (Was hoping it had two to be useful as a cam pan and tilt)
Arduino Robot Car with Speed Sensors - Using Arduino Interrupts
49:12
DroneBot Workshop
Переглядів 375 тис.
RC Robot Car - RC Controls and Arduino
47:53
DroneBot Workshop
Переглядів 198 тис.
Що рятує українців від похмілля?😁 | #НовийКанал #ЄПитання
00:53
єПитання з Лесею Нікітюк
Переглядів 428 тис.
ISSEI funny story😂😂😂Strange World | Magic Lips💋
00:36
ISSEI / いっせい
Переглядів 106 млн
Which radio module? NRF24, LoRa, CC1101, HC12, 433MHz, HC05
17:00
Electronoobs
Переглядів 446 тис.
Arduino NRF24L01 Wireless Joystick Robot Car
9:52
Viral Science - The home of Creativity
Переглядів 17 тис.
Using Inexpensive 433 MHz RF Modules with Arduino
29:50
DroneBot Workshop
Переглядів 551 тис.
Using IR Remote Controls with the Arduino
35:28
DroneBot Workshop
Переглядів 924 тис.
LoRa Module VS nRF24 VS Generic RF Module || Range & Power Test
8:07
GreatScott!
Переглядів 629 тис.
ESPNOW RC Car using ESP32| Joystick Remote Control 👌🏻
9:59
hash include electronics
Переглядів 48 тис.
3D Prints Outside for 7 years: What happened? RMRRF2024
29:36
CNC Kitchen
Переглядів 97 тис.
Arduino + NRF24 simple tutorial and range test
12:37
Tehno Manik
Переглядів 341 тис.
How to Control a 12V Motor with Arduino: Easy Wiring & Code Examples
44:13
Rachel De Barros
Переглядів 367 тис.
ESP32 Guide 2024 | Choosing and Using an ESP32 Board
41:06
DroneBot Workshop
Переглядів 207 тис.
ОБУЧЕНИЕ ВОДИТЕЛЕЙ
0:18
В ТРЕНДЕ
Переглядів 10 млн
Collagen mask for dry hair 🔥#nouhailaait__
0:39
nouhailaait__
Переглядів 26 млн
Normal vs Smokers !! 😱😱😱
0:12
Tibo InShape
Переглядів 16 млн
ПОПРОБОВАЛА ТУ САМУЮ ХАЙПОВУЮ МОНЕТКУ
0:22
Tutorial de Hijab con Jackie Chan
0:48
Raúl Le Gusta El Coran
Переглядів 65 млн