Search found 2 matches

by benwindheim
18 Dec 2019 23:26
Forum: Discussions in English
Topic: List all devices in z-wave network
Replies: 2
Views: 3591

Re: List all devices in z-wave network

Partially solved: zway.devices[1].data.neighbours.value returns node id routing list for z-way controller. Now how do I derive Device Type given the NodeID? EDIT solved: Better approach found in manual - vDevList = this.controller.devices.filter(function(x) { return x.get("deviceType") ===...
by benwindheim
18 Dec 2019 21:01
Forum: Discussions in English
Topic: List all devices in z-wave network
Replies: 2
Views: 3591

List all devices in z-wave network

I'm developing a module that relies on dynamically growing and shrinking the amount of door locks it's working on. Is there a way to list all devices of a certain type, or just all devices connected to a Z-Way controller from the index.js of my module? Specifically, I'm looking to get the device ID ...