From e8e66c9b7fdd70710e64e15ae7a6b2a7996b7a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20St=C3=BCrz?= Date: Wed, 10 Nov 2021 08:11:19 +0100 Subject: [PATCH] Add optional common states for heat pumps --- libnymea/interfaces/heatpump.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/libnymea/interfaces/heatpump.json b/libnymea/interfaces/heatpump.json index 6fe96126..eb8a4621 100644 --- a/libnymea/interfaces/heatpump.json +++ b/libnymea/interfaces/heatpump.json @@ -1,3 +1,33 @@ { "description": "The base for all heat pump interfaces. Can be used by the client to filter for heat pumps in the system." + "states": [ + { + "name": "outdoorTemperature", + "type": "double", + "unit": "DegreeCelsius", + "logged": true, + "optional": true + }, + { + "name": "hotWaterTemperature", + "type": "double", + "unit": "DegreeCelsius", + "logged": true, + "optional": true + }, + { + "name": "returnTemperature", + "type": "double", + "unit": "DegreeCelsius", + "logged": true, + "optional": true + }, + { + "name": "flowTemperature", + "type": "double", + "unit": "DegreeCelsius", + "logged": true, + "optional": true + } + ] }