NRF24L01 + PA + LNA issue
-
@sundberg84 I powered it directly from the Arduino Nano, also tried with separate power supply. No change, same results.
My gateway works fine with the same type of radio directly from the Nano.What else to consider.
-
You need an external voltage regulator from 5v to 3.3v for the radio, it is stated in the instructions
-
I had a (seemingly) similar issue with my NRF24+LNA+PA board. The solution was stupid simple - just get the node further away from the GW. Or remove antenna if you have one. We usually develop the node connected to the same PC, both GW and the node. It is simply too strong a signal.
-
@etxmsol I think you might be right about to strong signal.
I just tried changing the MY_RF24_PA_LEVEL from RF24_PA_MAX down to RF24_PA_LOW and RF24_PA_MIN. With RF24_PA_MIN it worked. :)
I will try again with increasing distance and increasing the level when needed for my purpose. -
Also a capacitor is strongly advised and if the radio module is not shielded, you need to do some shielding when using higher power levels.
-
I had same issues and I didn't take separate regulator too seriously, which was mistake.
So I made it work using
a. separate voltage regulator
b. capacitor cca 2uF between + and - pins on NRF24
c. using RF24_PA_MAX
d. another device was about 2 meters awayBefore that I had only capacitor, and when I put voltage regulator it worked for me.
I took power from arduino nano (+5V pin). No need for separate power. Powering Arduino Nano over USB is fine.