#include <WiFi.h>
void setup() {
Serial.begin(115200);
delay(10); // to initialize the serial port some time is taken. Since this is in
//the setup it is run only once
WiFi.begin("Wokwi-GUEST","");
while(WiFi.status() != WL_CONNECTED){
delay(500);
Serial.print(".");
}
Serial.println("Connected !!");
Serial.println(WiFi.localIP());
}
void loop() {
// put your main code here, to run repeatedly:
}