#include < WiFi.h >
#include < WebServer.h >
#include < IRremoteESP8266.h >
#include < IRsend.h >
const char* ssid = "Antispot C0-Working";
const char* password = "Imi@12345";
const uint16_t IrLed = 4;
IRsend irsend(IrLed); // GPIO pin connected to the IR LED
WiFiServer server(80); // Create a server on port 80
// Set your Static IP address
IPAddress local_IP(192, 168, 1, 23);
// Set your Gateway IP address
IPAddress gateway(192, 168, 0, 1);
easwar