File tree 2 files changed +4
-1
lines changed
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ bool APScan::start(){
11
11
}
12
12
aps._clear ();
13
13
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)
15
15
16
16
for (int i=0 ;i<results && i<maxAPScanResults;i++){
17
17
Mac _ap;
Original file line number Diff line number Diff line change 6
6
#include < ESP8266WiFi.h>
7
7
#include " Mac.h"
8
8
#include " MacList.h"
9
+ #include " Settings.h"
9
10
10
11
extern String data_getVendor (uint8_t first,uint8_t second,uint8_t third);
11
12
extern const bool debug;
12
13
14
+ extern Settings settings;
15
+
13
16
class APScan {
14
17
public:
15
18
APScan ();
You can’t perform that action at this time.
0 commit comments