From 8e0c8eda4162b8ff3bea348c2f2f3b27b311a001 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Sat, 24 Dec 2022 21:09:10 +0100 Subject: [PATCH] Enable logging for thermostat states --- libnymea/interfaces/thermostat.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/libnymea/interfaces/thermostat.json b/libnymea/interfaces/thermostat.json index 4a0d5466..559e5aaf 100644 --- a/libnymea/interfaces/thermostat.json +++ b/libnymea/interfaces/thermostat.json @@ -7,28 +7,33 @@ "unit": "DegreeCelsius", "minValue": "any", "maxValue": "any", - "writable": true + "writable": true, + "logged": true }, { "name": "temperature", "type": "double", "unit": "DegreeCelsius", - "optional": true + "optional": true, + "logged": true }, { "name": "heatingOn", "type": "bool", - "optional": true + "optional": true, + "logged": true }, { "name": "coolingOn", "type": "bool", - "optional": true + "optional": true, + "logged": true }, { "name": "boost", "type": "bool", - "optional": true + "optional": true, + "logged": true } ] }