From 501997970af99a9f2f413e030e1734e7efee1a49 Mon Sep 17 00:00:00 2001 From: Tanner Date: Sat, 13 Jun 2026 16:31:13 -0600 Subject: [PATCH] Set transmit power of RF95 module --- rx/rx.ino | 2 +- tx/tx.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rx/rx.ino b/rx/rx.ino index 793f4f2..491183d 100644 --- a/rx/rx.ino +++ b/rx/rx.ino @@ -59,7 +59,7 @@ void setup() // The default transmitter power is 13dBm, using PA_BOOST. // If you are using RFM95/96/97/98 modules which uses the PA_BOOST transmitter pin, then // you can set transmitter powers from 5 to 23 dBm: - //rf95.setTxPower(23, false); + rf95.setTxPower(23, false); } void loop() diff --git a/tx/tx.ino b/tx/tx.ino index 4cbb30b..14b2d8e 100644 --- a/tx/tx.ino +++ b/tx/tx.ino @@ -55,7 +55,7 @@ void setup() // The default transmitter power is 13dBm, using PA_BOOST. // If you are using RFM95/96/97/98 modules which uses the PA_BOOST transmitter pin, then // you can set transmitter powers from 5 to 23 dBm: - //rf95.setTxPower(23, false); + rf95.setTxPower(23, false); } int16_t packetnum = 0; // packet counter, we increment per xmission