You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: esp8266_deauther/esp8266_deauther.ino
+13-4
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ void startWifi(){
39
39
Serial.println("starting WiFi AP");
40
40
WiFi.mode(WIFI_STA);
41
41
wifi_set_promiscuous_rx_cb(sniffer);
42
-
WiFi.softAP((constchar*)settings.ssid.c_str(), (constchar*)settings.password.c_str()); //for an open network without a password change to: WiFi.softAP(ssid);
42
+
WiFi.softAP((constchar*)settings.ssid.c_str(), (constchar*)settings.password.c_str(), settings.apChannel, settings.ssidHidden); //for an open network without a password change to: WiFi.softAP(ssid);
43
43
Serial.println("SSID: "+settings.ssid);
44
44
Serial.println("Password: "+settings.password);
45
45
if(settings.password.length()<8) Serial.println("WARNING: password must have at least 8 characters!");
0 commit comments