first commit
This commit is contained in:
25
DeautherX/EvilTwin.h
Normal file
25
DeautherX/EvilTwin.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#ifndef EVIL_TWIN_H
|
||||
#define EVIL_TWIN_H
|
||||
|
||||
#include <Arduino.h> // Add this line to include the necessary header for String
|
||||
#include "ESP8266WiFi.h"
|
||||
#include "DNSServer.h"
|
||||
#include "ESP8266WebServer.h"
|
||||
|
||||
class EvilTwin {
|
||||
public:
|
||||
static String ssidT;
|
||||
static String pass;
|
||||
static String passTesting;
|
||||
|
||||
static void start(const char* ap);
|
||||
static void stop();
|
||||
static String getpass();
|
||||
static String getpassTesting();
|
||||
|
||||
|
||||
static bool isRunning();
|
||||
static void update();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user