TUTORIAL: How to set up wireless RF (433Mhz) Transmitter Receiver Module - Arduino Quick Simple

Поділитися
Вставка
  • Опубліковано 7 жов 2024
  • For those who wish to support the channel, my Patreon account is here: / antonycartwright
    This short video shows you how I set up an RF transmitter and receiver on the Arduino. It also explains how to encode/decode a string.
    Library: www.airspayce.c...
    For Maximum Performance, watch this video:
    • INVESTIGATING: The Ran...

КОМЕНТАРІ • 238

  • @omar10wahab
    @omar10wahab 4 дні тому +1

    As someone with no knowledge about radio transmitting, you did a good job explaining what's going on in that code example and how to do the basic test with the module. This isn't no knowledge of everything easy but with basic Arduino and coding knowledge, you should do well with this tutorial

  • @suityou01
    @suityou01 4 роки тому +19

    I came here because I was looking for answers. You answered everything. Best voltage, best antenna arrangement, what about curly ones... All answered in entertaining informative content. Full marks. As a 23 year experienced software engineer your explanation of a const will stick with me forever. Legendary. :)

  • @wdujsub7902
    @wdujsub7902 3 роки тому +31

    For anyone confused why the antenna should be 17,3 cm long ... its because it is approx. 1/4 of the wavelength of the carrier wave which is the optimum antenna length for transmission and recieving.

    • @f.a3202
      @f.a3202 3 роки тому +3

      would it work if i make a spring with that length of wire?

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

      @@f.a3202 Yes, that works too

    • @HappyHermitt
      @HappyHermitt 3 місяці тому

      Gauge?

    • @omar10wahab
      @omar10wahab 4 дні тому

      ​@@HappyHermittalso curious if gauge plays into transmission

  • @emylrmm
    @emylrmm 3 роки тому +61

    **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 is very sensitive and has poor power supply rejection ( very twitchy to noise on VCC)

  • @pterodactylx3100
    @pterodactylx3100 4 роки тому +5

    I am using a raspberry pi but I still watched this for information and I wanted to comment that this is one for the better videos as there is no music over the voice (what a pleasant change) and it is also fully explained well

  • @CRETEJOE
    @CRETEJOE 2 роки тому +5

    Thank you Antony. I've just started with Arduino and my first simple project is to use this module. I've found lots of detailed coding but no one who has simply explained how to add the code to the library, until I found you. So far I have only installed the library and not set the circuits up but I'm already exited to finally get this far. Thank you John.

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

    Thank you so much for this! I am currently using this module for a school project and I was not able to get it to work as needed until I got to this video.

  • @minecraftcufanii7580
    @minecraftcufanii7580 3 роки тому +2

    I struggled with this for like 1h but this video help me a lot! Thank you very much ❤

  • @shingabiss
    @shingabiss Рік тому +1

    Very good tutorial, thanks. I ended up using the HT12E and HT12D, encoder and decoder chips, to process the serial data into bytes, check address etc then connected the data busses, xmt and receive to Arduino pins, works well. You commented the code was unnecessarily complicated, with these chips no library is needed just pinmode settings, digital write and read. The decoder chip has a VT pin, valid transmission pin you can monitor in the loop section to see if a transmission is coming in.

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

      He was commenting that the C/C++ syntax for a string constant (const char * ...) seems unnecessarily complicated, rather than the library. The Holtek (HT12E / HT12D) chips seem like a good way of doing it though. I looked into using them years ago but never got around to actually building something with them. If I manage to find them, I'll give it another go.

  • @bassome3000ify
    @bassome3000ify 6 років тому +15

    Do you know what I love about your channel? the content you create is practical and actually informative and useful. Keep it clear and easily understandable, cheers 👍

    • @AntonyCartwright
      @AntonyCartwright  6 років тому +2

      Thanks Mr Dosage! I try to make it this way. It's difficult running the channel though because some people like different things. It's taken me 18 months to understand what people like. Just under half of my subscribers seem to come here to see what interesting things I get up to - They seem to like quick/snappy/interesting/getting started/informative type videos - They come for interesting/fast/clear info. Just under half seem to use the channel for entertainment purposes - They seem to prefer the long/drawn out/boring/talking/chilling out type videos (The type which I personally don't watch). The remaining subscribers seem to split into another two groups; One group watches/likes all videos regardless of the subject, and the other group watches certain ones in order to pick faults - presumably in order to make themselves feel better... LOL. If you can give me any feedback on this, that would be great!

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

      Antony Cartwright can u start a car for this

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

    Just to test it for myself, I put those little coil antennas on and got a few feet of distance! Made the length wire antenna you suggested and it's great! Thanks.

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

    Good Tutorial. Many thanks !
    you can change the communications speed by the way
    lower speed = less errors = longer range = longer message time
    i tested speeds as low as 25 bits/sec , works but takes forever to send few bytes

  • @antinhumppaa
    @antinhumppaa 4 роки тому +5

    For those who use Uno (16Mhz) and mini (8Mhz) like I did, remember to set your uno speed to half. UNO: RH_ASK driver (1000, 11,12,10); Mini RH_ASK driver (2000, 11,12,10);

  • @oladunk9986
    @oladunk9986 2 роки тому +2

    Great video, thanks. For a better result I recommend investing some more money in a better receiver called RXB6. The RXB6 is a superheterodyne receiver and has a much better sensitivity and you will get a better range. Don't forget the 173mm antenna on both the transmitter and receiver.

  • @mrmatias2618
    @mrmatias2618 5 років тому +2

    Thanks 🙏 all the best from Angola 🇦🇴

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

    you make good quality videos and the very easy to follow and helpful thank you how do you not have 100k scribers

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

    This is brilliant, thanks! I acquired 2 sets a few years back but at that time there were no libraries for them, and I had to write my own basic drivers for them, using them like a raw serial link was dodgy at best for me. This will let me get a lot more use out of them.

  • @mrsiborg
    @mrsiborg 6 років тому +7

    I'm testing a similar setup, have the transmitter on a nano with 6v and a cheap Baofeng radio with a 433mhz yagi and on a good day with line of sight I can get over 1km reception. I know that's not exactly what you're using but just to add a bit more info to the discussion.

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

      Hi is there a tutorial for that for a beginner?

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

      Is the yagi home made ? Can you provide a link to a drawing or sketches?

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

    very well put togeather and exsplaining!

  • @academyministorage6397
    @academyministorage6397 Рік тому +1

    You should also be able to use shorter antennas that are equally effective as long as their lengths are exactly 86.5 mm or 43.25 mm (173/2 and 173/4, respectively (42.35 mm ~ 433 Hz).

  • @hemayetkabir1331
    @hemayetkabir1331 5 років тому +2

    Fantastic presentation. cheers

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

    best video of this type

  • @joesisco8145
    @joesisco8145 7 місяців тому

    Thanks for the explanation, big help 👍👍👍

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

    Great video! Your long explanation really helps!

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

    the antenna part is excellent. tnx..

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

    Excellent explanation. I like it. Thanks

  • @Stuart-AJC
    @Stuart-AJC 6 років тому +7

    Good explanation, But at some point the video starts to lag a long way behind the audio., which confused me..

  • @PerchEagle
    @PerchEagle 5 років тому +2

    Very very good presentation :)

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

    Thank you for this helpful video

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

    12:13
    ampersand means 'address of'.
    (pointer points to first byte of value.
    the function expects a pointer on first variable and expects a pointer on second variable too.
    pointer holds an address of memory)
    because normal variable used (not a pointer to dynamically allocated memory).
    to get something that is like a pointer of from a variable.
    we ask for address of that variable , where is it where it stores the value.

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

    New subscriber always watching yourvideos ❤thanks for sharing

  • @MarioMonte13
    @MarioMonte13 4 місяці тому

    I'm having a hell of a time just getting the receiver tuned. Pretty sure the one I got is just bad out of the box because it doesn't draw any current at all from my bench power supply.

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

    I am your biggest fan

  • @arjunalwe7697
    @arjunalwe7697 5 років тому +15

    Great video, but my circuit doesn't seem to be working. Could it be because I'm using a Mega instead of a Nano or Uno?

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

      No...99% not

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

      have you tried to read any sensor values with the arduino mega before? if it works and you can see the value clearly then i think the problem is either in the transmitter or the receiver

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

    Hey I really like your video! Pretty much exactly what I need right now - unfortunately I am very dissatisfied with the audio quality. I'd be happy to help you reduce the clipping, I think you can add another audio track in the youtube studio editor, so I could just send you the edited audio file in same length!

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

      Hey, thanks. Unfortunately, at the time when I was recording those videos, UA-cam wasn't paying me enough to warrant buying decent equipment. It was just me making free videos for people. Things are changing now, and so will my equipment. 😀

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

    Super video!!!!

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

    Nice info, thanks :)

  • @electronic7979
    @electronic7979 6 років тому +2

    Nice video

  • @Hamza-er8rr
    @Hamza-er8rr 6 років тому +4

    Thank you, Can you make a video using the SRX882 & STX882 V1.3
    because they need just 3.6V
    Best regards.

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

      Hamza Lee hey, I'll try!!! I have those I think!

  • @atifhussain3455
    @atifhussain3455 11 місяців тому

    Very nice and briefly defined. can you please tell If I want to use Only Receiver and get to know what my Fan remote is transmitting? I want to control my fan using Arduino but instead of my Fan remote I want to transmit that frequency from Ardunio, how it can be done?

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

    So this is what shown in the serial monitor after i follow all the steps mentioned in the video
    ets Jan 8 2013,rst cause:4, boot mode:(3,6)
    wdt reset
    load 0x4010f000, len 3460, room 16
    tail 4
    chksum 0xcc
    load 0x3fff20b8, len 40, room 4
    tail 4
    chksum 0xc9
    csum 0xc9
    v00043250
    ~ld

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

    You should open an account on Brave to receive BAT rewards as an additional option to Patreon.

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

    Just being picky but the silver thing on the TX is not a crystal.. it's a complete crystal controlled transmitter IC. Same with the chip on the RX - that a complete receiver not an amplifier. The antenna length on the instructions that came with mine say 250mm ant on the TX and 320mm on the RX. Although 173mm is an exact quarter wavelength on 433Mhz, the longer lengths given on my info doc MIGHT be to achieve a better impedance match to the devices...... but....
    edit: I can now see that there are variants of this Rx - TX pair. The antenna lengths above came from info with a pair in which the transmitter unit has only ONE coil on the board. No doubt 173mm is correct for the version above. Check the supplier's pictures. Online chat suggests the receiver is very poor quality and can be bettered with the equally cheap RXB12 receiver. (a supeheterodyne design)

  • @kachowtime
    @kachowtime 11 місяців тому

    Amazing video, but I still can't get either my receiver or transmitter to work at all. Do you have advice for how to test each individually to try and isolate the problem?

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

    thanks alot bud,

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

    Nicely done. I must point out a few things, only for elucidation purposes.The aerial should always be straight and lol you take out the variable initialisation of i, then use i. Good practice and one that is defined in MISRA is that all variables be initialised with a value. I also like the way of naming variables, so you know what the variable is. take buff, if it were renamed to ui8Buff, you would know it is of type uint8. Not hard to say in a little program, but you get into longer lengths, someone else reading it will know instantly what type it is.

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

    I found a couple of these now in 2021 that I forgot to explore back then. Even says "2008-8" as in the video.

  • @peterhan3327
    @peterhan3327 6 років тому +3

    How much power does the transmitter consume?

  • @raphaelsainte-claire4861
    @raphaelsainte-claire4861 2 роки тому +1

    great video.
    Sadly, it looks like I have a duff bag of these from Bang Good.
    Literally nothing is being sent or received :(

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

      They're poor quality. Don't bother. Try reyax rylr modules. 🙂

    • @raphaelsainte-claire4861
      @raphaelsainte-claire4861 2 роки тому

      @@AntonyCartwright I have some lora modules that I am planning to take a look at next.
      Really wanted to get these ones working before I tried them out though :(

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

    Awesome!

  • @SHADOW-bg4mm
    @SHADOW-bg4mm 3 роки тому

    i want to make my own transmitter receiver module with which crystal oscillators to use, i haven't yet found a vid to explain it, that would be cool if you made one

  • @ProfessorOzone
    @ProfessorOzone 3 місяці тому

    Do you have to have an arduino on both sides? If I wanted a very simple sensor, can I just power the transmitter side and pulse it's data line or does the Tx just not work without the processor?

  • @S0K0N0MI
    @S0K0N0MI 4 роки тому +5

    The out of sync audio kinda throws me off during the coding a bit. :')

  • @okeyeng8024
    @okeyeng8024 3 роки тому +2

    What distance does it cover?

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

    Good content man great vid quality now put a little bit of foam over the mic. Try to warm that sound up a bit.

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

      It's a really crappy built-in Mic... :( oh! I've just had an idea though..

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

      Using a wireless mic? Maybe a 433mhz type haha. Ps if you have time I have a project I'm working on I'd like your input on?

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

      @@thompascoe8463 my camera doesn't allow external microphone. :(

  • @Shin_Geegee
    @Shin_Geegee 3 місяці тому

    how far can the RF range cover in within plain sight and in building?

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

    So understanding this. I could use a magnetic reed switch to trigger sending say 13579, the other receives it, an if command reads the 13579, triggers a servo. And seeing i could do that once, i could send a seperate message with a second magentic reed switch to send 02468 to send a separate message to trigger the second servo?
    literally day 1 of coding for me here

  • @lucamarinelli5239
    @lucamarinelli5239 День тому

    i made the same things but my receiver is receiving no signals

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

    Could this concept be used with the turn signal signal For instance if the turn signal is activated the transmitter will send signal to reciever indicating that the turn signal has been activated ??

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

    nice one!

  • @Explore-Gobal
    @Explore-Gobal 4 роки тому

    My transmitter/receiver combo is a four channel 433Mhz setup with a 1527 chipset working just fine as a standalone receiver and transmitter. Hooked up an led to the receiver and had no trouble turning it on and off with the transmitter. When I connect it to the Nano with data pin 0 connected to pin 2 on the Nano, code loaded with no errors, I get no output on the serial monitor. Baud rate is set to 9600 and com port is correct. I'm a bit stumped as to why this is not working for me??? I inserted a Serial.println message after the Serial.begin statement, and that shows up fine too, but nothing else???

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

    Can you explain the 433 mhz transmitters and receiver module circuit diagram

  • @mast3r-633
    @mast3r-633 Рік тому

    im building a high altitude rocket, how can i get the range to 40,000+ feet?

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

    Can I use a esp32 as transmitter And arduino uno as reciever?

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

    Hello guys i have one question .. is this device enough to make a relay attack on cars?

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

    Hi, Nice video.
    I bought some HC12 433mhz transceiver modules that I am hoping to use to link my pc with my drone so I can upload code remotely. Have you done anything link this before, or do u know if it is possible and what level of coding is involved. I am using an arducopter APM flight controller.

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

      Andrew Walsh interesting idea, would love an update on your project!

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

    It works with the regular blink code on the transmitter an your code on the receiver both on pin 13 but your code on the transmitter an receiver doesn't work,I opened the serial monitor an even solidered on antennas but nothing gets transmitted,what could I be doing wrong?

  • @nuborn.studio
    @nuborn.studio 2 роки тому

    I guess that the idea behind the second data out is to use it as a backup data out. Would definitely a bit more failsafe

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

    Does the aerial wire need to be straight or can it bend within the enclosure?

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

    Great video, I have a question for transmitter. I don't want a arduino for transmitter and send fixed message for only error exception. For example "Door number 2039 is open". Is there a module you can recommend

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

    How can I pair other covered rf remote control with this module

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

    does the reciever know which transmitter to be listening for? ... can one transmitter drive 2 or more recievers by accident for example?

  • @ArtTillery
    @ArtTillery 4 місяці тому

    Hello,
    When i plug my receiver into my arduino , arduino shuts off as if there is a short or something. iIve tested with my other arduino and my other receivers and the same thing happens is this normal?

    • @AntonyCartwright
      @AntonyCartwright  4 місяці тому

      It's not normal. The chances are that you're pulling too much current. While the Arduino is running, connect the receiver gnd to gnd, then vcc to vcc. Does it still do itm

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

    How can I have 2 of these set up near each other without them interfering with each other?

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

    Hi Great video!! Hello, anyone knows if its possible to use this 433Mhz receiver to receive commands from Key Garage transmitter?

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

    can you teach the code on how to send sensor data to receiver

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

    hi
    Thank you Antony
    I didn't try on Uno but it doesn't worked on esp32

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

    This should work without antennas shouldn't it? And if it does i have a question about why is my printing so slow instead of 0.2 seconds like with yours it takes me 5 seconds or more just to print one.

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

      It's supposed to have an antenna of an extract length, from what I remember. To be honest though, these modules are not very good quality.

  • @Mr_Tophat
    @Mr_Tophat 2 місяці тому

    can this send multiple signals?

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

    I'm working on a project and I need it to input the distance between the 2 arduinos in meters

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

      You can't do that with this equipment. The libraries only tell you about data which has been pulled though, as far as I'm aware. You'd be better off getting GPS modules.

  • @curtisevans978
    @curtisevans978 Рік тому +1

    What I want to know is, how did you figure 173mm for your ant. length and not 165mm for 433MHz..?

    • @rongarza9488
      @rongarza9488 Рік тому +1

      @Curtis Evans, I read that the speed of light, 299,792,458 m/s, is divided by the frequency, 433,000,000 cycles/second, giving .69236meters per cycle, or 69.236cm and then 1/4 of that -- dunno why though -- is 17.3mm.

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

      @@rongarza9488 Close, but you're out by a decimal place It's 0.173m, which is 17.3cm, not 17.3mm.
      But, yes, it's a quarter wavelength and that's how you calculate it.

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

    Can I read ultrasonic data and send it through this system? and what is the maximum distance with this? I need to know this urgently thank y o

  • @dpCuber
    @dpCuber 3 місяці тому

    @AntonyCartwright when i download the .zip file from radiohead and follow the directions for putting the library into the sketch, ask_transmitter and ask_reciever dont show up. is this a problem with radiohead or can i fix it somehow?

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

    Can I give the received to a speaker ?

  • @HappyHermitt
    @HappyHermitt 3 місяці тому

    What gauge wire?

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

    can you transmit music?

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

    I want to control two stepper motors with joystick and using 433Mhz Rf to make Wireless control.. So how can i change this code to work with my project?

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

    how to multiple RF(433Mhz) Transmitter Receiver module work in one place.beacause when i sent data the receiver end another receiver working that time.have you got some tips??

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

    what to do when there are two transmitter and one receiver ? How to distinguish which one is nearer to the receiver?

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

    hi, in the small module i have missing the small coil, only have the bigger one, is it an important missing part?

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

    How responsive is this method? 2.5ms, 4ms?

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

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

  • @cluelessindividual8643
    @cluelessindividual8643 3 місяці тому

    it's incredible what humans are capable of all from the inside of a tin can

  • @f.a3202
    @f.a3202 3 роки тому

    wait so it is data vcc and gnd? I've put vcc on data and data on vcc then. but it still worked. now i tried it like in the video and it still works fine. What is this now, how is it possible?

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

    Sir i tried to use this as to make my project but everytime i put another if statement inside the if statement its my led output is not function and also the transmiter send messgae and the receiver accept it and then the led output please help 😭😭😣😣😣😣

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

    The receiver board in my weather station has died it operates on 433 mhz and uses an lm358 op amp the same as this board 3 connections ground data and vcc will that receiver board be able to replace mine they look very similar?

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

      The receiver is just a tuned circuit, so there is no reason why it shouldn't work, other than the tuning of the circuit via the variable inductor.

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

      Can i have a copy of your weather station project sir?

  • @MrWarlanc
    @MrWarlanc 4 роки тому +2

    “This seems like a good time for a drink, and a cold, calculated speech with sinister overtones. A speech about politics... about order... brotherhood... power. But speeches are for campaigning. Now is the time for action.”

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

    Hi
    How can i send a string that have 24 byte 0&1 by rc switch transmiter

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

    I think I may have bought these in error yesterday. Can you send raw data through like a video feed, or even 2 devices on 2 different frequencies to send usb data?

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

    is there something I should consider when the transmitter is connected to my arduino mega and my receiver to an esp32?