mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-16 18:36:10 +02:00
Merge branch 'main' of https://github.com/grindylow/ahoy
This commit is contained in:
commit
84cd0c419b
2 changed files with 4 additions and 4 deletions
|
@ -954,7 +954,7 @@ void app::sendMqttDiscoveryConfig(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
serializeJson(doc, buffer);
|
serializeJson(doc, buffer);
|
||||||
mMqtt.sendMsg2(discoveryTopic, buffer);
|
mMqtt.sendMsg2(discoveryTopic, buffer, true);
|
||||||
doc.clear();
|
doc.clear();
|
||||||
|
|
||||||
yield();
|
yield();
|
||||||
|
|
|
@ -39,15 +39,15 @@ class mqtt {
|
||||||
//DPRINTLN(DBG_VERBOSE, F("mqtt.h:sendMsg"));
|
//DPRINTLN(DBG_VERBOSE, F("mqtt.h:sendMsg"));
|
||||||
char top[64];
|
char top[64];
|
||||||
snprintf(top, 64, "%s/%s", mTopic, topic);
|
snprintf(top, 64, "%s/%s", mTopic, topic);
|
||||||
sendMsg2(top, msg);
|
sendMsg2(top, msg, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void sendMsg2(const char *topic, const char *msg) {
|
void sendMsg2(const char *topic, const char *msg, boolean retained) {
|
||||||
if(mAddressSet) {
|
if(mAddressSet) {
|
||||||
if(!mClient->connected())
|
if(!mClient->connected())
|
||||||
reconnect();
|
reconnect();
|
||||||
if(mClient->connected())
|
if(mClient->connected())
|
||||||
mClient->publish(topic, msg);
|
mClient->publish(topic, msg, retained);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue