From 09210d3e6d1878f9b8fa98a7a8d47c0e85f03c83 Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Mon, 8 Aug 2022 12:26:56 +0200 Subject: [PATCH] Add optional boost state to thermostats nymea:app already implements this and many plugins do too. Apparently most of the radiator thermostats support this, so it's worth making it part of the interface. --- libnymea/interfaces/thermostat.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libnymea/interfaces/thermostat.json b/libnymea/interfaces/thermostat.json index ae9dce1d..4a0d5466 100644 --- a/libnymea/interfaces/thermostat.json +++ b/libnymea/interfaces/thermostat.json @@ -24,6 +24,11 @@ "name": "coolingOn", "type": "bool", "optional": true + }, + { + "name": "boost", + "type": "bool", + "optional": true } ] }