How to use the node-tradfri-client.AccessoryTypes.blind function in node-tradfri-client

To help you get started, we’ve selected a few node-tradfri-client examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github thkl / Homematic-Virtual-Interface / plugins / IkeaTradfri / TradfriPlatform.js View on Github external
group.deviceIDs.forEach(deviceID => {
                if ((groupType === 0) && (that.trApiDevices[deviceID] === AccessoryTypes.lightbulb)) {
                    groupType = 1;
                }
                if ((groupType === 0) && (that.trApiDevices[deviceID] === AccessoryTypes.blind)) {
                    groupType = 2;
                }
            });