Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ESP32 as Acespoint
#3
(12-28-2022, 01:01 AM)iliaslamprou Wrote: 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!");
}

Hi iliaslamprou

Thx
One thing, when I want add a second client the Virtuino stops on he client that was working, and the new one doesn't connect.
Is it possible to connect more than one client or is this a ESP32 issue?
Reply


Messages In This Thread
ESP32 as Acespoint - by cvbtec - 12-27-2022, 02:17 PM
RE: ESP32 as Acespoint - by iliaslamprou - 12-28-2022, 01:01 AM
RE: ESP32 as Acespoint - by cvbtec - 12-28-2022, 05:57 PM
RE: ESP32 as Acespoint - by iliaslamprou - 12-28-2022, 10:37 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)