mirror of
https://github.com/SpacehuhnTech/esp8266_deauther.git
synced 2025-12-23 07:29:20 -08:00
Improved startAP() function
This commit is contained in:
@@ -362,12 +362,13 @@ void printWifiStatus() {
|
|||||||
prnt(String(s));
|
prnt(String(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
void startAP(String path) {
|
void startAP() {
|
||||||
startAP(path.c_str(), wifi_config_ssid.c_str(), wifi_config_password.c_str(), wifi_channel, wifi_config_hidden, wifi_config_captivePortal);
|
startAP(wifi_config_path.c_str(), wifi_config_ssid.c_str(), wifi_config_password.c_str(), wifi_channel, wifi_config_hidden, wifi_config_captivePortal);
|
||||||
}
|
}
|
||||||
|
|
||||||
void startAP() {
|
void startAP(String path) {
|
||||||
startAP(str(W_WEBINTERFACE));
|
wifi_config_path = path.c_str();
|
||||||
|
startAP();
|
||||||
}
|
}
|
||||||
|
|
||||||
void loadWifiConfigDefaults() {
|
void loadWifiConfigDefaults() {
|
||||||
|
|||||||
Reference in New Issue
Block a user