#include #include #include #include // https://github.com/kakopappa/sinric/wiki/How-to-add-dependency-libraries #include // https://github.com/kakopappa/sinric/wiki/How-to-add-dependency-libraries #include ESP8266WiFiMulti WiFiMulti; WebSocketsClient webSocket; WiFiClient client; Servo myservo; boolean b; #define MyApiKey "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" // TODO: Change to your sinric API Key. Your API Key is displayed on sinric.com dashboard #define MySSID "mywifi" // TODO: Change to your Wifi network SSID #define MyWifiPassword "password" // TODO: Change to your Wifi network password #define API_ENDPOINT "http://sinric.com" #define HEARTBEAT_INTERVAL 300000 // 5 Minutes uint64_t heartbeatTimestamp = 0; bool isConnected = false; void turnOn(String deviceId) { if (deviceId == "xxxxxxxxxxxxxxxxxxxxxxxx") // Device ID of first device { Serial.print("Turn on device id: "); Serial.println(deviceId); while(b) { myservo.attach(2); myservo.write(15); delay(1000); myservo.detach(); b = false; } } else { Serial.print("Turn on for unknown device id: "); Serial.println(deviceId); } } void turnOff(String deviceId) { if (deviceId == "xxxxxxxxxxxxxxxxxxxxxxxx") // Device ID of first device { Serial.print("Turn off Device ID: "); Serial.println(deviceId); while(!b) { myservo.attach(2); myservo.write(0); delay(1000); myservo.detach(); b = true; } } else { Serial.print("Turn off for unknown device id: "); Serial.println(deviceId); } } void webSocketEvent(WStype_t type, uint8_t * payload, size_t length) { switch(type) { case WStype_DISCONNECTED: isConnected = false; Serial.printf("[WSc] Webservice disconnected from sinric.com!\n"); break; case WStype_CONNECTED: { isConnected = true; Serial.printf("[WSc] Service connected to sinric.com at url: %s\n", payload); Serial.printf("Waiting for commands from sinric.com ...\n"); } break; case WStype_TEXT: { Serial.printf("[WSc] get text: %s\n", payload); #if ARDUINOJSON_VERSION_MAJOR == 5 DynamicJsonBuffer jsonBuffer; JsonObject& json = jsonBuffer.parseObject((char*)payload); #endif #if ARDUINOJSON_VERSION_MAJOR == 6 DynamicJsonDocument json(1024); deserializeJson(json, (char*) payload); #endif String deviceId = json ["deviceId"]; String action = json ["action"]; if(action == "setPowerState") { // Switch or Light String value = json ["value"]; if(value == "ON") { turnOn(deviceId); } else { turnOff(deviceId); } } } break; case WStype_BIN: Serial.printf("[WSc] get binary length: %u\n", length); break; default: break; } } void setup() { Serial.begin(9600); WiFiMulti.addAP(MySSID, MyWifiPassword); Serial.println(); Serial.print("Connecting to Wifi: "); Serial.println(MySSID); myservo.attach(2); myservo.write(0); b = true; // Waiting for Wifi connect while(WiFiMulti.run() != WL_CONNECTED) { delay(500); Serial.print("."); } if(WiFiMulti.run() == WL_CONNECTED) { Serial.println(""); Serial.print("WiFi connected. "); Serial.print("IP address: "); Serial.println(WiFi.localIP()); } // server address, port and URL webSocket.begin("iot.sinric.com", 80, "/"); // event handler webSocket.onEvent(webSocketEvent); webSocket.setAuthorization("apikey", MyApiKey); // try again every 5000ms if connection has failed webSocket.setReconnectInterval(5000); // If you see 'class WebSocketsClient' has no member named 'setReconnectInterval' error update arduinoWebSockets } void loop() { webSocket.loop(); if(isConnected) { uint64_t now = millis(); // Send heartbeat in order to avoid disconnections during ISP resetting IPs over night. Thanks @MacSass if((now - heartbeatTimestamp) > HEARTBEAT_INTERVAL) { heartbeatTimestamp = now; webSocket.sendTXT("H"); } } }