Option 1:
- Select the Debug tab
- Select the “open in window” icon, it opens a dedicated browser window for logs messages
- Go back to the original window and then back to the Control Panel
- Click the Blue FAB button (hamburger) in the lower right
- Select Advanced actions (magic wand)
- Under “Driver function” select WRITE
- In the driver function text box paste this code that prints each DSK (or not) to the debug window:
const { logger, require } = this
const { dskToString } = require('@zwave-js/core')
for (const node of driver.controller.nodes.values()) {
if (node.dsk) {
logger.info(`Node ${node.id} has DSK ${dskToString(node.dsk)}`);
} else {
logger.info(`Node ${node.id} has no DSK`);
}
}
- Select the “Run” button
- Look in the debug window and each node with its DSK will be printed
Option 2:
- Goto the Control Panel
- Expand the desired device
- Select Advanced
- Under “Export json” select DRIVER
- It will download a JSON file
- Open the JSON file and look for “dsk”
- Repeat for each device