Skip to content

Commit

Permalink
feat(config): fix logic (guess?)
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Eckhoff <[email protected]>
  • Loading branch information
apella12 committed Jan 22, 2024
1 parent 76ba901 commit 66dbeab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/config/config/devices/0x027a/zen30.json
Original file line number Diff line number Diff line change
Expand Up @@ -268,21 +268,21 @@
},
{
"#": "28",
"$if": "firmwareVersion = 1.11 || firmwareVersion = 2.11 || firmwareVersion >= 3.10",
"$if": "firmwareVersion == 1.11 || firmwareVersion == 2.11 || firmwareVersion >= 3.10",
"$import": "~/templates/master_template.json#base_enable_disable",
"label": "Scene Control (Dimmer)",
"defaultValue": 1
},
{
"#": "29",
"$if": "firmwareVersion = 1.11 || firmwareVersion = 2.11 || firmwareVersion >= 3.10",
"$if": "firmwareVersion == 1.11 || firmwareVersion == 2.11 || firmwareVersion >= 3.10",
"$import": "~/templates/master_template.json#base_enable_disable",
"label": "Scene Control (Relay)",
"defaultValue": 1
},
{
"#": "30",
"$if": "firmwareVersion = 1.11 || firmwareVersion = 2.11 || firmwareVersion >= 3.10",
"$if": "firmwareVersion == 1.11 || firmwareVersion == 2.11 || firmwareVersion >= 3.10",
"$import": "templates/zooz_template.json#local_programming"
},
{
Expand Down

0 comments on commit 66dbeab

Please sign in to comment.