12-28-2022, 01:01 AM
Yes of course, the only you have to do is to change the code in the function connectToWiFiNetwork.
Code:
//================================================================= connectToWiFiNetwork
void connectToWiFiNetwork(){
Serial.print("Access Point"); // Default IP: 192.168.4.1
WiFi.mode(WIFI_AP); // Config module as Access point only.
boolean result = WiFi.softAP("Virtuino AP","my_password"); // set the Access point SSID and password
if(result == true) {
Serial.println("Server Ready");
Serial.println(WiFi.softAPIP());
}
else Serial.println("Failed!");
}