Skip to content

Commit

Permalink
fix(config): add units, improve descriptions for Everspring ST814 (#6712
Browse files Browse the repository at this point in the history
)

Co-authored-by: Gal Szkolnik <[email protected]>
  • Loading branch information
AlCalzone and Lockszmith-GH authored Apr 2, 2024
1 parent dcb5570 commit fcbeff7
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions packages/config/config/devices/0x0060/st814.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
{
"#": "1",
"label": "Dim Level Sent via Basic Set",
"description": "The dim level sent to a lamp module upon activation: (0) Off; (1)-(99) Dim Level",
"valueSize": 1,
"minValue": 0,
"maxValue": 99,
Expand All @@ -44,8 +43,9 @@
{
"#": "2",
"label": "Temperature Trigger ON Value",
"description": "Temperature level when a ON command is sent out. Set to 99 to disable.",
"description": "Temperature level when a ON command is sent out. Allowable range -20..50, 99.",
"valueSize": 1,
"unit": "°C/F",
"minValue": -20,
"maxValue": 99,
"defaultValue": 99,
Expand All @@ -59,8 +59,9 @@
{
"#": "3",
"label": "Temperature Trigger OFF Value",
"description": "Temperature level when a OFF command is sent out. Set to 99 to disable.",
"description": "Temperature level when a OFF command is sent out. Allowable range -20..50, 99.",
"valueSize": 1,
"unit": "°C/F",
"minValue": -20,
"maxValue": 99,
"defaultValue": 99,
Expand All @@ -74,8 +75,9 @@
{
"#": "4",
"label": "Humidity Trigger ON Value",
"description": "Humidity level when a ON command is sent out. Set to 99 to disable.",
"description": "Humidity level when a ON command is sent out. Allowable range 20..90, 99.",
"valueSize": 1,
"unit": "%rH",
"minValue": 20,
"maxValue": 99,
"defaultValue": 99,
Expand All @@ -89,8 +91,9 @@
{
"#": "5",
"label": "Humidity Trigger OFF Value",
"description": "Humidity level when a OFF command is sent out. Set to 99 to disable.",
"description": "Humidity level when a OFF command is sent out. Allowable range 20..90, 99.",
"valueSize": 1,
"unit": "%rH",
"minValue": 20,
"maxValue": 99,
"defaultValue": 99,
Expand All @@ -106,6 +109,7 @@
"label": "Auto Report Time",
"description": "Sets the time interval when a sensor report is sent",
"valueSize": 2,
"unit": "minutes",
"minValue": 0,
"maxValue": 1439,
"defaultValue": 0,
Expand All @@ -121,6 +125,7 @@
"label": "Auto Report Temperature",
"description": "Sets the temperature change causing a sensor report.",
"valueSize": 1,
"unit": "°C/F",
"minValue": 0,
"maxValue": 70,
"defaultValue": 0,
Expand All @@ -134,8 +139,9 @@
{
"#": "8",
"label": "Auto Report Humidity",
"description": "Sets the humidity change causing a sensor report.",
"description": "Sets the humidity change causing a sensor report. Allowable range: 0, 5..70.",
"valueSize": 1,
"unit": "%rH",
"minValue": 0,
"maxValue": 70,
"defaultValue": 0,
Expand Down

0 comments on commit fcbeff7

Please sign in to comment.