Led Control Wifi
Led Control Wifi
h>
// WiFi credentials
const char* wifiName = "ESP-WIFI";
const char* password = "";
void setup() {
Serial.begin(115200); // Match this baud rate with
the Serial Monitor settings
void loop() {
// Check for incoming client connections
WiFiClient client = server.available();
if (client) {
Serial.println("New Client Connected");
// Read the client's request
String request = client.readStringUntil('\r');
Serial.println(request);