File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ bool APScan::start(){
1111 }
1212 aps._clear ();
1313 for (int i=0 ;i<maxAPScanResults;i++) selected[i] = false ;
14- results = WiFi.scanNetworks (false , true ); // lets scanNetworks return hidden APs. (async = false & show_hidden = true)
14+ results = WiFi.scanNetworks (false , settings. apScanHidden ); // lets scanNetworks return hidden APs. (async = false & show_hidden = true)
1515
1616 for (int i=0 ;i<results && i<maxAPScanResults;i++){
1717 Mac _ap;
Original file line number Diff line number Diff line change 66#include < ESP8266WiFi.h>
77#include " Mac.h"
88#include " MacList.h"
9+ #include " Settings.h"
910
1011extern String data_getVendor (uint8_t first,uint8_t second,uint8_t third);
1112extern const bool debug;
1213
14+ extern Settings settings;
15+
1316class APScan {
1417 public:
1518 APScan ();
You can’t perform that action at this time.
0 commit comments