Posts

Showing posts from October, 2022

Last And Important Task

 EVENT FEEDBACK:  Kindly Give the feedback for today's session click on the link below; ==> https://forms.gle/PUaq8pEJJ97VgZbKA

NODEMCU

Image
 

HOME-AUTOMATION USING GOOGLE HOME, NODEMCU, SINRIC PRO

Image
Libraries to Add: * ArduinoJSON * WEBSOCKETS * SinricPro_Generic // **************************** CODE BEGIN *********************************** #ifdef ENABLE_DEBUG         #define DEBUG_ESP_PORT Serial         #define NODEBUG_WEBSOCKETS         #define NDEBUG  #endif      #include <Arduino.h>  #ifdef ESP8266           #include <ESP8266WiFi.h>  #endif    #ifdef ESP32             #include <WiFi.h>  #endif    #include "SinricPro.h"  #include "SinricProSwitch.h"    #include <map>    #define WIFI_SSID         "hello"       #define WIFI_PASS         "helloworld"  #define APP_KEY           "6fa2c48b-b08b-438f-9d93-32064ae6fc94"        ...