From fcbeff746d86280e48bfa4b2d762602bedb6ec3b Mon Sep 17 00:00:00 2001 From: AlCalzone Date: Tue, 2 Apr 2024 13:16:03 +0200 Subject: [PATCH] fix(config): add units, improve descriptions for Everspring ST814 (#6712) Co-authored-by: Gal Szkolnik --- .../config/config/devices/0x0060/st814.json | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/packages/config/config/devices/0x0060/st814.json b/packages/config/config/devices/0x0060/st814.json index 5babc57f4f4c..3b3fc89930cc 100644 --- a/packages/config/config/devices/0x0060/st814.json +++ b/packages/config/config/devices/0x0060/st814.json @@ -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, @@ -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, @@ -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, @@ -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, @@ -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, @@ -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, @@ -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, @@ -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,