/*
|
|
|
|
ALEXA MODULE
|
|
|
|
Copyright (C) 2016-2018 by Xose Pérez <xose dot perez at gmail dot com>
|
|
|
|
*/
|
|
|
|
#if ALEXA_SUPPORT
|
|
|
|
#include <fauxmoESP.h>
|
|
fauxmoESP alexa;
|
|
|
|
struct AlexaDevChange {
|
|
AlexaDevChange(unsigned char device_id, bool state) : device_id(device_id), state(state) {};
|
|
unsigned char device_id = 0;
|
|
bool state = false;
|
|
};
|
|
#include <queue>
|
|
static std::queue<AlexaDevChange> _alexa_dev_changes;
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// ALEXA
|
|
// -----------------------------------------------------------------------------
|
|
|
|
bool _alexaWebSocketOnReceive(const char * key, JsonVariant& value) {
|
|
return (strncmp(key, "alexa", 5) == 0);
|
|
}
|
|
|
|
void _alexaWebSocketOnSend(JsonObject& root) {
|
|
root["alexaVisible"] = 1;
|
|
root["alexaEnabled"] = getSetting("alexaEnabled", ALEXA_ENABLED).toInt() == 1;
|
|
}
|
|
|
|
void _alexaConfigure() {
|
|
alexa.enable(getSetting("alexaEnabled", ALEXA_ENABLED).toInt() == 1);
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void alexaSetup() {
|
|
|
|
// Backwards compatibility
|
|
moveSetting("fauxmoEnabled", "alexaEnabled");
|
|
|
|
// Load & cache settings
|
|
_alexaConfigure();
|
|
|
|
#if WEB_SUPPORT
|
|
|
|
// Websockets
|
|
wsOnSendRegister(_alexaWebSocketOnSend);
|
|
wsOnAfterParseRegister(_alexaConfigure);
|
|
wsOnReceiveRegister(_alexaWebSocketOnReceive);
|
|
|
|
#endif
|
|
|
|
unsigned int relays = relayCount();
|
|
String hostname = getSetting("hostname");
|
|
if (relays == 1) {
|
|
alexa.addDevice(hostname.c_str());
|
|
} else {
|
|
for (unsigned int i=0; i<relays; i++) {
|
|
alexa.addDevice((hostname + "_" + i).c_str());
|
|
}
|
|
}
|
|
|
|
alexa.onSetState([&](unsigned char device_id, const char * name, bool state) {
|
|
AlexaDevChange change(device_id, state);
|
|
_alexa_dev_changes.push(change);
|
|
});
|
|
|
|
alexa.onGetState([](unsigned char device_id, const char * name) {
|
|
return relayStatus(device_id);
|
|
});
|
|
|
|
// Register loop
|
|
espurnaRegisterLoop(alexaLoop);
|
|
|
|
}
|
|
|
|
void alexaLoop() {
|
|
|
|
alexa.handle();
|
|
|
|
while (!_alexa_dev_changes.empty()) {
|
|
AlexaDevChange& change = _alexa_dev_changes.front();
|
|
DEBUG_MSG_P(PSTR("[ALEXA] Device #%u state: %s\n"), change.device_id, change.state ? "ON" : "OFF");
|
|
relayStatus(change.device_id, change.state);
|
|
_alexa_dev_changes.pop();
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|