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

Поделиться
HTML-код
  • Опубликовано: 26 ноя 2024

Комментарии • 362

  • @TheMarbo74
    @TheMarbo74 3 года назад +12

    I can never understand how some people can put thumbs down on any of your videos.

  • @marty812
    @marty812 5 лет назад +11

    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
    @emiliomartineziii2980 Год назад +1

    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!

  • @SVSunnyJim
    @SVSunnyJim 2 года назад +1

    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.... 👍

  • @brianjohnson2059
    @brianjohnson2059 6 лет назад +11

    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!

  • @ansondhakim
    @ansondhakim 4 месяца назад

    After trying more than 10 different source, this is the one that actually works. Thank you.

  • @samhintz8479
    @samhintz8479 4 года назад +4

    You seriously have one of the best channels i’ve seen! Quality videos and quality information. Keep up the good work!

  • @TheAFWWA
    @TheAFWWA 3 года назад +1

    WOW. One of the most comprehensive videos I have ever seen. Amazing video quality and editing too.

  • @musickorner69
    @musickorner69 5 лет назад +3

    Most comprehensive NRF robot car in RUclips by far! Thanks! It really helped a lot understanding NRF module. Take care man. 😊

  • @padmalayarawal3091
    @padmalayarawal3091 5 лет назад +8

    You are super awesome teacher......
    You don't leave anything about the topic and explanation is excellent 👍

  • @sifatrahman2749
    @sifatrahman2749 4 года назад +7

    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!

  • @landmarker
    @landmarker 2 года назад +6

    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 :)

  • @yasserhussein666
    @yasserhussein666 5 лет назад +1

    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
    @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 ❤

  • @ericlayton3300
    @ericlayton3300 5 лет назад +1

    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!!

  • @stevealdrich2472
    @stevealdrich2472 5 лет назад +11

    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!!!

  • @casemotube
    @casemotube 4 года назад +2

    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

  • @cosmikodes
    @cosmikodes 5 лет назад +2

    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.

  • @aardvarksrock
    @aardvarksrock 5 лет назад +1

    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.1929
    @w.1929 3 года назад +2

    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! 🏃‍♂️

  • @garypowell2016
    @garypowell2016 8 месяцев назад

    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.

  • @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.

  • @ToorGS
    @ToorGS 3 года назад

    Sir, your workshop is very well organized. I like so much

  • @asadparvez5958
    @asadparvez5958 6 лет назад +6

    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

  • @saeedsobhani4213
    @saeedsobhani4213 2 года назад

    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.

  • @tubeDude48
    @tubeDude48 5 лет назад +1

    This proved to be very useful. Thanks Bill!

  • @josverberkmoes9902
    @josverberkmoes9902 7 месяцев назад

    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.monigold9789
    @r.a.monigold9789 5 лет назад +2

    ...our reward - watching the next video!!!
    Thank you for sharing...

  • @markgilding6500
    @markgilding6500 3 года назад

    Another great video Bill. Hope you are keeping well.

  • @darlingtononwuemebolam767
    @darlingtononwuemebolam767 Год назад +2

    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

  • @mav29
    @mav29 2 года назад

    that was thorough, very calm and very clear. thanks sir

  • @treverbelmont8393
    @treverbelmont8393 2 года назад +1

    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

  • @MaxImagination
    @MaxImagination 3 года назад +1

    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 RUclips channel "Max Imagination"

  • @hfe1833
    @hfe1833 5 лет назад +1

    One of the best video I see on the net with crystal clear explanation and code

  • @takumu.h8769
    @takumu.h8769 2 года назад

    Thank you so much! This video saved my lunar rover project.

  • @bruce12000
    @bruce12000 2 года назад

    Thank you so much for all the great videos and the teaching you do on RUclips 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.

  • @alexmarkovic5871
    @alexmarkovic5871 6 лет назад +2

    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.

  • @joriskingma
    @joriskingma 6 лет назад +2

    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!

  • @NickCornaglia
    @NickCornaglia 6 лет назад +5

    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 лет назад +2

      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 3 года назад

      @@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.

  • @michaelgad4187
    @michaelgad4187 4 года назад +1

    Your videos are super! I cannot thank you enough!

  • @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! :)

  • @MattyEngland
    @MattyEngland 5 лет назад

    Thanks for all your hard work doing these videos.

  • @mohdfarezsamin1493
    @mohdfarezsamin1493 5 лет назад +2

    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.

  • @Rexan
    @Rexan 4 года назад +4

    U are explaining everything soo good. Thank youu. :) I learned almost everything for arduino here on this channel. Thanks. :)

  • @gjdanco4260
    @gjdanco4260 3 года назад +2

    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.

  • @jordanmisseos7813
    @jordanmisseos7813 3 года назад +1

    Is there any reason why my nrf24l01 isn't initialising properly. It wont let me use the Arduino to send the data

  • @naboulsikhalid7763
    @naboulsikhalid7763 5 лет назад +1

    what can I say, Thank you very much. You become my mentor, and I am proud

  • @tancelik
    @tancelik 4 года назад +4

    how can i do this project with 4 engines and 2 l298n? would be glad for your answer

    • @nigeriarc3743
      @nigeriarc3743 3 года назад

      I think a single l298n would do the job,just connect two motors in parallel

  • @willytwo53072
    @willytwo53072 4 года назад

    Great job as usual. Really enjoy your shows!

  • @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

  • @ThomasPalowitchSr
    @ThomasPalowitchSr 5 лет назад +1

    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.

  • @atdforgebc4605
    @atdforgebc4605 4 года назад +2

    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.

  • @mykeruiz2129
    @mykeruiz2129 3 года назад +1

    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?

  • @coryknipe5471
    @coryknipe5471 3 года назад

    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.

  • @jrareas
    @jrareas 4 года назад

    This was awesome. i made my own using arduino nano and a shield. Thanks Bill.

  • @mrafayshams3089
    @mrafayshams3089 6 лет назад +1

    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.

  • @rockfan7959
    @rockfan7959 5 лет назад

    You are a super kind teacher. Thx!

  • @umairraza7542
    @umairraza7542 6 лет назад +1

    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..

  • @elnursucayev6625
    @elnursucayev6625 5 лет назад

    Thanks for your all videos

  • @willofirony
    @willofirony 6 лет назад +14

    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.

    • @Dronebotworkshop
      @Dronebotworkshop  6 лет назад +4

      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-bri1315
      @jean-christophesicotte-bri1315 6 лет назад

      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

  • @Taran72
    @Taran72 6 лет назад

    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. :)

  • @dominickcivitano2717
    @dominickcivitano2717 3 года назад +1

    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?

  • @plebaniaurydzyka8356
    @plebaniaurydzyka8356 4 года назад +1

    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.

  • @grahamvernon3963
    @grahamvernon3963 4 года назад

    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?

  • @stephanbecker6394
    @stephanbecker6394 4 года назад +2

    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-vx1nb
    @JoLo-vx1nb 2 года назад +1

    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 !!!

  • @bigdavid3319
    @bigdavid3319 2 года назад +1

    Thanks for the information it was of great help

  • @pieceofcake2057
    @pieceofcake2057 4 года назад +1

    is it possible to use a nano on this project?

  • @jbflores01
    @jbflores01 3 года назад

    excellent tutorial! thanks for the detained instructions and reasoning...

  • @Coffee-hh6we
    @Coffee-hh6we 22 дня назад

    omg thank youuuuuu finally a code that worked

  • @MagicSmoke11
    @MagicSmoke11 4 года назад

    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 ?

  • @cosmikodes
    @cosmikodes 5 лет назад

    I ve made it two times, but it works like a charm

  • @henkoegema6390
    @henkoegema6390 2 года назад

    Excellent explained!

  • @Subrara.
    @Subrara. 2 года назад

    A great and outstanding project.Thaks

  • @warrenscorner
    @warrenscorner 4 года назад

    Haha, glad I watched until the very end to see the bloopers!

  • @jupiterpaintingllc1431
    @jupiterpaintingllc1431 5 лет назад

    Teacher, excellent video and explanation, I'am learning a lot. thank You

  • @panwarhappy9368
    @panwarhappy9368 4 года назад

    Your workshop is nice

  • @isaacstitely1679
    @isaacstitely1679 3 года назад +1

    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...?

    • @semihk09
      @semihk09 3 года назад

      Did you program the receiver and transmitter circuit on a single computer? How can I open two different serial monitors on the same computer?

  • @MrMully03
    @MrMully03 2 года назад

    I'm confused with your if statements in the steering section, wouldn't your if statements for >255 and

  • @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 !

  • @karthickkumar9821
    @karthickkumar9821 6 лет назад

    Thankyou So Much for the Video Explanations.... Very Easy in Understanding..Intresting too. !!!

  • @basantsinghtomar3354
    @basantsinghtomar3354 4 года назад +1

    I m trying to connect many times but receiver code is not working please let me know what is the problem in receiver code.

  • @RemoteWatercraft
    @RemoteWatercraft 2 года назад

    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_Engineering
    @ECE_Engineering 4 года назад +2

    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?

    • @3nagib
      @3nagib 3 года назад

      Tried got initialise failed

  • @DiscoveryNewsNow
    @DiscoveryNewsNow 4 года назад

    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

  • @leglessinoz
    @leglessinoz 3 года назад

    What changes need to be made to control two servos rather than two motors using these same arduino circuits?

  • @bigsteve6729
    @bigsteve6729 3 года назад

    Cool video, do you know the practical range of those antenna'd modules. For example, what is the max range inside a home

  • @Jair04forever
    @Jair04forever 5 лет назад

    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
    @kevinbass8851 Год назад

    @10:25 when you say "input and output pins" are you referring to MO and MI as labeled on the adapter???

  • @lenyportilla9859
    @lenyportilla9859 5 лет назад

    Your job is outstanding. Excellent. Question.... can i use 12v or 24v motors, if yes, how?...

  • @mykeruiz2129
    @mykeruiz2129 3 года назад

    I've done it. The problem I encountered is the loose connections of wires. Next project I'll try to use MPU6050.

  • @mohamedjamesha1289
    @mohamedjamesha1289 6 лет назад

    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?

  • @fieroboom
    @fieroboom 3 года назад

    Holy camera switching Batman!! 😂🤣
    Great tutorial!!

    • @bigsteve6729
      @bigsteve6729 3 года назад +1

      Love it when he does the camera switch always makes me chuckle 😁

  • @PyroRob69
    @PyroRob69 3 года назад

    Without digging through the libraries, is the reliable datagram encrypted? Is the encrypted traffic reliable?

  • @lincolnhahn8609
    @lincolnhahn8609 3 года назад +2

    I have done everything in the video and it doesn't work

  • @dancowan6130
    @dancowan6130 5 лет назад

    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

  • @partouelectric2353
    @partouelectric2353 4 года назад

    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

  • @pcninstrument3424
    @pcninstrument3424 5 лет назад

    Great video, I would like to ask is the maximum distance I can control, thank.

  • @goutamdutta1734
    @goutamdutta1734 4 года назад

    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.