-
-
Notifications
You must be signed in to change notification settings - Fork 626
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: new device config file Shelly Qubino Wave 1
Added configuration file for the Qubio Wave 1. Associations, Parameters and Inclusion, exclusion, reser metadata.
- Loading branch information
Igor Magajne
committed
Sep 26, 2023
1 parent
48ab690
commit 0402f15
Showing
1 changed file
with
268 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,268 @@ | ||
{ | ||
"manufacturer": "Shelly", | ||
"manufacturerId": "0x0460", | ||
"label": "QNSW-001X16", | ||
"description": "Wave 1", | ||
"devices": [ | ||
{ | ||
"productType": "0x0002", | ||
"productId": "0x0083" | ||
} | ||
], | ||
"firmwareVersion": { | ||
"min": "0.0", | ||
"max": "255.255" | ||
}, | ||
"associations": { | ||
"1": { | ||
"label": "Lifeline", | ||
"maxNodes": 9, | ||
"isLifeline": true | ||
}, | ||
"2": { | ||
"label": "SW1: On/Off", | ||
"maxNodes": 9 | ||
}, | ||
"3": { | ||
"label": "SW1: Start/Stop Level Change", | ||
"maxNodes": 9 | ||
} | ||
}, | ||
"paramInformation": [ | ||
{ | ||
"#": "1", | ||
"label": "SW1 Switch Type", | ||
"valueSize": 1, | ||
"minValue": 0, | ||
"maxValue": 2, | ||
"defaultValue": 2, | ||
"unsigned": true, | ||
"allowManualEntry": false, | ||
"options": [ | ||
{ | ||
"label": "Momentary switch", | ||
"value": 0 | ||
}, | ||
{ | ||
"label": "Toggle switch (follow switch)", | ||
"value": 1 | ||
}, | ||
{ | ||
"label": "Toggle switch (change on toggle)", | ||
"value": 2 | ||
} | ||
] | ||
}, | ||
{ | ||
"#": "17", | ||
"$import": "~/templates/master_template.json#state_after_power_failure_prev_off", | ||
"label": "O1: State After Power Failure", | ||
"minValue": 0, | ||
"maxValue": 1, | ||
"unsigned": true | ||
}, | ||
{ | ||
"#": "19", | ||
"label": "O1: Auto-Off Timer", | ||
"description": "The timer resets to zero each time the Device receives an ON command", | ||
"valueSize": 2, | ||
"minValue": 0, | ||
"maxValue": 32535, | ||
"defaultValue": 0, | ||
"unsigned": true | ||
}, | ||
{ | ||
"#": "20", | ||
"label": "O1: Auto-On Timer", | ||
"description": "The timer resets to zero each time the Device receives an OFF command", | ||
"valueSize": 2, | ||
"minValue": 0, | ||
"maxValue": 32535, | ||
"defaultValue": 0, | ||
"unsigned": true | ||
}, | ||
{ | ||
"#": "25", | ||
"label": "O1: Auto-On/Off Timer Unit", | ||
"valueSize": 1, | ||
"minValue": 0, | ||
"maxValue": 1, | ||
"defaultValue": 0, | ||
"unsigned": true, | ||
"allowManualEntry": false, | ||
"options": [ | ||
{ | ||
"label": "Seconds", | ||
"value": 0 | ||
}, | ||
{ | ||
"label": "10 ms", | ||
"value": 1 | ||
} | ||
] | ||
}, | ||
{ | ||
"#": "23", | ||
"label": "O1: Relay Type", | ||
"valueSize": 1, | ||
"minValue": 0, | ||
"maxValue": 1, | ||
"defaultValue": 0, | ||
"unsigned": true, | ||
"allowManualEntry": false, | ||
"options": [ | ||
{ | ||
"label": "NO: normally open", | ||
"value": 0 | ||
}, | ||
{ | ||
"label": "NC: normally closed", | ||
"value": 1 | ||
} | ||
] | ||
}, | ||
{ | ||
"#": "91", | ||
"label": "Alarm Configuration: Water", | ||
"description": "This parameter determines which alarm frames the Device should respond to and how.", | ||
"valueSize": 4, | ||
"defaultValue": 0, | ||
"unsigned": true, | ||
"allowManualEntry": false, | ||
"options": [ | ||
{ | ||
"label": "No action", | ||
"value": 0 | ||
}, | ||
{ | ||
"label": "Open relay", | ||
"value": 1 | ||
}, | ||
{ | ||
"label": "Close relay", | ||
"value": 2 | ||
} | ||
] | ||
}, | ||
{ | ||
"#": "92", | ||
"label": "Alarm Configuration: Smoke", | ||
"description": "This parameter determines which alarm frames the Device should respond to and how.", | ||
"valueSize": 4, | ||
"defaultValue": 0, | ||
"unsigned": true, | ||
"allowManualEntry": false, | ||
"options": [ | ||
{ | ||
"label": "No action", | ||
"value": 0 | ||
}, | ||
{ | ||
"label": "Open relay", | ||
"value": 1 | ||
}, | ||
{ | ||
"label": "Close relay", | ||
"value": 2 | ||
} | ||
] | ||
}, | ||
{ | ||
"#": "93", | ||
"label": "Alarm Configuration: CO", | ||
"description": "This parameter determines which alarm frames the Device should respond to and how.", | ||
"valueSize": 4, | ||
"defaultValue": 0, | ||
"unsigned": true, | ||
"allowManualEntry": false, | ||
"options": [ | ||
{ | ||
"label": "No action", | ||
"value": 0 | ||
}, | ||
{ | ||
"label": "Open relay", | ||
"value": 1 | ||
}, | ||
{ | ||
"label": "Close relay", | ||
"value": 2 | ||
} | ||
] | ||
}, | ||
{ | ||
"#": "94", | ||
"label": "Alarm Configuration: Heat", | ||
"description": "This parameter determines which alarm frames the Device should respond to and how.", | ||
"valueSize": 4, | ||
"defaultValue": 0, | ||
"unsigned": true, | ||
"allowManualEntry": false, | ||
"options": [ | ||
{ | ||
"label": "No action", | ||
"value": 0 | ||
}, | ||
{ | ||
"label": "Open relay", | ||
"value": 1 | ||
}, | ||
{ | ||
"label": "Close relay", | ||
"value": 2 | ||
} | ||
] | ||
}, | ||
{ | ||
"#": "120", | ||
"label": "Factory Reset", | ||
"description": "Reset to factory default settings and remove from the Z-Wave network.", | ||
"valueSize": 4, | ||
"defaultValue": 0, | ||
"unsigned": true, | ||
"allowManualEntry": false, | ||
"options": [ | ||
{ | ||
"label": "Idle", | ||
"value": 0 | ||
}, | ||
{ | ||
"label": "Factory reset", | ||
"value": 1431655765 | ||
} | ||
] | ||
}, | ||
{ | ||
"#": "201", | ||
"label": "Serial Number: Part 1", | ||
"valueSize": 4, | ||
"minValue": 0, | ||
"maxValue": 2147483647, | ||
"unsigned": true, | ||
"readOnly": true | ||
}, | ||
{ | ||
"#": "202", | ||
"label": "Serial Number: Part 2", | ||
"valueSize": 4, | ||
"minValue": 0, | ||
"maxValue": 2147483647, | ||
"unsigned": true, | ||
"readOnly": true | ||
}, | ||
{ | ||
"#": "203", | ||
"label": "Serial Number: Part 3", | ||
"valueSize": 4, | ||
"minValue": 0, | ||
"maxValue": 2147483647, | ||
"unsigned": true, | ||
"readOnly": true | ||
} | ||
], | ||
"metadata": { | ||
"inclusion": "6.1 Adding the Device to a Z-Wave™ network (inclusion)\nNote! All Device outputs (O, O1, O2, etc. - depending on the Device type) will turn the load 1s on/1s off /1s on/1s off if the Device is successfully added to/removed from a Z-Wave™ network.\n\n6.1.1 SmartStart adding (inclusion)\nSmartStart enabled products can be added into a Z-Wave™ network by scanning the Z-Wave™ QR Code present on the Device with a gateway providing SmartStart inclusion. No further action is required, and the SmartStart device will be added automatically within 10 minutes of being switched on in the network vicinity.\n1. With the gateway application scan the QR code on the Device label and add the Security 2 (S2) Device Specific Key (DSK) to the provisioning list in the gateway.\n2. Connect the Device to a power supply.\n3. Check if the blue LED is blinking in Mode 1. If so, the Device is not added to a Z-Wave™ network.\n4. Adding will be initiated automatically within a few seconds after connecting the Device to a power supply, and the Device will be added to a Z-Wave™ network automatically.\n5. The blue LED will be blinking in Mode 2 during the adding process.\n6. The green LED will be blinking in Mode 1 if the Device is successfully added to a Z-Wave™ network.\n\n6.1.2 Adding (inclusion) with a switch/push-button\n1. Connect the Device to a power supply.\n2. Check if the blue LED is blinking in Mode 1. If so, the Device is not added to a Z-Wave™ network.\n3. Enable add/remove mode on the gateway.\n4. Toggle the switch/push-button connected to any of the SW terminals (SW, SW1, SW2, etc.) 3 times within 3 seconds (this procedure puts the Device in Learn mode*). The Device must receive on/off signal 3 times, which means pressing the momentary switch 3 times, or toggling the switch on and off 3 times.\n5. The blue LED will be blinking in Mode 2 during the adding process.\n6. The green LED will be blinking in Mode 1 if the Device is successfully added to a Z-Wave™ network.\n*Learn mode - a state that allows the Device to receive network information from the gateway.\n\n6.1.3 Adding (inclusion) with the S button\n1. Connect the Device to a power supply.\n2. Check if the blue LED is blinking in Mode 1. If so, the Device is not added to a Z-Wave™ network.\n3. Enable add/remove mode on the gateway.\n4. To enter the Setting mode, quickly press and hold the S button on the Device until the LED turns solid blue.\n5. Quickly release and then press and hold (> 2s) the S button on the Device until the blue LED starts blinking in Mode 3. Releasing the S button will start the Learn mode.\n6. The blue LED will be blinking in Mode 2 during the adding process.\n7. The green LED will be blinking in Mode 1 if the Device is successfully added to a Z-Wave™ network.\nNote! In Setting mode, the Device has a timeout of 10s before entering again into Normal mode", | ||
"exclusion": "Removing the Device from a Z-Wave™ network (exclusion)\nNote! The Device will be removed from your Z-wave™ network, but any custom configuration parameters will not be erased.\nNote! All Device outputs (O, O1, O2, etc. - depending on the Device type) will turn the load 1s on/1s off /1s on/1s off if the Device is successfully added to/removed from a Z-Wave™ network.\n\n6.2.1 Removing (exclusion) with a switch/push-button\n1. Connect the Device to a power supply.\n2. Check if the green LED is blinking in Mode 1. If so, the Device is added to a Z-Wave™ network.\n3. Enable add/remove mode on the gateway.\n4. Toggle the switch/push-button connected to any of the SW terminals (SW, SW1, SW2,…) 3 times within 3 seconds (this procedure puts the Device in Learn mode). The Device must receive on/off signal 3 times, which means pressing the momentary switch 3 times, or toggling the switch on and off 3 times.\n5. The blue LED will be blinking in Mode 2 during the removing process.\n6. The blue LED will be blinking in Mode 1 if the Device is successfully removed from a Z-Wave™ network.\n\n6.2.2 Removing (exclusion) with the S button\n1. Connect the Device to a power supply.\n2. Check if the green LED is blinking in Mode 1. If so, the Device is added to a Z-Wave™ network.\n3. Enable add/remove mode on the gateway.\n4. To enter the Setting mode, quickly press and hold the S button on the Device until the LED turns solid blue.\n5. Quickly release and then press and hold (> 2s) the S button on the Device until the blue LED starts blinking in Mode 3. Releasing the S button will start the Learn mode.\n6. The blue LED will be blinking in Mode 2 during the removing process.\n7. The blue LED will be blinking in Mode 1 if the Device is successfully removed from a Z-Wave™ network.\nNote! In Setting mode, the Device has a timeout of 10s before entering again into Normal mode", | ||
"reset": "6.3 Factory reset\n6.3.1 Factory reset general\nAfter Factory reset, all custom parameters and stored values (kWh, associations, routings, etc.) will return to their default state. HOME ID and NODE ID assigned to the Device will be deleted. Use this reset procedure only when the gateway is missing or otherwise inoperable.\n\n6.3.2 Factory reset with a switch/push-button\nNote! Factory reset with a switch/push-button is only possible within the first minute after the Device is connected to a power supply.\n1. Connect the Device to a power supply.\n2. Toggle the switch/push-button connected to any of the SW terminals (SW, SW1, SW2,…) 5 times within 3 seconds. The Device must receive on/off signal 5 times, which means pressing the push-button 5 times, or toggling the switch on and off 5 times.\n3. During factory reset, the LED will turn solid green for about 1s, then the blue and red LED will start blinking in Mode 3 for approx. 2s.\n4. The blue LED will be blinking in Mode 1 if the Factory reset is successful.\n\n6.3.3 Factory reset with the S button\nNote! Factory reset with the S button is possible anytime.\n1. To enter the Setting mode, quickly press and hold the S button on the Device until the LED turns solid blue.\n2. Press the S button multiple times until the LED turns solid red.\n3. Press and hold (> 2s) S button on the Device until the red LED starts blinking in Mode 3. Releasing the S button will start the factory reset.\n4. During factory reset, the LED will turn solid green for about 1s, then the blue and red LED will start blinking in Mode 3 for approx. 2s.\n5. The blue LED will be blinking in Mode 1 if the Factory reset is successful.\n\n6.3.4 Remote factory reset with parameter with the gateway\nFactory reset can be done remotely with the settings in Parameter No. 120" | ||
} | ||
} |