#include <WiFi.h>
const char* ssid = "SLT fibre"; // Pointer to a Character (char*): It's a variable that holds the memory address of a character or the starting address of a sequence of characters (a string).
const char* password = "22845621";
void setup() {
Serial.begin(115200);
delay(10);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println();
Serial.println("Connected to WiFi");
Serial.print("IP Address: ");
Serial.println(WiFi.localIP());
}
void loop() {
// Your main code here
}