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

Поділитися
Вставка
  • Опубліковано 12 січ 2025

КОМЕНТАРІ • 363

  • @TheMarbo74
    @TheMarbo74 4 роки тому +12

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

  • @emiliomartineziii2980
    @emiliomartineziii2980 2 роки тому +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!

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

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

  • @SVSunnyJim
    @SVSunnyJim 3 роки тому +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.... 👍

  • @ansondhakim
    @ansondhakim 5 місяців тому

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

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

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

  • @TheAFWWA
    @TheAFWWA 3 роки тому +1

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

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

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

  • @musickorner69
    @musickorner69 5 років тому +3

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

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

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

  • @stevealdrich2472
    @stevealdrich2472 5 років тому +13

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

  • @pr2207A
    @pr2207A 5 років тому +8

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

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

  • @garypowell2016
    @garypowell2016 9 місяців тому

    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.

  • @w.1929
    @w.1929 4 роки тому +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! 🏃‍♂️

  • @maxwong6371
    @maxwong6371 6 років тому

    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.

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

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

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

  • @josverberkmoes9902
    @josverberkmoes9902 9 місяців тому

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

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

  • @hfe1833
    @hfe1833 5 років тому +1

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

  • @ToorGS
    @ToorGS 3 роки тому

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

  • @markgilding6500
    @markgilding6500 3 роки тому

    Another great video Bill. Hope you are keeping well.

  • @kevinbass8851
    @kevinbass8851 Рік тому

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

  • @takumu.h8769
    @takumu.h8769 2 роки тому

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

  • @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 UA-cam channel "Max Imagination"

  • @darlingtononwuemebolam767
    @darlingtononwuemebolam767 2 роки тому +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

  • @r.a.monigold9789
    @r.a.monigold9789 6 років тому +2

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

  • @mav29
    @mav29 2 роки тому

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

  • @tubeDude48
    @tubeDude48 5 років тому +1

    This proved to be very useful. Thanks Bill!

  • @nicklane5896
    @nicklane5896 8 місяців тому

    Thanks!

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

  • @bruce12000
    @bruce12000 2 роки тому

    Thank you so much for all the great videos and the teaching you do on UA-cam for us
    Respect!👍

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

  • @Vip3rNZL
    @Vip3rNZL 6 років тому

    Really enjoy your videos, had to pause the video just to let you know! :) please whatever you do, don't stop making them! :)

  • @Coffee-hh6we
    @Coffee-hh6we 2 місяці тому

    omg thank youuuuuu finally a code that worked

  • @michaelgad4187
    @michaelgad4187 4 роки тому +1

    Your videos are super! I cannot thank you enough!

  • @bigdavid3319
    @bigdavid3319 2 роки тому +1

    Thanks for the information it was of great help

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

  • @diyaaldeen1097
    @diyaaldeen1097 2 роки тому

    What a good thing to say in a video like this 0:18.

  • @naboulsikhalid7763
    @naboulsikhalid7763 6 років тому +1

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

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

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

  • @treverbelmont8393
    @treverbelmont8393 3 роки тому +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

  • @davidbock5148
    @davidbock5148 4 роки тому

    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 6 років тому +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.

  • @MattyEngland
    @MattyEngland 5 років тому

    Thanks for all your hard work doing these videos.

  • @Rexan
    @Rexan 4 роки тому +4

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

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

  • @henkoegema6390
    @henkoegema6390 2 роки тому

    Excellent explained!

  • @Subrara.
    @Subrara. 2 роки тому

    A great and outstanding project.Thaks

  • @jrareas
    @jrareas 4 роки тому

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

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

  • @willytwo53072
    @willytwo53072 4 роки тому

    Great job as usual. Really enjoy your shows!

  • @rockfan7959
    @rockfan7959 5 років тому

    You are a super kind teacher. Thx!

  • @elnursucayev6625
    @elnursucayev6625 5 років тому

    Thanks for your all videos

  • @Jair04forever
    @Jair04forever 6 років тому

    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.

  • @DiscoveryNewsNow
    @DiscoveryNewsNow 5 років тому

    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

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

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

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

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

  • @warrenscorner
    @warrenscorner 4 роки тому

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

  • @cosmikodes
    @cosmikodes 5 років тому

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

  • @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 років тому +1

      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!

  • @SuperSkullz27
    @SuperSkullz27 6 років тому +1

    gotta love the smooth side turn at 3:18 XD

  • @jbflores01
    @jbflores01 3 роки тому

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

  • @karthickkumar9821
    @karthickkumar9821 6 років тому

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

  • @panwarhappy9368
    @panwarhappy9368 5 років тому

    Your workshop is nice

  • @wowo3d877
    @wowo3d877 3 роки тому

    so cool bro..all your work is so fantastic......

  • @barmakkhodajan3770
    @barmakkhodajan3770 3 роки тому

    You really got magnetic personality

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

  • @jupiterpaintingllc1431
    @jupiterpaintingllc1431 6 років тому

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

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

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

  • @plebaniaurydzyka8356
    @plebaniaurydzyka8356 5 років тому +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.

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

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

  • @electronicsideabd
    @electronicsideabd 3 роки тому +1

    Big fan sir 👍

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

  • @treverbelmont8393
    @treverbelmont8393 2 роки тому

    can you show us how to use these to control multiple servo motors

  • @abpccpba
    @abpccpba 3 роки тому

    A great project as usual.

  • @duncanwalduck7715
    @duncanwalduck7715 3 роки тому

    The Radiohead library - helps ensure that there are No Alarms and No Surprises (please). Ok, Computer. Haha.
    (When I can't discipline myself to sit and watch a long video like this I might well swot up a bit of music instead!)

  • @MrMully03
    @MrMully03 2 роки тому

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

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

  • @RixtronixLAB
    @RixtronixLAB 2 роки тому

    Nice info, thanks for sharing :)

  • @vk4865
    @vk4865 6 років тому

    A truly awesome, very informative and flawless video. Surely will try one day.

    • @Dronebotworkshop
      @Dronebotworkshop  6 років тому +1

      Thank you, I hope it does inspire you to build something with the nRF24L01 soon.

    • @vk4865
      @vk4865 6 років тому

      Yes, Sure Sir.

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

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

  • @aerospaceengineer8484
    @aerospaceengineer8484 3 роки тому

    Hi can you make a video on how to control it with the X box controller

  • @tabishshah5559
    @tabishshah5559 Рік тому

    So we are 10 students and all making the same project, so for each project we can assign a different channel number? Or we will change the client and server addresses ?

  • @guywhoknows
    @guywhoknows 4 роки тому

    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)

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

  • @burakozsahin2624
    @burakozsahin2624 Рік тому

    Hi Sir,
    Thanks for the video and guide. But I have some several issues that I'm facing right now. I copied and pasted code for both tx and rx side. According to your video I also double-checked each pin which are connected to ardunios. Unfortunately, my setup is not working as yours. I cannot move the car with any of command which is coming from joystick. I figured out that even if communication is established between two ardunios the car doesn't move. Most of the times communication cannot be established. I'm using all components that you're using in the video please help me.