Absolutely wonderful video, I am not lying when I say no other KZbinr could explain the module this well and get straight to the point... thanks, you've got a ney sub!
@ArnovSharma Жыл бұрын
thanks mate!
@L0giBear Жыл бұрын
Couldn’t agree more!
@ashupatellllll Жыл бұрын
00:04 NRF24L01 for long-distance communication 00:46 NRF24L01 is a versatile and powerful wireless transceiver module. 01:23 NRF24L01 module is simple and best for small, cheap and short-range communication. 02:23 NRF24L01 comes in single and multiple pieces with different ranges 02:56 Understanding the wiring diagram for the transmitter setup. 03:48 Setting up transmitter and receiver for message transmission 04:24 Power the receiver externally and connect it to the transmitter and computer. 04:54 NRF24L01 eliminates the need for rewiring devices.
@janmenzinga Жыл бұрын
In stead of the brake-out board, you could consider using RfNano, that's an Arduino Nano+nrf24l01 in one. Maybe distance could be an issue, but I have good experience with RfNano.
@demonchief11763 жыл бұрын
This was extremely helpful. Thank you so much. I understood your accent and everything. No offence intended just some smaller channel youtubers have very thick accents that are hard to understand. Anyway Thank You so much.
@ArnovSharma3 жыл бұрын
Glad it was helpful!
@sumitradesai21464 жыл бұрын
Awesome I got your channel from your Coil gun
@RezaMFauzi-p2h Жыл бұрын
i have 2 x rfx2402e module from wltoys v666-ufo, but i try with nrf library not working, is there any other library?
@studilize6 ай бұрын
Can I use my phone to connect with nrf module to transmit or receive the data like HC 05
@emmanouhldigkas1661 Жыл бұрын
hello, I have a device that has an NRF24L01 in it, can I put the NRF24L01 PA/LNA to increase the signal range, will it work immediately or will I have to make settings, please tell me
@pratyakshaggarwal57373 жыл бұрын
Can we buy these modules directly from nordic semiconductor as half the modules in market are fake
@ArnovSharma3 жыл бұрын
Use Nordic official distributors, like arrow, mouser etc
@pratyakshaggarwal57373 жыл бұрын
Can u suggest me what is the cost of this module
@ArnovSharma3 жыл бұрын
In india 350rs -450rs max
@comedy740 Жыл бұрын
sir watt we can connect nrf240l transistor with the flysky ct6b receiver please give me replying please😢😊
@Electricalwala27143 жыл бұрын
Can this receiver model work under water means receiver model can catch signal underwater
@ArnovSharma3 жыл бұрын
It can but you need to waterproof your setup by potting it in epoxy or similar stuff
@Electricalwala27143 жыл бұрын
Thank you sir
@benjaminlapicerosjr.63903 жыл бұрын
This is exactly what I am looking for. Thanks a lot Sir.
@AkashBagFEce Жыл бұрын
Using nrf24l01 antenna module, i successfully get renge more then 700meters in open area. It's funny depending on power system and good connection! I had designed dadicated pcb for it I got 700meters...
@ayanmukherjee453111 ай бұрын
Which one you use PA/LNA or the other one
@AkashBagFEce11 ай бұрын
@@ayanmukherjee4531 pa+lna module
@newthinkofficial2 жыл бұрын
Is nrf adapter necessary to use with these nrf modules ?
@ArnovSharma2 жыл бұрын
Not really
@jumbo9996144 жыл бұрын
I successfully use pushbutton to control LED wirelessly through this module but never with Servo. I don't know why. please help.
@ArnovSharma4 жыл бұрын
its basically the same man, you should check my other video on this servo controlling topic. I prepared a transmitter and receiver setup for toggling LEDs, servos, ESC.
@jumbo9996144 жыл бұрын
@@ArnovSharma Can't find the video about Servo that you mentioned. Here's the code. I don't know the problem which cause my UNO not responding to potentiometer on ESP8266. //*******NRF24L01 & ESP8266 ***************** //******************* NRF24L01 & Uno *************** // with Potentiometer(Read) & LED(Write) // with Pushbutton(Read) & Servo(Write) /* /* NRF24L01 - NodeMCU ESP8266 NRF24L01 - Arduino UNO Vcc(3.3v) - VCC VCC(3.3v) - VCC GND - GND GND - GND CE - D4 CE - 8 CSN - D2 CSN - 10 SCK - D5 SCK - 13 MOSI - D7 MOSI - 11 MISO - D6 MISO - 12 */ /* #include #include #include #include #include #include #include #define CE D4 #define CE 8 #define CSN D2 #define CSN 10 #define LED D1 #define pot A0 boolean buttonState = 0; #define pushbutton 4 int angleVal = 0; #define servopin 6 boolean buttonState = 0; Servo srv; RF24 radio(CE, CSN); RF24 radio(CE, CSN); const byte address[][6] = {"00001", "00002"}; const byte address[][6] = {"00001", "00002"}; void setup() void setup() { ( pinMode(pot, INPUT); Serial.begin(9600); pinMode(LED, OUTPUT); pinMode(pushbutton, INPUT); digitalWrite(LED, LOW); srv.attach(servopin); radio.begin(); radio.begin(); radio.openWritingPipe(address[1]); //radio.openWritingPipe(address[0]); //radio.openReadingPipe(1, address[0]); radio.openReadingPipe(1,address[1]); radio.setPALevel(RF24_PA_MIN); radio.setPALevel(RF24_PA_MIN); radio.setDataRate(RF24_250KBPS); radio.setDataRate(RF24_250KBPS); } ) void loop() void loop() { { /* /* //***********Receiving*************** //***********Sending***************************** delay(50); delay(50); radio.startListening(); radio.stopListening(); if(radio.available()) buttonState = digitalRead(pushbutton); { radio.write(&buttonState, sizeof(buttonState)); radio.read(&buttonState, sizeof(buttonState)); */ if(buttonState == HIGH) { digitalWrite(LED, HIGH); } else { digitalWrite(LED, LOW); } } */ //***********Sending*********** //***********Receiving*************************** delay(50); delay(50); radio.stopListening(); radio.starListening(); int potVal = analogRead(pot); if(radio.available()) angleVal = map(potVal, 0, 1024, 0, 180); { radio.write(&angleVal, sizeof(angleVal)); while(radio.available()) { int angleVal = 0; } radio.read(&angleVal, sizeof(angleVal)); srv.write(angleVal); Serial.println(angleVal); } } }
@beginnersplay9475 ай бұрын
Thanks man, i was searching for this
@Hashir.S-t4x6 ай бұрын
but why do u add servo code in this code please explain me sir
@allpakdishinfo8910 Жыл бұрын
Can we use nrf 24l01 module to usb printer to make it wirelessly and send prints from mobile wifi and laptop wifi plz help me
@ArnovSharma Жыл бұрын
Nice Project idea, it seems possible but why not use ESP32 instead of the NRF?
@mr.g16253 жыл бұрын
Nice explanation . I have implemented without any problems.thank you sir...
@teja26473 жыл бұрын
how many meters it can communicate within building with multiple walls between TX and rx.will it communicate with person outside building
@ArnovSharma3 жыл бұрын
around 80-100 meters
@be8d9733 жыл бұрын
Why my nrf24l01 not connected each other please reply the solution
@ArnovSharma3 жыл бұрын
have you added the capacitors to VCC and GND? if yes then try to reset both TX and RX setup at same time
@be8d9733 жыл бұрын
Please reply how to reset tx and rx please send tutorial
@be8d9733 жыл бұрын
How to reset nrf24l01????
@be8d9733 жыл бұрын
Nrf24l01 not working what I do ?reply
@ArnovSharma3 жыл бұрын
@@be8d973 Try to Reset both Transmitter and Reciever at the same time!
@razorr19204 жыл бұрын
Can you see this beacon on Android bluetooth scan by just powering up the module?? I mean without connecting it to a arduino???
@ArnovSharma4 жыл бұрын
What beacon
@razorr19204 жыл бұрын
@@ArnovSharma I mean once you power up NRF24L01 will it show in bluetooth list even when not connected to arduino
@ArnovSharma4 жыл бұрын
@@razorr1920 didn't knew that. I guess because they both work on similar RF frequencies?
@Wolfhunter666 Жыл бұрын
hy, I dont know why, my nrf modules are not working anyhow. i have tried many methods but still not worked. can you or anyone help me out please.
@ayanmukherjee453111 ай бұрын
May be there is a problem in the circuit , you can heat the pcb and try.
@ashlry1280 Жыл бұрын
why my serial monitor not appear?
@Rehan-ru9ux3 жыл бұрын
Can nrf24L01 pa/lna communicate with nrf24L01?
@ArnovSharma3 жыл бұрын
It can. Just use same address for communication
@Rehan-ru9ux3 жыл бұрын
@@ArnovSharma thanks arnov but what will be the range 100m or 1km?
@ArnovSharma3 жыл бұрын
@@Rehan-ru9ux 200-300m, for 1km use pa/ln module
@Rehan-ru9ux3 жыл бұрын
@@ArnovSharma sir i mean to say what will be the range if we use one pa+lna and other nrf24l01 ?will it still be 200m?
@ArnovSharma3 жыл бұрын
@@Rehan-ru9ux it will be 200m because you are still using the smaller range version. PA LNA module can transmit at 1000m but the generic NRF24L01 cannot receive the data from the 1000 range.
@Art-inventions7 ай бұрын
Tnx Arnov...That was to the point and very informative...can you post some test outdoors for this unit please?
@ArnovSharma7 ай бұрын
Thanks! Will try to make a part 2 of this video in which some outdoor testing will be included.
@samerator4233 Жыл бұрын
Can an nrf24l01 can connect to an RF nano?
@Technoboy928 Жыл бұрын
Can someone help me with the Library required? Maybe link?
@youtubewatcher2594 Жыл бұрын
from where can i install the nrf24lo1 library
@roshanakthar.n10 ай бұрын
I also need it.if you have please share the link
@ruialmeida2605 Жыл бұрын
Hey, where did u buy these modules?
@ArnovSharma Жыл бұрын
Amazon
@megafone54892 жыл бұрын
nrf24l01 modules without antena is not 300 meters is maximum 50 meters open land
@matijamodric14357 ай бұрын
Thanks
@MakeElectricity2 ай бұрын
wow u r linus torvalds😮
@shaunferris60633 жыл бұрын
Hello after working with these modules. I finally got it to work from your video THANK YOU. however, i have one problem. it will only send the signal a random amount of times then stop. I must then restart everything and it will again send a random amount of text's then stop. any idea what might be causing this
@ArnovSharma3 жыл бұрын
Baud rate perhaps
@amrendramandal869511 ай бұрын
Thanks buddy for this video, it will be help me.
@tahasinmohammadtahasin93002 жыл бұрын
Bro that's a qualityful content but plz can you tell me that what is the minimum range in the nrf24l01 antenna version in a heavily crowded area?
@ArnovSharma2 жыл бұрын
That depends on obstruction between sender and receiver. If there's whole building in between then maybe less than 100m. Even 50m
@tahasinmohammadtahasin93002 жыл бұрын
@@ArnovSharma ohh damn now this is really poor range
@ArnovSharma2 жыл бұрын
Here's one solution, add an antenna to this module. You can solder an external antenna cable directly with the nrf pcb antenna
@tahasinmohammadtahasin93002 жыл бұрын
@@ArnovSharma nah bro I said the nrf24l01 PA/LNA version not the PCB one what will be the range of that will be in a crowded area
@AkashBagFEce Жыл бұрын
@@tahasinmohammadtahasin9300 Using nrf24l01 antenna module, i successfully get renge more then 700meters in open area. It's funny depending on power system and good connection! I had designed dadicated pcb for it I got 700meters...
@MIDHUNMATHEW-t9q11 ай бұрын
Can you share the PCD design Files ?
@dassajityadav55554 жыл бұрын
Super sir for 10 km range which RF module is best
@ArnovSharma4 жыл бұрын
LORA MODULE
@dassajityadav55554 жыл бұрын
@@ArnovSharma sir lora ke bhi bhut projects dekhe but koi mila nhi open area me to chances h but building se nhi
@ArnovSharma4 жыл бұрын
Lora se 6 km range tak cover ho jati hai Bhai.. bass thoda mehnga hai Lora.
@dassajityadav55554 жыл бұрын
@@ArnovSharma ok bhai
@roslinda3492 Жыл бұрын
Can I use that tool for WiFi repeater, pls pen
@ArnovSharma Жыл бұрын
you can
@dov95283 жыл бұрын
How many distance got by real time testing
@ArnovSharma3 жыл бұрын
Full coverage inside House and 200 m outside
@dov95283 жыл бұрын
@@ArnovSharma I ordered 10 pieces of normal nrf24l01 modules for my future projects..... If the range is too short it will be a waste ...... so thank you ✌️❤️
@ArnovSharma3 жыл бұрын
@@dov9528 you can increase the range by connecting them in a mesh system like one module will send data, the other will receive and then send it to another module, and so on.
@niteshrajput39104 жыл бұрын
please do range test for NRF24L01 PA/LNA in open and closed space
@ArnovSharma4 жыл бұрын
In close space, its around 50 meters and in open its 200 meters
@teja26473 жыл бұрын
@@ArnovSharma how many meters it can communicate within building with multiple walls between TX and rx.will it communicate with person outside building
@nikuu5414 жыл бұрын
analog gaming controller?
@santhoskumar25923 жыл бұрын
Bro can we use it as wifi module
@ArnovSharma3 жыл бұрын
Nope
@santhoskumar25923 жыл бұрын
@@ArnovSharma tq bro
@jaydeepbatra1 Жыл бұрын
Need to make a wire less subwoofer, if you can prepare, i will pay the payment
@siyumdineththika66243 жыл бұрын
Nice! 👌
@jonahvimeo42769 ай бұрын
Tahks you are very good
@dassajityadav55554 жыл бұрын
10km range no restrixtion of building suggest model sir
@ArnovSharma4 жыл бұрын
How about making an two way communicator with lora module. Like a walkie talkie for 10k range.
@dassajityadav55554 жыл бұрын
@@ArnovSharma device ON OFF with feedback possible or not sir
@ArnovSharma4 жыл бұрын
@@dassajityadav5555 possible
@IeshaFrederick-u8n3 ай бұрын
Schimmel Gateway
@SherellWasko-s9e4 ай бұрын
Goodwin Trace
@EzekielVeronica-q5o3 ай бұрын
Nicolas Avenue
@TerryTiffany-y5q3 ай бұрын
Millie Orchard
@MooreHumphrey-n4m4 ай бұрын
Agustin Corners
@PearlGoldfine-g4n4 ай бұрын
Janie Road
@TitusGranvold-g2f4 ай бұрын
Donnelly Mission
@DougCobbin-j4b3 ай бұрын
Levi Street
@EdwardLopez-o2m4 ай бұрын
Justen Stravenue
@MariaHernandez-f1l3 ай бұрын
Gracie Street
@plabandebbarma155 Жыл бұрын
Hundred metre kaise hoga 1000 m hoga 1.2 km
@ValentineEzekiel-n6p4 ай бұрын
Jayden Oval
@PeggyXavier-x6u3 ай бұрын
Blanca Falls
@JeriScheffer-g3r4 ай бұрын
Kerluke Isle
@WilfredoRendon-h8e4 ай бұрын
Orland Forest
@MartinMamie-v2f3 ай бұрын
Kristin Spur
@RuthPotts-t6q3 ай бұрын
Corwin Trail
@MontyPartain-g3e3 ай бұрын
Glover Valley
@SusanLopez-e7s3 ай бұрын
Hollie Streets
@JosephFields-s4j3 ай бұрын
Schneider Cape
@ToursBerg-q6m3 ай бұрын
Sienna Trafficway
@RobertWharton-m4h4 ай бұрын
Guillermo Ways
@JenningsBarbara-w3p2 ай бұрын
Jayne Junction
@SenehaIslam-o8p3 ай бұрын
Dan Canyon
@MiddletonMyron-z5m3 ай бұрын
Hershel Flats
@JonahGrace-m4e4 ай бұрын
Stehr Plaza
@MacaulayCarter-o4m3 ай бұрын
Gleason Keys
@AdamsXenia-b4t3 ай бұрын
Prince Crossroad
@RockefellerJoyce-q1w3 ай бұрын
Witting Overpass
@MorrisonOscar-u6l3 ай бұрын
Hernandez Elizabeth Wilson Laura Rodriguez Christopher