/*
* If you encounter any issues:
* - check the readme.md at https://github.com/sinricpro/esp8266-esp32-sdk/blob/master/README.md
* - ensure all dependent libraries are installed
* - see https://github.com/sinricpro/esp8266-esp32-sdk/blob/master/README.md#arduinoide
* - see https://github.com/sinricpro/esp8266-esp32-sdk/blob/master/README.md#dependencies
* - open serial monitor and check whats happening
* - check full user documentation at https://sinricpro.github.io/esp8266-esp32-sdk
* - visit https://github.com/sinricpro/esp8266-esp32-sdk/issues and check for existing issues or open a new one
*/
// Uncomment the following line to enable serial debug output
//#define ENABLE_DEBUG
#ifdef ENABLE_DEBUG
#define DEBUG_ESP_PORT Serial
#define NODEBUG_WEBSOCKETS
#define NDEBUG
#endif
#include <Arduino.h>
#if defined(ESP8266)
#include <ESP8266WiFi.h>
#elif defined(ESP32) || defined(ARDUINO_ARCH_RP2040)
#include <WiFi.h>
#endif
#include "SinricPro.h"
#include "SinricProSwitch.h"
#define WIFI_SSID "Wokwi-GUEST"
#define WIFI_PASS ""
#define APP_KEY "4838cd48-2354-45d0-9172-50af6d1c4588" // Should look like "de0bxxxx-1x3x-4x3x-ax2x-5dabxxxxxxxx"
#define APP_SECRET "99cb9479-f61c-4a9b-aef2-03107ea74672-614e6fa3-c76c-49ee-b640-1303eb9db320" // Should look like "5f36xxxx-x3x7-4x3x-xexe-e86724a9xxxx-4c4axxxx-3x3x-x5xe-x9x3-333d65xxxxxx"
#define SWITCH_ID "66f7962ddeddece34b9c0106" // Should look like "5dc1564130xxxxxxxxxxxxxx"
#define BAUD_RATE 115200 // Change baudrate to your need
#if defined(ESP8266)
#define RELAY_PIN D5 // Pin where the relay is connected (D5 = GPIO 14 on ESP8266)
#elif defined(ESP32) || defined(ARDUINO_ARCH_RP2040)
#define RELAY_PIN 16 // Pin where the relay is connected (GPIO 16 on ESP32)
#endif
bool onPowerState(const String &deviceId, bool &state) {
digitalWrite(RELAY_PIN, state); // set pin state
return true; // request handled properly
}
void setup() {
pinMode(RELAY_PIN, OUTPUT); // set relay-pin to output mode
#if defined(ESP8266)
WiFi.setSleepMode(WIFI_NONE_SLEEP);
WiFi.setAutoReconnect(true);
#elif defined(ESP32)
WiFi.setSleep(false);
WiFi.setAutoReconnect(true);
#endif
WiFi.begin(WIFI_SSID, WIFI_PASS); // start wifi
while (WiFi.status() != WL_CONNECTED) {
delay(250);
}
SinricProSwitch& mySwitch = SinricPro[SWITCH_ID]; // create new switch device
mySwitch.onPowerState(onPowerState); // apply onPowerState callback
SinricPro.begin(APP_KEY, APP_SECRET); // start SinricPro
}
void loop() {
SinricPro.handle(); // handle SinricPro commands
}
Loading
esp32-s2-devkitm-1
esp32-s2-devkitm-1