#include <WiFi.h>
char ss[] ="Wokwi-GUEST";
char pa[]="";
WiFiClient client;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
WiFi.mode(WIFI_STA);
}
void loop() {
// put your main code here, to run repeatedly:
WiFi.begin(ss,pa);
Serial.print(".");
delay(10);
Serial.println("\n Connected");
delay(10); // this speeds up the simulation
}