Skip to content

Commit

Permalink
Merge pull request #420 from WillowInc/2025-04-10-Adding-cooling-and-…
Browse files Browse the repository at this point in the history
…heating-low-limits

Added cooling and heating low limits
  • Loading branch information
wroantree-willow authored Apr 10, 2024
2 parents 3b302ae + 3d0208f commit be0f7e3
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"@id": "dtmi:com:willowinc:CoolingHighLimit;1",
"@type": "Interface",
"displayName": {
"en": "High Limit"
"en": "Cooling High Limit"
},
"description": {"en": "The upper limit on the equipment in cooling mode"},
"extends" : [
Expand Down
16 changes: 16 additions & 0 deletions Ontology/Willow/Capability/Parameter/Limit/CoolingLowLimit.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"@id": "dtmi:com:willowinc:CoolingLowLimit;1",
"@type": "Interface",
"displayName": {
"en": "Cooling Low Limit"
},
"description": {"en": "The lower limit on the equipment in cooling mode"},
"extends" : [
"dtmi:com:willowinc:LowLimit;1"
],
"contents": [
],
"@context": [
"dtmi:dtdl:context;3"
]
}
16 changes: 16 additions & 0 deletions Ontology/Willow/Capability/Parameter/Limit/HeatingLowLimit.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"@id": "dtmi:com:willowinc:HeatingLowLimit;1",
"@type": "Interface",
"displayName": {
"en": "Heating Low Limit"
},
"description": {"en": "The lower limit on the equipment in heating mode"},
"extends" : [
"dtmi:com:willowinc:LowLimit;1"
],
"contents": [
],
"@context": [
"dtmi:dtdl:context;3"
]
}

0 comments on commit be0f7e3

Please sign in to comment.