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

According to the datasheet that Andy linked to, the chip can be configured for 0 dBm output. With the proper antenna, that is probably good enough for 20 m, but you'll have to test it yourself to know for sure. If your environment is noisy, or there are obstructions causing path loss or multi-path interference, then it's hard to say how much power is required. The relative alignment of the antennas also matter. This is due to both radiation pattern and polarization.

Another issue with a separate power amplifier is regulatory compliance. You need to look up what the maximum allowed transmitter power is in the band you are using and for your purpose. If that's 0 dBm, then any additional amplification would be illegal, for example.

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

In theory, for infinitely open space, yes. This would assume particular antennas at particular orientations. However, that's generally not very useful.

The real environment is too complicated to quantify easily, and usually unpredictable and changing anyway. There is no substitute for testing in the field.

That said, my gut feel is that 0 dBm at your frequency with properly matched and oriented antennas that have dipole-like radiation patterns really should work over 20 meters. But, if there's a wall or other stuff between the antennas, or one device is hand-held so that antenna orientation is arbitrary, or there's interference in your band, then you just don't know until you try it.

I would start with the 0 dBm output, then only add an amplifier if tests show you need it. Again, make sure you know the legal power limit for your band and purpose, and be sure to stay within it.

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

1 comment thread

Thank you for your answer (1 comment)
Thank you for your answer
Stefan‭ wrote over 1 year ago

Thank you for your answer