#include #include #include #include // Connect to the WiFi const char* ssid = "Arubaruba"; const char* password = "Keepitsimplestupid1"; const char* mqtt_server = "192.168.178.50"; WiFiClient espClient; PubSubClient client(espClient); const byte ledPin = 13; // Pin with LED on Adafruit Huzzah void callback(char* topic, byte* payload, unsigned int length) { Serial.print("Message arrived ["); Serial.print(topic); Serial.print("] "); for (int i=0;i