/* ESP32 Custom AP Example */
// Note: this requires a Hobby+ or Pro plan to run in Wokwi
#include <WiFi.h>
void setup() {
Serial.begin(115200);
WiFi.begin("HomeWiFi", "mypassword");
Serial.print("Connecting to WiFi...");
while (WiFi.status() != WL_CONNECTED) {
delay(100);
Serial.print(".");
}
Serial.println();
Serial.println("Connected!");
}
void loop() {
delay(10);
}