From af33a97d41ef4288a05a6e046a461b51242d4136 Mon Sep 17 00:00:00 2001 From: Egor Shitikov Date: Wed, 31 Jul 2024 19:31:53 -0700 Subject: [PATCH] RSSI Method test --- src/main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 455ec08..c07e482 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -522,8 +522,9 @@ void loop() waterfall[i][x][w] = false; freq = fr_begin + (range * ((float)x / STEPS)); radio.setFrequency(freq); - rssi = radio.getRSSI(); - Serial.println(String(rssi) + "db"); + //RSSI METHOD + //rssi = radio.getRSSI(false); + //Serial.println(String(rssi) + "db"); #ifdef PRINT_SCAN_VALUES Serial.println(); Serial.print("step-");