Browse Source

setupMqtt better reading

pull/361/head
DanielR92 2 years ago
parent
commit
6f86557446
  1. 21
      tools/esp8266/app.cpp

21
tools/esp8266/app.cpp

@ -821,11 +821,10 @@ void app::setupMqtt(void) {
if(mSettingsValid) { if(mSettingsValid) {
if(mConfig.mqtt.broker[0] > 0) { if(mConfig.mqtt.broker[0] > 0) {
mMqttActive = true; mMqttActive = true;
if(mMqttInterval < MIN_MQTT_INTERVAL) if(mMqttInterval < MIN_MQTT_INTERVAL) mMqttInterval = MIN_MQTT_INTERVAL;
mMqttInterval = MIN_MQTT_INTERVAL; } else {
}
else
mMqttInterval = 0xffff; mMqttInterval = 0xffff;
}
mMqttTicker = 0; mMqttTicker = 0;
mMqtt.setup(&mConfig.mqtt, mSysConfig.deviceName); mMqtt.setup(&mConfig.mqtt, mSysConfig.deviceName);
@ -838,20 +837,6 @@ void app::setupMqtt(void) {
mMqtt.sendMsg("device", mSysConfig.deviceName); mMqtt.sendMsg("device", mSysConfig.deviceName);
mMqtt.sendMsg("uptime", "0"); mMqtt.sendMsg("uptime", "0");
} }
/*char topic[30];
for(uint8_t i = 0; i < MAX_NUM_INVERTERS; i ++) {
iv = mSys->getInverterByPos(i);
if(NULL != iv) {
for(uint8_t i = 0; i < 4; i++) {
if(0 != iv->chName[i][0]) {
snprintf(topic, 30, "%s/ch%d/%s", iv->name, i+1, "name");
mMqtt.sendMsg(topic, iv->chName[i]);
yield();
}
}
}
}*/
} }
} }
} }

Loading…
Cancel
Save