How to use the homey-meshdriver.ZigBeeLightDevice function in homey-meshdriver

To help you get started, we’ve selected a few homey-meshdriver 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 TedTolboom / com.xiaomi-mi-zigbee / drivers / light.aqcn02 / device.js View on Github external
'use strict';

const ZigBeeLightDevice = require('homey-meshdriver').ZigBeeLightDevice;

class AqaraTunableBulb extends ZigBeeLightDevice {

	async onMeshInit() {

			this.setStoreValue('colorTempMin', 153); // 6500K = 153 Mired
			this.setStoreValue('colorTempMax', 370); // 2700K = 370 Mired

      await super.onMeshInit();
      // enable debugging
      // this.enableDebug();

      // print the node's info to the console
      // this.printNode();
github sebbebebbe / com.philips.hue.zigbee / drivers / HueAmbiance.js View on Github external
"use strict";

const ZigBeeLightDevice = require("homey-meshdriver").ZigBeeLightDevice;

class HueAmbiance extends ZigBeeLightDevice {}

module.exports = HueAmbiance;
github sebbebebbe / com.philips.hue.zigbee / drivers / HueColor.js View on Github external
"use strict";

const ZigBeeXYLightDevice = require("homey-meshdriver").ZigBeeLightDevice;

class HueColor extends ZigBeeXYLightDevice {}

module.exports = HueColor;
github sebbebebbe / com.philips.hue.zigbee / drivers / HueWhite.js View on Github external
"use strict";

const ZigBeeLightDevice = require("homey-meshdriver").ZigBeeLightDevice;

class HueWhite extends ZigBeeLightDevice {}

module.exports = HueWhite;

homey-meshdriver

Use this module to make the creation of Z-Wave & ZigBee Homey Apps easier.

ISC
Latest version published 2 years ago

Package Health Score

45 / 100
Full package analysis

Similar packages