I dont know which library you are using. I am using the nrf24 mesh library, which I found to be pretty awesome. As it allows for very dynamic network configurations, adding more sensors as you go etc... Also I have added a counter to each device, that performs a restart every so many data packets sent, or every so many failed attempts. This creates a bit of a self healing behavior to the entire system. At the indoor unit, I opted to build a 'router' from nRF24 to Wifi. This feeds the data to Node-Red, to Influx DB and then can be graphically accessed via a Graffana web page.
I really really appreciate that someone has made this video in this specific issue, it really helps me alot so thank you very much. One last thing, there are two types of 10micro, one is 25v and one is 50v, which one did you use? I really need your answer asap
25Volt It's the Absolute Maximum Voltage that electrolytic capacitor can take before it explodes Because you only connect it to 3.3Volts you can use that ... also if you connect the polarity wrong it can explode ...
In my experience the cap is all you need. The culprit in most cases I observed is that the jumper cables are of really bad conductivity (made from chinesium and not copper).
@@RobertCowanDIY I have about 20 odd nrf's deployed at the moment and I always traced it back to the wiring and the 'buffer' capacitor that just levels out spikes as you described...
@@SarahKchannel How is it on power-consumption? I can imagine that with 20-odd devices you likely rely on harvesting rather than whizzing around changing batteries the whole time..
@@AdityaMehendale I do not know the power draw from the top of my head. I am running all the remote satellite ones of solar panels with 18650 batteries and ESP8266 (wemos) MCUs. The nrf24 does not draw that much power per se, you can control it by how often you send data - only in the mesh configuration you have less control over how much each node receives or transmits.
Hello, I'm a beginner and wanted to make a gesture control car, using an MPU6050 and the nRF24L01 module for wireless communication. Plus Arduino UNO and NANO as microcontrollers for receiver and transmitter. But after wiring it all up I noticed that the angles from my aren't being transmitted to the receiver nRF. The return value of radio.write() is LOW, and the received value is NULL. Could you please suggest any fixes? I believe the issue isn't with the code, but I might be wrong. I cross-checked it with few examples and the code seems right. What do you think might be the issue?
@@RobertCowanDIY Hello, I'm a beginner and wanted to make a gesture control car, using an MPU6050 and the nRF24L01 module for wireless communication. Plus Arduino UNO and NANO as microcontrollers for receiver and transmitter. But after wiring it all up I noticed that the angles from my aren't being transmitted to the receiver nRF. The return value of radio.write() is LOW, and the received value is NULL. Could you please suggest any fixes? I believe the issue isn't with the code, but I might be wrong. I cross-checked it with few examples and the code seems right. What do you think might be the issue?
NRF24L01's are very handy I used them in 150g combat robots 6+ years ago when commercial RX gear wasn't as small/light My other reliability tip for them, if you are using them in a location where they get rattled or bumped regularly, add glue, potting compound or at least hot glue to the crystal as otherwise the crystal has a tendency to break
There’s no voltage regulator on the nRF24L01 modules, so you need to provide an external 3.3V supply. The Arduino's 3.3V regulator isn’t strong enough, so maybe that's what you meant. 🤷♂
You mentioned packet transmissions, so I assume you’re using packets with a checksum or CRC. Does your software track the number of bad packets you receive? Wondering just how clean your reception is across that distance and through walls.
Your weakness is programing 😢 Interesting video tho 😊 Can I use it to scan for wifies and connect to WiFi using it ? Or make a switch out of it and Arduino ?
@@SNSISNSJISEJSJSnot all wireless is wifi. this isn't wifi, it's something else. is your car's radio wifi? no, but it's wireless. this is another wireless communication and has nothing to do with wifi. they make similar modules for wifi. look at ESP microcontrollers.
Do you know where else to purchase these modules that are high quality? From what I've read on Amazon, sometimes they don't work and the chip is completely different from what is shown.
I dont know which library you are using. I am using the nrf24 mesh library, which I found to be pretty awesome. As it allows for very dynamic network configurations, adding more sensors as you go etc...
Also I have added a counter to each device, that performs a restart every so many data packets sent, or every so many failed attempts. This creates a bit of a self healing behavior to the entire system.
At the indoor unit, I opted to build a 'router' from nRF24 to Wifi. This feeds the data to Node-Red, to Influx DB and then can be graphically accessed via a Graffana web page.
I'm using NRFlite. That's a good idea about restarting periodically.
I really really appreciate that someone has made this video in this specific issue, it really helps me alot so thank you very much.
One last thing, there are two types of 10micro, one is 25v and one is 50v, which one did you use?
I really need your answer asap
25Volt It's the Absolute Maximum Voltage that electrolytic capacitor can take before it explodes
Because you only connect it to 3.3Volts you can use that ...
also if you connect the polarity wrong it can explode ...
In my experience the cap is all you need. The culprit in most cases I observed is that the jumper cables are of really bad conductivity (made from chinesium and not copper).
Interesting. Good to know.
@@RobertCowanDIY I have about 20 odd nrf's deployed at the moment and I always traced it back to the wiring and the 'buffer' capacitor that just levels out spikes as you described...
@@SarahKchannel How is it on power-consumption? I can imagine that with 20-odd devices you likely rely on harvesting rather than whizzing around changing batteries the whole time..
@@AdityaMehendale I do not know the power draw from the top of my head. I am running all the remote satellite ones of solar panels with 18650 batteries and ESP8266 (wemos) MCUs. The nrf24 does not draw that much power per se, you can control it by how often you send data - only in the mesh configuration you have less control over how much each node receives or transmits.
Hello,
I'm a beginner and wanted to make a gesture control car, using an MPU6050 and the nRF24L01 module for wireless communication. Plus Arduino UNO and NANO as microcontrollers for receiver and transmitter.
But after wiring it all up I noticed that the angles from my aren't being transmitted to the receiver nRF.
The return value of radio.write() is LOW, and the received value is NULL.
Could you please suggest any fixes? I believe the issue isn't with the code, but I might be wrong. I cross-checked it with few examples and the code seems right. What do you think might be the issue?
very well explained! thanks!
Glad it was helpful!
@@RobertCowanDIY Hello,
I'm a beginner and wanted to make a gesture control car, using an MPU6050 and the nRF24L01 module for wireless communication. Plus Arduino UNO and NANO as microcontrollers for receiver and transmitter.
But after wiring it all up I noticed that the angles from my aren't being transmitted to the receiver nRF.
The return value of radio.write() is LOW, and the received value is NULL.
Could you please suggest any fixes? I believe the issue isn't with the code, but I might be wrong. I cross-checked it with few examples and the code seems right. What do you think might be the issue?
NRF24L01's are very handy
I used them in 150g combat robots 6+ years ago when commercial RX gear wasn't as small/light
My other reliability tip for them, if you are using them in a location where they get rattled or bumped regularly, add glue, potting compound or at least hot glue to the crystal as otherwise the crystal has a tendency to break
Got it. Padding for all electronics is a good practice!
There’s no voltage regulator on the nRF24L01 modules, so you need to provide an external 3.3V supply. The Arduino's 3.3V regulator isn’t strong enough, so maybe that's what you meant. 🤷♂
You mentioned packet transmissions, so I assume you’re using packets with a checksum or CRC. Does your software track the number of bad packets you receive? Wondering just how clean your reception is across that distance and through walls.
I think I disabled that feature, but when I had it enabled, I wasn't seeing anything significant.
Your weakness is programing 😢
Interesting video tho 😊
Can I use it to scan for wifies and connect to WiFi using it ? Or make a switch out of it and Arduino ?
This isn't wifi, it's a completely different wireless protocol.
@@RobertCowanDIY sad
@@SNSISNSJISEJSJS Haha, it's not sad. Wifi is a PAIN. This is a better point to point communications protocol.
@@RobertCowanDIY but I want to scan long ranges wifis using it
@@SNSISNSJISEJSJSnot all wireless is wifi. this isn't wifi, it's something else. is your car's radio wifi? no, but it's wireless. this is another wireless communication and has nothing to do with wifi. they make similar modules for wifi. look at ESP microcontrollers.
Do you know where else to purchase these modules that are high quality? From what I've read on Amazon, sometimes they don't work and the chip is completely different from what is shown.
You can get something decent from SparkFun directly if you're concerned about getting something good with support.
@@RobertCowanDIY thank you
Jackeline Fields
Chaim Turnpike
Lockman Plains
Greenholt Bridge
can you tell us where I can get the weather station you are using in your video. thanks
I got it from sparkfun.
Hobart Expressway
Vandervort Station
Schmitt Bridge
Arlie Isle
Balistreri Road
Bergnaum Cove
Jimmy Extensions
Rempel Shore
Harris Field
Cremin Trace
Alexandro Parkway
Mikel Underpass
Eveline Ford
Faustino Drives
Abernathy Dale
Jarret Gardens
Bednar Passage
Stamm Island
Martinez Amy Anderson Daniel Robinson Karen
Jerde Roads
Gust Park
Elena Rue
Leanna Route
Botsford Forges
Conroy Estate
Veum Circle
Jamey Row
Kessler Walk
Catharine Junction
Hillary Gateway
Icie Ville