summaryrefslogtreecommitdiff
path: root/include/pio
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2023-10-05 01:36:24 +0300
committerEvgeny Zinoviev <me@ch1p.io>2023-10-05 01:36:24 +0300
commit17b447646752cb141c30684046906961e8d0af9f (patch)
tree251e459fce0b781726107791cb667d40a07362b8 /include/pio
parent69adc549d317217b275a3e0cca689a9b1e7d3263 (diff)
pio, mqtt: multiple fixes
Diffstat (limited to 'include/pio')
-rw-r--r--include/pio/libs/mqtt/homekit/mqtt/mqtt.cpp2
-rw-r--r--include/pio/libs/mqtt/library.json2
-rw-r--r--include/pio/libs/temphum/library.json2
3 files changed, 3 insertions, 3 deletions
diff --git a/include/pio/libs/mqtt/homekit/mqtt/mqtt.cpp b/include/pio/libs/mqtt/homekit/mqtt/mqtt.cpp
index aa769a5..83764ca 100644
--- a/include/pio/libs/mqtt/homekit/mqtt/mqtt.cpp
+++ b/include/pio/libs/mqtt/homekit/mqtt/mqtt.cpp
@@ -119,7 +119,7 @@ void Mqtt::reconnect() {
void Mqtt::disconnect() {
// TODO test how this works???
reconnectTimer.detach();
- client.disconnect();
+ client.disconnect(true);
}
void Mqtt::loop() {
diff --git a/include/pio/libs/mqtt/library.json b/include/pio/libs/mqtt/library.json
index f3f2504..6238c21 100644
--- a/include/pio/libs/mqtt/library.json
+++ b/include/pio/libs/mqtt/library.json
@@ -1,6 +1,6 @@
{
"name": "homekit_mqtt",
- "version": "1.0.11",
+ "version": "1.0.12",
"build": {
"flags": "-I../../include"
}
diff --git a/include/pio/libs/temphum/library.json b/include/pio/libs/temphum/library.json
index 329b7ca..4cf5c63 100644
--- a/include/pio/libs/temphum/library.json
+++ b/include/pio/libs/temphum/library.json
@@ -1,6 +1,6 @@
{
"name": "homekit_temphum",
- "version": "1.0.3",
+ "version": "1.0.4",
"build": {
"flags": "-I../../include"
}