From 0ecc183b59c6e2c78f2ea8f847418481d4987ecd Mon Sep 17 00:00:00 2001 From: Just Call Me Koko Date: Fri, 4 Apr 2025 10:46:17 -0400 Subject: [PATCH] Remove button delay --- esp32_marauder/WiFiScan.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/esp32_marauder/WiFiScan.cpp b/esp32_marauder/WiFiScan.cpp index 1f1a741..f2657c2 100644 --- a/esp32_marauder/WiFiScan.cpp +++ b/esp32_marauder/WiFiScan.cpp @@ -5914,7 +5914,6 @@ void WiFiScan::packetRateLoop(uint32_t tick) { int8_t b = this->checkAnalyzerButtons(millis()); if (b == 6) { - Serial.println("Exiting packet monitor..."); this->StartScan(WIFI_SCAN_OFF); this->orient_display = true; return; @@ -5922,7 +5921,6 @@ void WiFiScan::packetRateLoop(uint32_t tick) { else if (b == 4) { if (set_channel > 1) { set_channel--; - delay(70); display_obj.tftDrawChannelScaleButtons(set_channel, false); display_obj.tftDrawExitScaleButtons(false); changeChannel(); @@ -5934,7 +5932,6 @@ void WiFiScan::packetRateLoop(uint32_t tick) { else if (b == 5) { if (set_channel < MAX_CHANNEL) { set_channel++; - delay(70); display_obj.tftDrawChannelScaleButtons(set_channel, false); display_obj.tftDrawExitScaleButtons(false); changeChannel();