After making sure that Sketch is modified correctly, compile and upload codes to ESP32-S3 WROOM, open
serial monitor and set baud rate to 115200. And then it will display as follows:
When observing the print information of the serial monitor, turn on the WiFi scanning function of your phone,
and you can see the ssid_AP on ESP32-S3.
The following is the program code:
#include <WiFi.h>
const char *ssid_Router = "********"; //Enter the router name
const char *password_Router = "********"; //Enter the router password
const char *ssid_AP = "WiFi_Name"; //Enter the AP name
const char *password_AP = "12345678"; //Enter the AP password
void setup(){
Serial.begin(115200);
Serial.println("Setting soft-AP configuration ... ");