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));
|
||||
}
|
||||
|
||||
void startAP(String path) {
|
||||
startAP(path.c_str(), wifi_config_ssid.c_str(), wifi_config_password.c_str(), wifi_channel, wifi_config_hidden, wifi_config_captivePortal);
|
||||
void startAP() {
|
||||
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() {
|
||||
startAP(str(W_WEBINTERFACE));
|
||||
void startAP(String path) {
|
||||
wifi_config_path = path.c_str();
|
||||
startAP();
|
||||
}
|
||||
|
||||
void loadWifiConfigDefaults() {
|
||||
|
||||
Reference in New Issue
Block a user