allow to configure mqtt credentials

This commit is contained in:
technyon
2022-04-03 15:10:29 +02:00
parent b660e1c1a2
commit 90b47507d2
6 changed files with 88 additions and 6 deletions

View File

@@ -41,8 +41,10 @@ private:
bool _mqttConnected = false;
unsigned long _nextReconnect = 0;
char _mqttBrokerAddr[100] = {0};
char _mqttPath[100] = {0};
char _mqttBrokerAddr[101] = {0};
char _mqttPath[181] = {0};
char _mqttUser[31] = {0};
char _mqttPass[31] = {0};
void (*_lockActionReceivedCallback)(const char* value) = NULL;
};