Skip to content

Commit

Permalink
Merge pull request #525 from WillowInc/2024-09-17-pumps
Browse files Browse the repository at this point in the history
Add pump types
  • Loading branch information
rszcodronski authored Sep 17, 2024
2 parents 5d49314 + da3b064 commit 0840ea5
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"@id": "dtmi:com:willowinc:ChilledWaterPump;1",
"@type": "Interface",
"displayName": {
"en": "Chilled Water Pump"
},
"extends" : [
"dtmi:com:willowinc:HydronicPump;1"
],
"contents": [
],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"@id": "dtmi:com:willowinc:CondenserWaterPump;1",
"@type": "Interface",
"displayName": {
"en": "Condenser Water Pump"
},
"extends" : [
"dtmi:com:willowinc:HydronicPump;1"
],
"contents": [
],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"@id": "dtmi:com:willowinc:HeatingHotWaterPump;1",
"@type": "Interface",
"displayName": {
"en": "Heating Hot Water Pump"
},
"extends" : [
"dtmi:com:willowinc:HydronicPump;1"
],
"contents": [
],
"@context": [
"dtmi:dtdl:context;3"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"@id": "dtmi:com:willowinc:DomesticWaterBoosterPump;1",
"@type": "Interface",
"displayName": {
"en": "Domestic Water Booster Pump"
},
"extends" : [
"dtmi:com:willowinc:DomesticWaterPump;1"
],
"contents": [
],
"@context": [
"dtmi:dtdl:context;3"
]
}

0 comments on commit 0840ea5

Please sign in to comment.