From ef25a90096206ec510c0705e549ca2a69f2eb734 Mon Sep 17 00:00:00 2001 From: kreene1987 Date: Wed, 26 Oct 2022 13:29:19 -0500 Subject: [PATCH 1/2] Allow higher minimum dim level up to 98 Per: https://community.inovelli.com/t/maximum-mininum-level-of-45/2727/13 Only applies to FW v 1.57+, please confirm applied properly. --- packages/config/config/devices/0x031e/lzw31-sn.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/packages/config/config/devices/0x031e/lzw31-sn.json b/packages/config/config/devices/0x031e/lzw31-sn.json index d51694262a85..61a5e30fd68c 100644 --- a/packages/config/config/devices/0x031e/lzw31-sn.json +++ b/packages/config/config/devices/0x031e/lzw31-sn.json @@ -89,6 +89,7 @@ }, { "#": "5", + "$if": " firmwareVersion < 1.57", "label": "Minimum Dim Level", "unit": "%", "valueSize": 1, @@ -96,6 +97,16 @@ "maxValue": 45, "defaultValue": 1 }, + { + "#": "5", + "$if": " firmwareVersion >= 1.57", + "label": "Minimum Dim Level", + "unit": "%", + "valueSize": 1, + "minValue": 1, + "maxValue": 98, + "defaultValue": 1 + }, { "#": "6", "label": "Maximum Dim Level", From e7fffef81a8350997839fe598d7af48a92d77872 Mon Sep 17 00:00:00 2001 From: AlCalzone Date: Sun, 13 Nov 2022 11:19:08 +0100 Subject: [PATCH 2/2] remove unnecessary spaces --- packages/config/config/devices/0x031e/lzw31-sn.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/config/config/devices/0x031e/lzw31-sn.json b/packages/config/config/devices/0x031e/lzw31-sn.json index 61a5e30fd68c..1bba6fadbc81 100644 --- a/packages/config/config/devices/0x031e/lzw31-sn.json +++ b/packages/config/config/devices/0x031e/lzw31-sn.json @@ -89,7 +89,7 @@ }, { "#": "5", - "$if": " firmwareVersion < 1.57", + "$if": "firmwareVersion < 1.57", "label": "Minimum Dim Level", "unit": "%", "valueSize": 1, @@ -99,7 +99,7 @@ }, { "#": "5", - "$if": " firmwareVersion >= 1.57", + "$if": "firmwareVersion >= 1.57", "label": "Minimum Dim Level", "unit": "%", "valueSize": 1,