2020-03-28 13:30:51 +01:00
|
|
|
#ifndef WLED_ALEXA_H
|
|
|
|
#define WLED_ALEXA_H
|
|
|
|
/*
|
|
|
|
* Alexa Voice On/Off/Brightness Control. Emulates a Philips Hue bridge to Alexa.
|
|
|
|
*
|
|
|
|
* This was put together from these two excellent projects:
|
|
|
|
* https://github.com/kakopappa/arduino-esp8266-alexa-wemo-switch
|
|
|
|
* https://github.com/probonopd/ESP8266HueEmulator
|
|
|
|
*/
|
|
|
|
#include "src/dependencies/espalexa/EspalexaDevice.h"
|
|
|
|
|
|
|
|
void onAlexaChange(EspalexaDevice* dev);
|
|
|
|
void alexaInit();
|
|
|
|
void handleAlexa();
|
|
|
|
void onAlexaChange(EspalexaDevice* dev);
|
|
|
|
|
2020-03-25 09:36:55 +01:00
|
|
|
#endif // WLED_ALEXA_H
|