We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91e73e1 commit ab6f8edCopy full SHA for ab6f8ed
lib/hardware/fnWiFi.cpp
@@ -315,7 +315,9 @@ uint8_t WiFiManager::scan_networks(uint8_t maxresults)
315
scan_conf.scan_type = WIFI_SCAN_TYPE_ACTIVE;
316
scan_conf.scan_time.active.min = 100; // ms; 100 is what Arduino-ESP uses
317
scan_conf.scan_time.active.max = 300; // ms; 300 is what Arduino-ESP uses
318
-
+ scan_conf.channel_bitmap.ghz_2_channels = 0xFFFF; // all channels
319
+ scan_conf.channel_bitmap.ghz_5_channels = 0xFFFFFFFF; // all channels
320
+
321
bool temporary_disconnect = false;
322
uint16_t result = 0;
323
uint8_t final_count = 0;
0 commit comments