-
Notifications
You must be signed in to change notification settings - Fork 506
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add further Danfoss specific resource items (#6175)
- Loading branch information
Showing
10 changed files
with
214 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"schema": "resourceitem1.schema.json", | ||
"id": "config/lastchange_amount", | ||
"datatype": "Int16", | ||
"access": "R", | ||
"public": true, | ||
"description": "Specifies the delta between the current active setpoint and the previous active setpoint.", | ||
"parse": {"at": "0x0031", "cl": "0x0201","ep": 0, "eval": "Item.val = Attr.val", "fn": "zcl:attr"}, | ||
"read": {"at": "0x0031", "cl": "0x0201", "ep": 0, "fn": "zcl:attr"}, | ||
"default": 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"schema": "resourceitem1.schema.json", | ||
"id": "config/lastchange_source", | ||
"datatype": "UInt8", | ||
"access": "R", | ||
"public": true, | ||
"description": "Determine whether changes to setpoints were initiated by manual interaction, scheduled programming or some other source.", | ||
"parse": {"at": "0x0030", "cl": "0x0201","ep": 0, "eval": "Item.val = Attr.val", "fn": "zcl:attr"}, | ||
"read": {"at": "0x0030", "cl": "0x0201", "ep": 0, "fn": "zcl:attr"}, | ||
"default": 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"schema": "resourceitem1.schema.json", | ||
"id": "config/lastchange_time", | ||
"datatype": "ISO 8601 timestamp", | ||
"access": "R", | ||
"public": true, | ||
"description": "Specifies the time in UTC at which the setpoint change was recorded.", | ||
"parse": {"at": "0x0032", "cl": "0x0201","ep": 0, "eval": "Item.val = Attr.val", "fn": "zcl:attr"}, | ||
"read": {"at": "0x0032", "cl": "0x0201", "ep": 0, "fn": "zcl:attr"}, | ||
"default": 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"schema": "resourceitem1.schema.json", | ||
"id": "config/loadbalancing", | ||
"datatype": "Bool", | ||
"access": "RW", | ||
"public": true, | ||
"description": "Thermostat runs stand alone (false) or shares load with others in the same room (true).", | ||
"default": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"schema": "resourceitem1.schema.json", | ||
"id": "config/radiatorcovered", | ||
"datatype": "Bool", | ||
"access": "RW", | ||
"public": true, | ||
"description": "Radiator is standing freely (false) or is covered (true). Set this to true for Danfoss Ally to use external temp sensor.", | ||
"default": false | ||
} |
9 changes: 9 additions & 0 deletions
9
devices/generic/items/config_windowopendetectionenabled_item.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"schema": "resourceitem1.schema.json", | ||
"id": "config/windowopendetectionenabled", | ||
"datatype": "Bool", | ||
"access": "RW", | ||
"public": true, | ||
"description": "Turns the window open detection feature on or off.", | ||
"default": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters