Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Comments on Power amplifier for remote controller

Parent

Power amplifier for remote controller

+3
−1

I'm designing remote controller based on NRF24L01 and STM32. I want to use SMA antenna. My question is regarding power amplifier (PA). When is it necessary to use one? The range I'm aiming for is 20+ meters. Every commercially available module with NRF24 and SMA antenna has PA, but I would like to save on cost and space on PCB. The NRF24 datasheet says that recommended load impedance is 50 Ω. Is it therefore possible to use SMA connector and antenna with 50 Ω impedance?

EDIT:

Is there a way to calculate the approximate range of this remote controller? I have seen some advanced software that can simulate antennas (too advanced for me), but I want to know what will be the approximate range. Or is it just easier to test this and then add PA later on if it is necessary.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

Fading losses depend on channel path integrity. (1 comment)
Post
+3
−0

The data sheet gives a perfectly good example of using the nRF24L01 without an external PA. It has an internal PA capable of driving an antenna <-- just look at the design example on page 63 with PCB layouts on following pages and sure, you can use any suitable antenna. $$$$

Is there a way to calculate the approximate range of this remote controller?

You can use the Friis transmission equation to calculate the free-space link loss between isotropic transmit and receive antennas. It's based on carrier frequency and distance. For a simple antenna like a monopole, you have an extra gain of 2 dB at each end. Anyway the formula for isotropic antennas (null gain) is: - $$$$ Link loss (dB) = 32.4 dB + 20log(MHz) + 20log(kilometres) $$$$ Putting your figures in (and assuming a 1 GHz carrier) we get LL = 32.4 dB + 60 dB + (-34 dB). That's a link loss of 58 dB in free-space. But, we should probably add another 20 dB for fade-margin bringing us to 78 dB of link loss. Then, because I'm assuming monopole antennas, this drops to 74 dB.

You then might ask whether your receiver is capable of working with this amount of attenuation. After all, if only 1 mW is transmitted, your receiver is only going to see -74 dBm and, is this enough?

Well, there's another generally used formula that ascertains how much power a receiver needs based on noise statistics, ambient temperature and receiver bandwidth. Bandwidth is usually swapped with bit rate. Formula: - $$$$ Minimum power = -154 dBm +10log(bit rate) $$$$ So, if your bit rate is 100 kHz then the minimum receive power should be greater than -104 dBm. And, if my numbers match your true numbers then 20 metres should be a breeze.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

Clearing up the question (1 comment)
Clearing up the question
Stefan‭ wrote over 1 year ago

Thank you for your answer. I'm aware of the design example. I didn't formulate the question clearly. My main question is basically: How do I know, if the PA is necessary? Is there a way to calculate approximate range of nrf24 chip together with an SMA antenna?