Skip to content

Commit 174247e

Browse files
authored
Better OLED-Display-Menu and spelling error fix
Capital letter in menu for difference between menu and APs Fix spelling error in APScan.cpp ("seect" -> "select") Format files with Strg+T in Arduino-IDE - looks better ;-)
1 parent 4c394ca commit 174247e

File tree

17 files changed

+24008
-23949
lines changed

17 files changed

+24008
-23949
lines changed

esp8266_deauther/APScan.cpp

Lines changed: 166 additions & 154 deletions
Large diffs are not rendered by default.

esp8266_deauther/APScan.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include "Settings.h"
1010
#include <ESP8266WebServer.h>
1111

12-
extern String data_getVendor(uint8_t first,uint8_t second,uint8_t third);
12+
extern String data_getVendor(uint8_t first, uint8_t second, uint8_t third);
1313
extern ESP8266WebServer server;
1414
extern void sendBuffer();
1515
extern void sendToBuffer(String str);
@@ -18,16 +18,16 @@ extern const bool debug;
1818

1919
extern Settings settings;
2020

21-
class APScan{
21+
class APScan {
2222
public:
2323
APScan();
24-
24+
2525
bool start();
2626
void sort();
2727
String getResultsJSON();
2828
void select(int num);
2929
void sendResults();
30-
30+
3131
String getAPName(int num);
3232
String getAPEncryption(int num);
3333
//String getAPVendor(int num);
@@ -39,22 +39,22 @@ class APScan{
3939

4040
int getFirstTarget();
4141
bool isSelected(int num);
42-
42+
4343
int results = 0;
4444
int selectedSum;
4545
MacList aps;
4646
private:
47-
47+
4848
int channels[maxAPScanResults];
4949
int rssi[maxAPScanResults];
5050
char names[maxAPScanResults][33];
5151
int encryption[maxAPScanResults];
5252
bool hidden[maxAPScanResults];
53-
53+
5454
String getEncryption(int code);
5555

5656
bool selected[maxAPScanResults];
57-
57+
5858
};
5959

60-
#endif
60+
#endif

0 commit comments

Comments
 (0)