default MQTT qos to 0 and added Retain flag option

This commit is contained in:
proddy
2019-10-15 10:02:50 +02:00
parent f39ecb860a
commit 0a6c902872
6 changed files with 41 additions and 10 deletions

View File

@@ -74,10 +74,11 @@ var configfile = {
},
"mqtt": {
"enabled": false,
"ip": "ip",
"port": "port",
"qos": "qos",
"keepalive": "keepalive",
"ip": "10.10.10.10",
"port": 1883,
"qos": 1,
"keepalive": 60,
"retain": true,
"base": "base",
"user": "user",
"password": "password",