#include <WiFi.h>
const char *ssid = "YourAPSSID"; // Change this to your desired SSID
const char *password = "YourPassword"; // Change this to your desired password
void setup() {
Serial.begin(115200);
// Initialize ESP32 WiFi module in AP mode
WiFi.softAP(ssid, password);
Serial.println();
Serial.print("Access Point SSID: ");
Serial.println(ssid);
Serial.print("IP address: ");
Serial.println(WiFi.softAPIP());
}
void loop() {
// Your code here
}