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

fix(config): add units, improve descriptions for Everspring ST814 #6712

Merged
merged 3 commits into from
Apr 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading