Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add inside room temperature #13

Merged
merged 3 commits into from Feb 23, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 12 additions & 1 deletion config/application-configuration.json
Expand Up @@ -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"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to add "fixed" : 1 here so that temperature is rounded to 1 decimal place.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, and the same in "TargetHCTemperatureZone1" too.

},
"type": "feed",
"autoname": "RoomTemperatureZone1",
"engine": 5,
"optional": true,
"description": "The room temperature in Zone1 in degrees Celsius (°C)"
},
"OutdoorTemperature": {
"displayOptions": {
"label": "Outside",
Expand Down Expand Up @@ -334,4 +345,4 @@
"name": "DesignFlowTemperature",
"description": "When showing nominal efficiencies, what design flow temp should be used"
}
}
}
2 changes: 1 addition & 1 deletion mmspheatpump.php
Expand Up @@ -168,7 +168,7 @@
<span class="energy-summary" data-input-config-key="HeatingEnergyConsumed1" data-output-config-key="HeatingEnergyProduced1">
</div>

<div data-label="Temperature" data-config-keys="FlowTemperature,ReturnTemperature,OutdoorTemperature,EffectiveTemperature,OutdoorDewPoint,TargetHCTemperatureZone1" class="chart"></div>
<div data-label="Temperature" data-config-keys="FlowTemperature,ReturnTemperature,OutdoorTemperature,RoomTemperatureZone1,EffectiveTemperature,OutdoorDewPoint,TargetHCTemperatureZone1" class="chart"></div>


<div class="section-heading">
Expand Down