9 lines
164 B
C
9 lines
164 B
C
|
#ifndef WLED_MQTT_H
|
||
|
#define WLED_MQTT_H
|
||
|
/*
|
||
|
* MQTT communication protocol for home automation
|
||
|
*/
|
||
|
bool initMqtt();
|
||
|
void publishMqtt();
|
||
|
|
||
|
#endif //WLED_MQTT_H
|