* fix #845 MqTT subscription for `ctrl/power/[IV-ID]` was missing
This commit is contained in:
lumapu 2023-04-11 20:54:33 +02:00
parent d114fd6743
commit f946b35d06
2 changed files with 5 additions and 0 deletions

View file

@ -1,5 +1,8 @@
# Development Changes
## 0.6.5 - 2023-04-11
* fix #845 MqTT subscription for `ctrl/power/[IV-ID]` was missing
## 0.6.4 - 2023-04-06
* merge PR #846, improved NRF24 communication and MI, thx @beegee3 & @rejoe2
* merge PR #859, fix burger menu height, thx @ThomasPohl

View file

@ -247,6 +247,8 @@ class PubMqtt {
subscribe(mVal);
snprintf(mVal, 20, "ctrl/restart/%d", i);
subscribe(mVal);
snprintf(mVal, 20, "ctrl/power/%d", i);
subscribe(mVal);
}
subscribe(subscr[MQTT_SUBS_SET_TIME]);
}