#include <WiFi.h>
const char *ssid = "ESP32-Access-Point"; // Network SSID (name)
const char *password = "12345678"; // Network password (8 characters min)
void setup() {
Serial.begin(115200);
// Configure the ESP32 as an Access Point
WiFi.softAP(ssid, password);
// Display the IP address
IPAddress IP = WiFi.softAPIP();
Serial.println("Access Point Started");
Serial.print("IP Address: ");
Serial.println(IP);
}
void loop() {
// Keep the loop empty, as no further action is needed.
}