#include // Set your access point credentials const char* ssid = "HOIII"; const char* password = "12345678"; void setup() { Serial.begin(115200); // Configure ESP32-C3 as WiFi Access Point WiFi.softAP(ssid, password); // Print IP address of the AP IPAddress IP = WiFi.softAPIP(); Serial.print("Access Point IP address: "); Serial.println(IP); Serial.println("WiFi hotspot started!"); } void loop() { // Nothing needed here for basic hotspot }