From 6e4a5aef176ef96d981d99d9eae778c494e4afb0 Mon Sep 17 00:00:00 2001 From: David Bowen Date: Mon, 21 Feb 2022 03:05:01 +0000 Subject: [PATCH 1/3] Add inside room temperature As suggested by mjr: https://community.openenergymonitor.org/t/heat-pump-experimentation-app-release-news/13423/19 it would be nice to include the indoor temperature too. I'm going with their suggestions for naming and coloring so this merges well with their personal setup. --- mmspheatpump.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mmspheatpump.php b/mmspheatpump.php index 44b265a..49a27cc 100755 --- a/mmspheatpump.php +++ b/mmspheatpump.php @@ -168,7 +168,7 @@ -
+
From 9bf118933c3a1f62c0ac8f0e2a8338f13aa6647a Mon Sep 17 00:00:00 2001 From: David Bowen Date: Mon, 21 Feb 2022 03:07:31 +0000 Subject: [PATCH 2/3] Describe RoomTemperatureZone1 so it looks nice This will allow it to be consumed by the MMSPHeatpump app with common behaviour wherever it is used. The autoname of `RoomTemperatureZone1` matches the attribute name used in the device info. --- config/application-configuration.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/config/application-configuration.json b/config/application-configuration.json index 14221af..5c20d6d 100755 --- a/config/application-configuration.json +++ b/config/application-configuration.json @@ -23,6 +23,17 @@ "optional": true, "description": "The temperature of the cool fluid returning to the heat pump in degrees Celsius (°C)" }, + "RoomTemperatureZone1": { + "displayOptions": { + "label": "Inside", + "color": "purple" + }, + "type": "feed", + "autoname": "RoomTemperatureZone1", + "engine": 5, + "optional": true, + "description": "The room temperature in Zone1 in degrees Celsius (°C)" + }, "OutdoorTemperature": { "displayOptions": { "label": "Outside", @@ -334,4 +345,4 @@ "name": "DesignFlowTemperature", "description": "When showing nominal efficiencies, what design flow temp should be used" } -} \ No newline at end of file +} From 9fc59d76fd7773531319e6fcdbba69ce0f9dbfcc Mon Sep 17 00:00:00 2001 From: David Bowen Date: Wed, 23 Feb 2022 01:03:35 +0000 Subject: [PATCH 3/3] Remove unneccessary whitespace --- config/application-configuration.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/application-configuration.json b/config/application-configuration.json index 5c20d6d..d6395c8 100755 --- a/config/application-configuration.json +++ b/config/application-configuration.json @@ -33,7 +33,7 @@ "engine": 5, "optional": true, "description": "The room temperature in Zone1 in degrees Celsius (°C)" - }, + }, "OutdoorTemperature": { "displayOptions": { "label": "Outside",