/* DOMOTICZ MODULE Copyright (C) 2016-2019 by Xose PĂ©rez */ #pragma once #if DOMOTICZ_SUPPORT #include #include template void domoticzSend(const char * key, T value); template void domoticzSend(const char * key, T nvalue, const char * svalue); void domoticzSendRelay(unsigned char relayID, bool status); void domoticzSendRelays(); void domoticzSetup(); bool domoticzEnabled(); #endif // DOMOTICZ_SUPPORT == 1