NRF24L01 Getting Started Guide

  Рет қаралды 85,255

Arnov Sharma

Arnov Sharma

Күн бұрын

Пікірлер: 171
@GammaAerospace
@GammaAerospace Жыл бұрын
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
@ArnovSharma Жыл бұрын
thanks mate!
@L0giBear
@L0giBear Жыл бұрын
Couldn’t agree more!
@ashupatellllll
@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
@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.
@demonchief1176
@demonchief1176 3 жыл бұрын
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.
@ArnovSharma
@ArnovSharma 3 жыл бұрын
Glad it was helpful!
@sumitradesai2146
@sumitradesai2146 4 жыл бұрын
Awesome I got your channel from your Coil gun
@RezaMFauzi-p2h
@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?
@studilize
@studilize 6 ай бұрын
Can I use my phone to connect with nrf module to transmit or receive the data like HC 05
@emmanouhldigkas1661
@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
@pratyakshaggarwal5737
@pratyakshaggarwal5737 3 жыл бұрын
Can we buy these modules directly from nordic semiconductor as half the modules in market are fake
@ArnovSharma
@ArnovSharma 3 жыл бұрын
Use Nordic official distributors, like arrow, mouser etc
@pratyakshaggarwal5737
@pratyakshaggarwal5737 3 жыл бұрын
Can u suggest me what is the cost of this module
@ArnovSharma
@ArnovSharma 3 жыл бұрын
In india 350rs -450rs max
@comedy740
@comedy740 Жыл бұрын
sir watt we can connect nrf240l transistor with the flysky ct6b receiver please give me replying please😢😊
@Electricalwala2714
@Electricalwala2714 3 жыл бұрын
Can this receiver model work under water means receiver model can catch signal underwater
@ArnovSharma
@ArnovSharma 3 жыл бұрын
It can but you need to waterproof your setup by potting it in epoxy or similar stuff
@Electricalwala2714
@Electricalwala2714 3 жыл бұрын
Thank you sir
@benjaminlapicerosjr.6390
@benjaminlapicerosjr.6390 3 жыл бұрын
This is exactly what I am looking for. Thanks a lot Sir.
@AkashBagFEce
@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...
@ayanmukherjee4531
@ayanmukherjee4531 11 ай бұрын
Which one you use PA/LNA or the other one
@AkashBagFEce
@AkashBagFEce 11 ай бұрын
@@ayanmukherjee4531 pa+lna module
@newthinkofficial
@newthinkofficial 2 жыл бұрын
Is nrf adapter necessary to use with these nrf modules ?
@ArnovSharma
@ArnovSharma 2 жыл бұрын
Not really
@jumbo999614
@jumbo999614 4 жыл бұрын
I successfully use pushbutton to control LED wirelessly through this module but never with Servo. I don't know why. please help.
@ArnovSharma
@ArnovSharma 4 жыл бұрын
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.
@jumbo999614
@jumbo999614 4 жыл бұрын
@@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); } } }
@beginnersplay947
@beginnersplay947 5 ай бұрын
Thanks man, i was searching for this
@Hashir.S-t4x
@Hashir.S-t4x 6 ай бұрын
but why do u add servo code in this code please explain me sir
@allpakdishinfo8910
@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
@ArnovSharma Жыл бұрын
Nice Project idea, it seems possible but why not use ESP32 instead of the NRF?
@mr.g1625
@mr.g1625 3 жыл бұрын
Nice explanation . I have implemented without any problems.thank you sir...
@teja2647
@teja2647 3 жыл бұрын
how many meters it can communicate within building with multiple walls between TX and rx.will it communicate with person outside building
@ArnovSharma
@ArnovSharma 3 жыл бұрын
around 80-100 meters
@be8d973
@be8d973 3 жыл бұрын
Why my nrf24l01 not connected each other please reply the solution
@ArnovSharma
@ArnovSharma 3 жыл бұрын
have you added the capacitors to VCC and GND? if yes then try to reset both TX and RX setup at same time
@be8d973
@be8d973 3 жыл бұрын
Please reply how to reset tx and rx please send tutorial
@be8d973
@be8d973 3 жыл бұрын
How to reset nrf24l01????
@be8d973
@be8d973 3 жыл бұрын
Nrf24l01 not working what I do ?reply
@ArnovSharma
@ArnovSharma 3 жыл бұрын
@@be8d973 Try to Reset both Transmitter and Reciever at the same time!
@razorr1920
@razorr1920 4 жыл бұрын
Can you see this beacon on Android bluetooth scan by just powering up the module?? I mean without connecting it to a arduino???
@ArnovSharma
@ArnovSharma 4 жыл бұрын
What beacon
@razorr1920
@razorr1920 4 жыл бұрын
@@ArnovSharma I mean once you power up NRF24L01 will it show in bluetooth list even when not connected to arduino
@ArnovSharma
@ArnovSharma 4 жыл бұрын
@@razorr1920 didn't knew that. I guess because they both work on similar RF frequencies?
@Wolfhunter666
@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.
@ayanmukherjee4531
@ayanmukherjee4531 11 ай бұрын
May be there is a problem in the circuit , you can heat the pcb and try.
@ashlry1280
@ashlry1280 Жыл бұрын
why my serial monitor not appear?
@Rehan-ru9ux
@Rehan-ru9ux 3 жыл бұрын
Can nrf24L01 pa/lna communicate with nrf24L01?
@ArnovSharma
@ArnovSharma 3 жыл бұрын
It can. Just use same address for communication
@Rehan-ru9ux
@Rehan-ru9ux 3 жыл бұрын
@@ArnovSharma thanks arnov but what will be the range 100m or 1km?
@ArnovSharma
@ArnovSharma 3 жыл бұрын
@@Rehan-ru9ux 200-300m, for 1km use pa/ln module
@Rehan-ru9ux
@Rehan-ru9ux 3 жыл бұрын
@@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?
@ArnovSharma
@ArnovSharma 3 жыл бұрын
@@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-inventions
@Art-inventions 7 ай бұрын
Tnx Arnov...That was to the point and very informative...can you post some test outdoors for this unit please?
@ArnovSharma
@ArnovSharma 7 ай бұрын
Thanks! Will try to make a part 2 of this video in which some outdoor testing will be included.
@samerator4233
@samerator4233 Жыл бұрын
Can an nrf24l01 can connect to an RF nano?
@Technoboy928
@Technoboy928 Жыл бұрын
Can someone help me with the Library required? Maybe link?
@youtubewatcher2594
@youtubewatcher2594 Жыл бұрын
from where can i install the nrf24lo1 library
@roshanakthar.n
@roshanakthar.n 10 ай бұрын
I also need it.if you have please share the link
@ruialmeida2605
@ruialmeida2605 Жыл бұрын
Hey, where did u buy these modules?
@ArnovSharma
@ArnovSharma Жыл бұрын
Amazon
@megafone5489
@megafone5489 2 жыл бұрын
nrf24l01 modules without antena is not 300 meters is maximum 50 meters open land
@matijamodric1435
@matijamodric1435 7 ай бұрын
Thanks
@MakeElectricity
@MakeElectricity 2 ай бұрын
wow u r linus torvalds😮
@shaunferris6063
@shaunferris6063 3 жыл бұрын
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
@ArnovSharma
@ArnovSharma 3 жыл бұрын
Baud rate perhaps
@amrendramandal8695
@amrendramandal8695 11 ай бұрын
Thanks buddy for this video, it will be help me.
@tahasinmohammadtahasin9300
@tahasinmohammadtahasin9300 2 жыл бұрын
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?
@ArnovSharma
@ArnovSharma 2 жыл бұрын
That depends on obstruction between sender and receiver. If there's whole building in between then maybe less than 100m. Even 50m
@tahasinmohammadtahasin9300
@tahasinmohammadtahasin9300 2 жыл бұрын
@@ArnovSharma ohh damn now this is really poor range
@ArnovSharma
@ArnovSharma 2 жыл бұрын
Here's one solution, add an antenna to this module. You can solder an external antenna cable directly with the nrf pcb antenna
@tahasinmohammadtahasin9300
@tahasinmohammadtahasin9300 2 жыл бұрын
@@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
@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-t9q
@MIDHUNMATHEW-t9q 11 ай бұрын
Can you share the PCD design Files ?
@dassajityadav5555
@dassajityadav5555 4 жыл бұрын
Super sir for 10 km range which RF module is best
@ArnovSharma
@ArnovSharma 4 жыл бұрын
LORA MODULE
@dassajityadav5555
@dassajityadav5555 4 жыл бұрын
@@ArnovSharma sir lora ke bhi bhut projects dekhe but koi mila nhi open area me to chances h but building se nhi
@ArnovSharma
@ArnovSharma 4 жыл бұрын
Lora se 6 km range tak cover ho jati hai Bhai.. bass thoda mehnga hai Lora.
@dassajityadav5555
@dassajityadav5555 4 жыл бұрын
@@ArnovSharma ok bhai
@roslinda3492
@roslinda3492 Жыл бұрын
Can I use that tool for WiFi repeater, pls pen
@ArnovSharma
@ArnovSharma Жыл бұрын
you can
@dov9528
@dov9528 3 жыл бұрын
How many distance got by real time testing
@ArnovSharma
@ArnovSharma 3 жыл бұрын
Full coverage inside House and 200 m outside
@dov9528
@dov9528 3 жыл бұрын
@@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 ✌️❤️
@ArnovSharma
@ArnovSharma 3 жыл бұрын
@@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.
@niteshrajput3910
@niteshrajput3910 4 жыл бұрын
please do range test for NRF24L01 PA/LNA in open and closed space
@ArnovSharma
@ArnovSharma 4 жыл бұрын
In close space, its around 50 meters and in open its 200 meters
@teja2647
@teja2647 3 жыл бұрын
@@ArnovSharma how many meters it can communicate within building with multiple walls between TX and rx.will it communicate with person outside building
@nikuu541
@nikuu541 4 жыл бұрын
analog gaming controller?
@santhoskumar2592
@santhoskumar2592 3 жыл бұрын
Bro can we use it as wifi module
@ArnovSharma
@ArnovSharma 3 жыл бұрын
Nope
@santhoskumar2592
@santhoskumar2592 3 жыл бұрын
@@ArnovSharma tq bro
@jaydeepbatra1
@jaydeepbatra1 Жыл бұрын
Need to make a wire less subwoofer, if you can prepare, i will pay the payment
@siyumdineththika6624
@siyumdineththika6624 3 жыл бұрын
Nice! 👌
@jonahvimeo4276
@jonahvimeo4276 9 ай бұрын
Tahks you are very good
@dassajityadav5555
@dassajityadav5555 4 жыл бұрын
10km range no restrixtion of building suggest model sir
@ArnovSharma
@ArnovSharma 4 жыл бұрын
How about making an two way communicator with lora module. Like a walkie talkie for 10k range.
@dassajityadav5555
@dassajityadav5555 4 жыл бұрын
@@ArnovSharma device ON OFF with feedback possible or not sir
@ArnovSharma
@ArnovSharma 4 жыл бұрын
@@dassajityadav5555 possible
@IeshaFrederick-u8n
@IeshaFrederick-u8n 3 ай бұрын
Schimmel Gateway
@SherellWasko-s9e
@SherellWasko-s9e 4 ай бұрын
Goodwin Trace
@EzekielVeronica-q5o
@EzekielVeronica-q5o 3 ай бұрын
Nicolas Avenue
@TerryTiffany-y5q
@TerryTiffany-y5q 3 ай бұрын
Millie Orchard
@MooreHumphrey-n4m
@MooreHumphrey-n4m 4 ай бұрын
Agustin Corners
@PearlGoldfine-g4n
@PearlGoldfine-g4n 4 ай бұрын
Janie Road
@TitusGranvold-g2f
@TitusGranvold-g2f 4 ай бұрын
Donnelly Mission
@DougCobbin-j4b
@DougCobbin-j4b 3 ай бұрын
Levi Street
@EdwardLopez-o2m
@EdwardLopez-o2m 4 ай бұрын
Justen Stravenue
@MariaHernandez-f1l
@MariaHernandez-f1l 3 ай бұрын
Gracie Street
@plabandebbarma155
@plabandebbarma155 Жыл бұрын
Hundred metre kaise hoga 1000 m hoga 1.2 km
@ValentineEzekiel-n6p
@ValentineEzekiel-n6p 4 ай бұрын
Jayden Oval
@PeggyXavier-x6u
@PeggyXavier-x6u 3 ай бұрын
Blanca Falls
@JeriScheffer-g3r
@JeriScheffer-g3r 4 ай бұрын
Kerluke Isle
@WilfredoRendon-h8e
@WilfredoRendon-h8e 4 ай бұрын
Orland Forest
@MartinMamie-v2f
@MartinMamie-v2f 3 ай бұрын
Kristin Spur
@RuthPotts-t6q
@RuthPotts-t6q 3 ай бұрын
Corwin Trail
@MontyPartain-g3e
@MontyPartain-g3e 3 ай бұрын
Glover Valley
@SusanLopez-e7s
@SusanLopez-e7s 3 ай бұрын
Hollie Streets
@JosephFields-s4j
@JosephFields-s4j 3 ай бұрын
Schneider Cape
@ToursBerg-q6m
@ToursBerg-q6m 3 ай бұрын
Sienna Trafficway
@RobertWharton-m4h
@RobertWharton-m4h 4 ай бұрын
Guillermo Ways
@JenningsBarbara-w3p
@JenningsBarbara-w3p 2 ай бұрын
Jayne Junction
@SenehaIslam-o8p
@SenehaIslam-o8p 3 ай бұрын
Dan Canyon
@MiddletonMyron-z5m
@MiddletonMyron-z5m 3 ай бұрын
Hershel Flats
@JonahGrace-m4e
@JonahGrace-m4e 4 ай бұрын
Stehr Plaza
@MacaulayCarter-o4m
@MacaulayCarter-o4m 3 ай бұрын
Gleason Keys
@AdamsXenia-b4t
@AdamsXenia-b4t 3 ай бұрын
Prince Crossroad
@RockefellerJoyce-q1w
@RockefellerJoyce-q1w 3 ай бұрын
Witting Overpass
@MorrisonOscar-u6l
@MorrisonOscar-u6l 3 ай бұрын
Hernandez Elizabeth Wilson Laura Rodriguez Christopher
@MiaGarcias-d9q
@MiaGarcias-d9q 3 ай бұрын
Taylor Islands
@DoddPoppy-o2h
@DoddPoppy-o2h 4 ай бұрын
Zelma Roads
@RonnyGarcia-i4j
@RonnyGarcia-i4j 3 ай бұрын
Freddy Ramp
@RhettRisenhoover-m4v
@RhettRisenhoover-m4v 3 ай бұрын
Price Court
@RuthLindsay-s2m
@RuthLindsay-s2m 3 ай бұрын
Brakus Point
@KristyChavez-c4w
@KristyChavez-c4w 4 ай бұрын
Carson Neck
@KarenMaynard-v8e
@KarenMaynard-v8e 3 ай бұрын
MacGyver Shoal
@FaustinoPirieda-g1x
@FaustinoPirieda-g1x 3 ай бұрын
Erdman Knoll
@AshleaGreising-j9i
@AshleaGreising-j9i 4 ай бұрын
Daphne Flat
@BessieMartini-f1z
@BessieMartini-f1z 3 ай бұрын
Weber Gardens
@melmenterefordres5079
@melmenterefordres5079 3 ай бұрын
Landen Courts
@GregoryBenitez-p8w
@GregoryBenitez-p8w 4 ай бұрын
Hegmann Island
@HobsonGuy-q7z
@HobsonGuy-q7z 3 ай бұрын
Nikolas Park
@ClydeAlexia-w7x
@ClydeAlexia-w7x 4 ай бұрын
Ross Pine
@GeorgeSmith-v1p
@GeorgeSmith-v1p 4 ай бұрын
Reichel Run
@JoseGarcia-r2n
@JoseGarcia-r2n 3 ай бұрын
Prohaska Lakes
@GalsworthyRegan-b6o
@GalsworthyRegan-b6o 4 ай бұрын
Zulauf Crossroad
@LeesaEstabillo-g1m
@LeesaEstabillo-g1m 4 ай бұрын
Romaguera Fort
@JasperHaley-g3u
@JasperHaley-g3u 3 ай бұрын
Ward Coves
@TomasSchroder-t1z
@TomasSchroder-t1z 4 ай бұрын
Oral Vista
@AlvinDierking-x5d
@AlvinDierking-x5d 4 ай бұрын
Feest Camp
@WadeCrutison-r5t
@WadeCrutison-r5t 3 ай бұрын
Jettie Mount
@JanelBarbrick-h6p
@JanelBarbrick-h6p 4 ай бұрын
Haag Manors
@CedrickSniffin-q1g
@CedrickSniffin-q1g 3 ай бұрын
Yundt Locks
@EliotPoe-s4o
@EliotPoe-s4o 3 ай бұрын
Sydnee Land
Arduino and nRF24L01. Wiring and wireless control by Arduino
16:33
Заметки Ардуинщика
Рет қаралды 933 М.
ССЫЛКА НА ИГРУ В КОММЕНТАХ #shorts
0:36
Паша Осадчий
Рет қаралды 8 МЛН
GIANT Gummy Worm #shorts
0:42
Mr DegrEE
Рет қаралды 152 МЛН
Vampire SUCKS Human Energy 🧛🏻‍♂️🪫 (ft. @StevenHe )
0:34
Alan Chikin Chow
Рет қаралды 138 МЛН
NRF24 Frustration - Radio module doesn't work?
12:46
Electronoobs
Рет қаралды 98 М.
NRF24L01 Tips and Tricks - Cheap and Easy Wirless
8:37
Robert Cowan
Рет қаралды 18 М.
How To Make 6-Channel Radio Control. Range 2000m+
10:43
KendinYap
Рет қаралды 530 М.
Forget WiFi! This Wireless Method is WAY Better?
12:14
GreatScott!
Рет қаралды 732 М.
Exploring NRF24 with Flipper Zero
6:42
Modern Broadcast
Рет қаралды 15 М.
Cheap and Simple Radio Control Making for RC Models. DIY RC 4-Channel
10:54
GC9A01 Round LCD with ESP32 & Arduino
45:46
DroneBot Workshop
Рет қаралды 317 М.
Arduino + NRF24 simple tutorial and range test
12:37
Tehno Manik
Рет қаралды 353 М.
ССЫЛКА НА ИГРУ В КОММЕНТАХ #shorts
0:36
Паша Осадчий
Рет қаралды 8 МЛН