How to use the node-tradfri-client.AccessoryTypes 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 valenting / node_tradfri_ifttt / app.js View on Github external
function tradfri_deviceUpdated(device) {
    console.log("tradfri_deviceUpdated", device.instanceId, device.name)
    if (device.type === tradfriLib.AccessoryTypes.lightbulb) {
        // remember it
        lightbulbs[device.instanceId] = device;
    }
}