Using Inexpensive 433 MHz RF Modules with Arduino

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

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

  • @emylrmm
    @emylrmm 3 года назад +43

    **important note**
    place a 100uF cap between VCC & GND close to the receiver. Any small ripple or noise or small abrupt changes in VCC will be amplified by the RX circuit and will show up as an output transition on the RX pin. This receiver has a lot of gain between VCC and DATA out, and that makes it very sensitive ( very twitchy ) to noise or tiny changes on VCC )
    if you run this from the VCC supplied from the Arduino board, then I would still recommend some bypassing right close to the VCC&GND on the receiver board.

    • @thisisyourcaptainspeaking2259
      @thisisyourcaptainspeaking2259 Год назад +3

      Have you tried a 0.01uf ceramic cap in this location? This is the typical value I reach for in such cases.

    • @Zerosoul191
      @Zerosoul191 7 месяцев назад +2

      YOUR COMMENT SAVED ME THANKS SO MUCH!!! my coding works after i put 100uF at 5v and GND at the transmitter

    • @emylrmm
      @emylrmm 7 месяцев назад +2

      @Zerosoul191 I'm happy to hear that!

  • @TinFoot
    @TinFoot 6 лет назад +25

    Video quality as well as crisp graphics are to die for. I particularly like the way you display hooking up wires. The colored line that starts from one point then seems to run across the screen until it terminates is very clever. Thank you for taking the time to create each project. I know it is time consuming.

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

    I tried one of those rx/tx pairs and could get it to work no matter what I did. So I gave up on the project. That was 4 years ago. This is the first video I've seen that explained how to use the rf modules and by watching your video I FINALLY know what was wrong. I saw the little coiled wire on the transmitter and receiver and assumed those were the antenna. Once you explained that an external antenna is required to get more than a couple of centimeters of range I realized that was my problem. My experiments had the two arduino about a foot apart and when it was not working I thought maybe they are too close so I moved the transmitting arduino across the room but that didn't solve the problem so in total frustration I gave up and moved on. Fours years later and I stumble on your video and watched it and thought wow...I can not believe that is all that was wrong. THANK YOU!!!

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

      Did you connect togather 2 GND of 2 Arduinos? I think it ia my problem. Thanks

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

    Impeccable video.
    One thing I noticed is that you are sizing your receive buffers to the exact length of the expected string, without accounting for a terminating null character ('\0'). Since you're passing in buffer length to the ASK library receive function, I expect that it's not writing a 25th null byte at the end. Later down in the code, you're using things like strlen() and println(), which depend upon a properly null-terminating string.
    Your code appears to work fine, but I suspect it's due to the compiler adding zero-padding between the 'buf' and 'buflen' variables for word-alignment, or maybe just uninitialized stack being full of zeroes. I mention this because it's somewhat delicate... reorder your variables or change some seemingly arbitrary detail (like length of the message), and it may stop working properly.

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

      Agreed. I looked at :recv() in RH_ASK.cpp. It copies at most len, or less depending. Then it returns the actual number of bytes copied into len. It doesn't null terminate the string. It doesn't really consider it a c-string, just a uint8_t buffer. Then in the code above, this buffer is cast to a (char*) for printing. No one is adding a NULL at the end of the c-string.
      He must be getting lucky. Perhaps as you say because the compiler is padding out the stack with zeros. It doesn't seem necessary to do this, as the declaration of buflen comes immediately after the declaration of buf, and is also 8-bits long. I'm not sure, but looks like luck.

  • @anthonyfudd6040
    @anthonyfudd6040 5 лет назад +27

    This channel is like Mr Roger's Neighborhood for nerds. Love it!! Keep up the good work, Dronebot!

  • @royfrenzel1704
    @royfrenzel1704 5 лет назад +10

    Sir, your videos are like your workshop: Clean, well organized, and full of useful stuff. I have learned a lot from you. Thank you!

  • @mrmatias2618
    @mrmatias2618 5 лет назад +22

    I wish I could spend my summer internship with you mentor. Indeed, you’re gifted teacher. 🎖🎖🎖All the best from Angola 🇦🇴

  • @bleakrevel
    @bleakrevel Месяц назад

    Absolutely yes, thank you. People like yourself make it easy for us to build project in a much shorter period of time.
    In my case I want to use the rf modules to keep two Arduinos in sync whilst controlling two sets of addressable LEDs

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

    Ive bought these modules a year ago, only difference mine are tiny size, 1cm by 1cm, never had a need to use till now. Your tutorial helped me to connect everything and get it running in just over 5 min, thanks

  • @opalko67
    @opalko67 Месяц назад

    This is too cool. I bought a 433Mhz set similar but not exactly like the one you used. No documentation with components and I had no idea how to use until today. Thank you for this great teaching video. Hope you're doing well.

  • @williamkohl8081
    @williamkohl8081 4 года назад +6

    The SDR (software Defined Radio) is a great tool for working with the transmitter module. You tune the radio to 433mhz and you can see the signal. It will tell you if you are transmitting . I found a dead transmitter this way. Also you can determine the exact frequency it is transmitting on when the radio is calibrated. Also you can see how your body interferes with the radio.

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

    An excellent guide to the 433MHz modules. The trick with adding a 17.3cm wire to the GND really improved the range. Just one thing is slightly misleading and that is the buffer size. You imply that the buffer size should be equal to the message length, whereas it should be equal to or greater than the expected message length. Just a friendly hint, for those who take things literally!!
    I have to correct my statement a little. Some buffer sizes, longer than the expected string length, will return the correct string, whereas others seem to add spurious characters. If you use this fixed buffer length, I guess there are going to be problems when the length of the floating point temperature goes under 10 degrees C down to zero or below -9.9 degrees C, as the whole string length changes by one character.
    It may be better to read the raw data string, i.e. 40 bits, and transmit that to the receiver to do the checksum and conversion work! Just MHO.

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

    I watch your videos and look forward to the next like TV shows. Keep up the hard work! It would be cool to see a series of an ongoing project where each episode teaches a new part of the project.

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

      Glad you are enjoying them, as long as you are I'll keep making them. I actually was thinking of doing something like you suggested, I have a few robotics projects on the go that would be much too long for a single video (even for me).

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

      @@Dronebotworkshop I think there is a lot to be said for viewership and shorter videos overall. Maybe a multi-part sequence on a series of related topics.
      Just started watching your vids. Really like them. Just a little long for one sitting.

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

    This video made me realize I inverted data and Vcc on my transmitter and yet it worked. A testament at how simple the circuit actually is I guess.

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

    I have tried it and it works. I tried another libraries and examples but nothing worked but your tutorial did. Thank you very much.

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

    Exceptional! Yours is the first channel I have ever subscribed to. And I am a technician/engineer with almost 40 years experience. It is that good.

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

      Wow Randy, I am honored. Thank you so much for subscribing, I'll do my best to make it worth your subscription.

  • @alibayati5704
    @alibayati5704 5 лет назад +7

    Bill ... you and your workshop are fantastic.
    One of the best educational channel for Arduino, on youtube!
    Keep going dude ! :-)

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

    I like your channel the way you are teaching is good..you are not showing off anything ..you are just doing your job unlike many other people....

  • @omskariyazmaraikayer913
    @omskariyazmaraikayer913 6 лет назад +97

    A lot of planning and hard work must have gone in making these videos. I am a little ashamed to just say thank you . Thank you Sir.

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

      ❤️👍

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

    This was really helpful, since I am starting a youtube channel like you. Awsome work. Got yourself another subscriber. :) Keep it up.

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

    Great Video. Just a note, you can have two instances of the Arduino IDE going connected to two Arduinos each with their own Port, so you can have transmit in one and receive in the other and monitor both Serial streams.

  • @colepdx187
    @colepdx187 5 лет назад +7

    I'm so envious of your workshop. Very impressive and great lessons. You've been a huge help in my quest to learn micro-controller programming. Thank you.

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

    This video literally saved my life right now... This channel is amazing, very clean video, very well explained, thank you so much

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

      Carlos Solórzano and by literally you mean figuratively. 🤦‍♂️

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

    Very well-explained. I like how you point to other resources if one wants to expand the project or learn more

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

    Very well explained, the antenna length of 17,3 cm is a great advise. You said something like there is no split function, maybe it is a good idea to stimulate to create one, a function, and put into your toolbox (a library - toolbox.h|toolbox.cpp) so you don't have to invent the wheel next time you need such function. In the arduino community I dicovered people repeat similar steps over and over again, they using libraries of others however don't create libraries themselfs.
    As result, you will notice large sketch files with just a few changes (copy-paste) and horrible to maintain. People must start/must learn to create functions to split the problem into reusable parts/snippets, especially when project starts small and extend over time (it usually does).
    Supporting this method of developing a solution will be a great addition to your channel and the very clear explained content. Keep up the good work ;-)

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

    One of the best if not the best tutorial for RF module and arduino.... Thank you for sharing, it will help us newbies in this world of arduino.

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

    thanks bill for how you explain the topics from time to time.
    for the truth from my point of view I have to thank you twice ..
    The first for the way in which it presents the topics, complete, simply and in their essentiality.
    the second .. your pronunciation in English, for someone like me (Italian) who does not know English perfectly, I can follow the words and understand almost perfectly.
    I think you have a "gift" .. know how to explain complex things in a simple way but with a great experiencer behind.
    Many thanks BILL

  • @ufohunter3688
    @ufohunter3688 6 лет назад +85

    You have the best crash courses on the planet.

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

      Wow, the whole planet? Thank you so much, you made my day!

    • @EagleClawPK
      @EagleClawPK 6 лет назад +8

      Planet? I would say, in known universe :)

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

      Nice joke or "marketing" ...

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

      @@Dronebotworkshop Indeed! ;-)

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

      @@Dronebotworkshop sir I have just started with these modules so this video is like a guide to me. Thank u very much sir loves from India

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

    I really enjoy Dronebot Workshop videos! Great job!

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

    Thank you very much for the interesting and neat lessons. For me it is like a gift - I learn a lot each time I watch one of your videos, as if I had a personal teacher. You must spend hours and hours to prepare, record and edit the lessons.
    I fear a lot of people think you choose a subject, play a little with the idea and record what you do - DONE !
    But I can imagine you spend a lot of time, just to give us means to understand and explore electronics.
    Thank you !

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

    The c_str() function converts a String (class) object into a C-style array of characters. Specifically, it returns a constant char pointer, which is used to point to array of characters that are null-terminated to make them a (C style) "string".

  • @DougHanchard
    @DougHanchard 6 лет назад +9

    A few comments on a very good video presentation on 433 spectrum radio usage.
    In Canada, the CRTC is the regulatory affairs organization for Commerical Radio and Television operators.
    Actual spectrum management and technical compliance standards are managed and regulated by Industry Canada, a Federal Government Agency.
    My second point for users wanting to use this spectrum is to be aware 433 MHz is the frequency range allocated for RFID use in many countries. I'm not sure what the latest FCC Regulations are for the U.S.
    Here is a link to Industry Canada 433 MHz and other ISM bands;
    www.ic.gc.ca/eic/site/smt-gst.nsf/eng/sf01320.html

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

    For better results try a different and better receiver called RXB6, a little more expensive.
    The transmitter can be powered with up to 12 Volts. The maximum datarate is about 2000 bits per second.
    Enough to transmit small messages from temp and humidity sensors like DHT11 or DHT22, or LM35, TMP36 temp only.
    For even longer range you can try nRF24L01. Range here is about 1km in open air with a good antenna using 2.4GHz.
    Very good tutorial as usual. Thanks.

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

    HUGE help!!! After watching this video, was able to help my son build a transmitter that sends an alert message after tripping a tilt switch. Thank you!

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

    Hello Sir can I use an arduino uno and nano for making this as both are arduino boards?? Plz doo help sir...

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

    Great video !
    It demonstrates the basic setup needed for a remote temperature sensor, which can be used for your central heating systems climate correction curve.
    You just need to fiddle with the correct choise of components and arduino code, to have the sender use as little current as possible, thus making the battery last for a couple of years.

  • @RahulJain-rj6jw
    @RahulJain-rj6jw 4 года назад +1

    You are seriously amazing. You explain so well that anyone can understand. Really helped me

  • @pyromaniac1695
    @pyromaniac1695 5 лет назад +78

    "So for less than a cup of coffee, you can add radio communications capabilities to your arduino projects"
    but how do i do the project without my cup of coffee :'(

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

      Pyromaniac, I can enjoy a good cup of coffee, but do you really mean that it is difficult for you to work without an infuse of coffee in your system or you just said it for the comical aspect of the comment?

    • @omar10wahab
      @omar10wahab 4 года назад +10

      @@johanfer you're a dumbass. If you ever thought you were smart, think again

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

      wrong teacher ;)

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

      You want to use it as a way to set things off from a distance. Lets say for a rocket, or some fireworks? Your name actually implies something along those lines. Am i right?

    • @JonnyLee
      @JonnyLee 4 года назад +3

      @@johanfer ugh

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

    Great tutorial! Very clear explanation with just the right amount of details. Love the code examples and the accompanying write-up too. Thanks.

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

    One of the best tutorials I ever saw. Thanks for your great effort.

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

    i can say the only guide out there that helped me to establish a simple communication!

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

    That is the cleanest most organised electrical desk I have ever seen!

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

    Excellent. Just what I was hoping to achieve with my temperature, pressure and humidity weather station as the British weather can be a little unpredictable. I may even expand it to include wind speed. Thank you very much for a detailed and well explained video. Keep up the good work.

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

    Transmitting between the two modules 'manually' that is without the Arduino is mentioned at about ten minutes into the video. Where could one find more info on a single channel transmission without the Arduino? Thanks. Allen in Dallas

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

    Can we make received signal analogy by Removing or bypassing the comparator ?

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

    One of the best parts of these viedeos are all the real world devices one can use.

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

    I love this man, he really gives details about what he is doing.

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

    Wow, before i have seen you, i thought you were young, you have a young clear voice! Perfect for people who don't speak english just like me.

  • @NC-cz9jn
    @NC-cz9jn 2 года назад

    brilliant video. how would you extend this to broadcast a pre-recorded voice message that could be heard by a handie monitoring the right frequency?

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

    Good tutorial! would like to see the sketch for adding a dip switch on each board to pair the TX & RX boards.

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

    Thank you for this informative video! I have several projects where I want to make use of Arduino's capabilities, but I got a long way to go to figure out the proper way to make everything to talk to each other and write the proper sketch! Thanks for sharing and keep up your great work!

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

    First, let me say that I thoroughly enjoy the quality and content of your videos. I am working on a project that enables me to have a remote throttle for a 25hp 2 stroke engine. The distance will ALWAYS be less than 4 feet. Of the various transmitter and receiver types I've seen you and others present, which would be best for this. I also need to consider wire shielding from the noise created by the spark generation for the motor. It is my intention to use some type of servo at the throttle and a hand held, remote throttle.

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

      I have been kicking around this same idea for a couple of years. How is your project coming along ?

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

    The Canadian counterpart to the FCC is Industry Canada which is responsible for the enforcement of the Radio Communications Act in Canada. This was the responsibility of the Department of Communications. The CRTC regulates the big broadcasters and large telecommunication companies such as Bell Canada and Rogers Communications .

  • @acestudioscouk-Ace-G0ACE
    @acestudioscouk-Ace-G0ACE 3 года назад

    Interesting and useful. I need to look to see if you have done a video on controlling a stepper motor using rf type modules. I'm working on a small antenna rotator for the loft.

  • @apollowellstein188
    @apollowellstein188 Год назад +1

    Some reason with mine I cant seem to get the packets to be received unless it's basically ontop of it.

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

    The module's name was difficult to discover. It was in the description, "bRF24L01", but searching Google with that did not give much information or where to buy. It seems that 433Mhz is not the feature of that particular hardware. Just search Google for "433Mhz Arduino" instead. I have found a $1 module that looks similar to the ones in the video, on an online store in my country. That module was named "DM2146".

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

    Thanks for this video very professional presentation just want to ask if you can features 433mhz Transceiver module I guess it will more compact

  • @thelaststanding97
    @thelaststanding97 2 дня назад

    thank you Sir for a very comprehensive and detailed video.

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

    Sir, Your channel is awesome... Very good quality content with clear explanations... I just have read your article given in the description... It's really amazing 🙏

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

    Do you post the code sketch for your projects somewhere? I find your tutorials very clear and well explained. Thanks

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

    Instructions
    12:55 min you give the link to theRadiohead library, which I found and downloaded
    then:
    'Head into your Arduino IDE'
    Er... how? So the crucial part of the whole project is omitted.

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

      contact me , i send it to you ! cdlt .

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

    And your workshop looks great and clean 🙂

  • @forestxu8369
    @forestxu8369 6 месяцев назад

    I have watched your youtube a lot. great contents. but I have one question about the data line by SPI. you use only one data line in both TX,RX. I am not sure how to get the data from one data line without clk ?

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

    Excellent teacher. What is the range of rf? Could the receiver be upstairs and transmitter downstairs?

  • @lars-erikeriksson9486
    @lars-erikeriksson9486 2 года назад

    Tack!

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

    Very interesting demo. But I was searching a method where the transmitter module is not using an Arduino, just something like a button when pressed is sending a signal (and when not pressed the transmitter still powered off to keep battery operation during very long life) like a button for door bell !

  • @mikesterling3949
    @mikesterling3949 Год назад

    What protocol is used for data transmission?
    I ask this because I see only one " wire" ( only one line). SPI library is used here, and I believe SPI needs at least two wires. - One for clock and one for data.
    Is this a "One -wire" transmission ( without clock ) ?

  •  2 года назад

    What a great video, thank you for your samples and especially great comented codes! :) It make me happy

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

    So, I've got a problem.
    I connected the receiver to an lcd keypad shield (16*2)(with a buzzer connected also), the code i used is perfectly fine. However the lcd screen just turns alot darker and no message appears in the system. It appears that the RH driver interferes with the lcd(when i delete the rf_driver.init(); it stops from happening)? Could anybody help me with this? I hope i described it good enough.

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

    Thank you so much for making this. This information will really help me with my EE capstone project!!!

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

    .... Great Channel .... can we connect the RF transmittal and rf receiver to same ardrion i mean as radar ????

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

    Can you show the antenna connections? I see ANT on the transmitter and comparing to your unit I think I see where to put my antenna. On the receiver, I'm not finding an ANT hole anywhere. I see one run that isn't signal, GND or VCC that ends up under a chip on the transmitter. Could that be it?

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

    Very helpful. Clear and easy to understand

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

    I really love your video's sir!
    I really love the neatness of your workshop! A real feast for the eyes and mind!

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

    Brilliant videos. Am looking at the IR controller section. Extremely well described! Thank you so much.

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

    How can you send variated message sizes? It seems to be limited to a constant message size now.

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

    can I use this set up to test tv, dvd or sat remote controls to see if every button is shooting IR out?

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

    I have a CVP model train decoder. Do you know which transmitter I would use to communicate with it?

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

    can i use it for rocket flight computer.

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

    Happy little transmitter has a friend named receiver. Great. Subscribed

  • @JerryEricsson
    @JerryEricsson 6 лет назад +3

    Thanks a million. I have had several of these little sets in my parts box now for several years, never really sat down to figure out exactly how to use them though. My need is for an outdoor thermometer mounted under the hood of my Class A Motor Home. She is an 03 but the makers never saw fit to put that system in the rig. I would like to have the output to an LCD display and combine it with an electronic compass that is also missing in the rig. Since we travel all winter, in the American South West, both devices are almost necessary, as of yet we are depending on our cell phone apps for compasses and have one of those home indoor-outdoor thermometers mounted on the Drivers Side wall but it is back in the dining area next to the booth, so not viewable while traveling, and is not wireless, it has a sensor that goes out one window and I have glued to the exterior wall of the rig. This tutorial should get me running with my system, I have may arduino's available in several types so building the devices should be a breeze, it is just the software that had me stumped this far, you have shown me the way, so thanks again!

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

    Hello, I have been trying to use the 315MHz transmitter/receiver pair following various RUclips videos and the signal level out of the receiver is very small, less than 100mV. I had expect the Receiver output signal to be much larger? Suggestions?

  • @kwacz
    @kwacz 5 месяцев назад

    I am trying to recieve the data from accurite wireless temperature sensor on arduino. Any idea how to do this?

  • @abd-elrahmanmohamed9839
    @abd-elrahmanmohamed9839 6 лет назад

    You are great in explaining things in awesome style

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

    whether this transmitter receiver pair can be used for making a walkie-talkie? i mean with two pair of transmitter-receivers? If not, please give me a brief explanation. I am novice in RF communication, but i know about voltage, current & arduino.

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

    That is the problem when you are so good you will be in great demand it's your own fault for being so good!! love the channel keep up the work your awesome and you smiled nice Bob in the UK

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

    Can you tell me what the current consumption of receiver module when ideal ON but not receiving anything?

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

    I've learned a lot from you. Thank you, Sir.

  • @markkennard861
    @markkennard861 Год назад

    Man when you getting old learning C is hard. Best I could do is blink a led in Morse code. Now Analog I get !

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

    Nice tut. But is there a way to connect sensor directly with transmitter without any IOT device?

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

    Can the infant red on a TV remote be used as a camera?

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

    how do interface an accelerometer and send the information using the RF transmitter

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

    @DroneBotWorkshop can this be used to chime an alarm when there is distance?

  • @Usuaurio-kj1ym
    @Usuaurio-kj1ym 2 года назад

    Hello, how could I use this module to read a 433.92Mhz TPMS tire pressure sensor with OOK PWM modulation and Manchester Thomas encoding? thanks

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

    I am currently doing a project using this.
    How do i implement sending a varying length of buf[]
    and still be able to read the data in receiver?

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

    best videos ever.. please never stop posting!

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

    This is really great! Very, very detailed and thorough tutorial.

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

    I would like to setup a long range offshore RC fishing boat, I have no idea what I need to purchase. I mean from radio to ESC to receiver. Where might I find a list of equipment I would need to make a nice little RC fishing vessel for a large lake and off shore? Ideas? 500 + yds is the goal is this reasonable? FPV is not required just boat control.. Thanks!

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

    Top notch high quality video! Very well presented and quite helpful to me, thanks.

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

    I really like all of your videos. Your method of teaching is great. Keep up the great work.