Merge branch 'development03' into eth

update to latest release 0.7.26
This commit is contained in:
lumapu 2023-08-08 00:46:18 +02:00
commit 502cf81774
13 changed files with 49 additions and 170 deletions

View file

@ -393,6 +393,7 @@ class RestApi {
void getMqtt(JsonObject obj) {
obj[F("broker")] = String(mConfig->mqtt.broker);
obj[F("clientId")] = String(mConfig->mqtt.clientId);
obj[F("port")] = String(mConfig->mqtt.port);
obj[F("user")] = String(mConfig->mqtt.user);
obj[F("pwd")] = (strlen(mConfig->mqtt.pwd) > 0) ? F("{PWD}") : String("");