Tapatalk

Whisper Node - Lora

Whisper Node - Lora

2

PostNov 11, 2018#1

Hi all,
I want to know how transmitter pin use Whisper Node - Lora 868Mhz. It is PA_BOOST or RFO?
I would like to use the correct setTxPower() of RadioHead RH_RF95 library.
Thank you in advance.

Mirko

1885
1885

PostNov 12, 2018#2

Hi Mirko,

Whisper Node LoRa is based on the RF95, so it uses the PA_BOOST. If you look at the RadioHead library page: https://www.airspayce.com/mikem/arduino ... _RF95.html you will find all the details about the functions and how to set the TX Power and other parameters. For example:

Code: Select all

driver.setTxPower(10); // use PA_BOOST transmitter pin

2

PostNov 12, 2018#3

All clear,
Thank you