Skip to content

Commit

Permalink
fix(config): add value 2 to Aeotec ZW100 param 81, FW 1.10-1.12 (#4361)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Mar 14, 2022
1 parent 9200727 commit 0134fa7
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion packages/config/config/devices/0x0086/zw100.json
Original file line number Diff line number Diff line change
Expand Up @@ -397,11 +397,36 @@
},
{
"#": "81",
"$if": "firmwareVersion >= 1.8",
"$if": "firmwareVersion === 1.8 || firmwareVersion === 1.9 || firmwareVersion >= 1.13",
"$import": "~/templates/master_template.json#base_enable_disable_inverted",
"label": "LED Blinking",
"defaultValue": 0
},
{
"#": "81",
"$if": "firmwareVersion >= 1.10 && firmwareVersion <= 1.12",
"label": "LED Blinking",
"valueSize": 1,
"minValue": 0,
"maxValue": 2,
"defaultValue": 1,
"unsigned": true,
"allowManualEntry": false,
"options": [
{
"label": "Enable",
"value": 0
},
{
"label": "Disable (only when PIR is triggered)",
"value": 1
},
{
"label": "Disable completely",
"value": 2
}
]
},
{
"#": "101[0x01]",
"$import": "templates/aeotec_template.json#auto_report_group1_battery"
Expand Down

0 comments on commit 0134fa7

Please sign in to comment.