homebridge-lg-airco
Advanced tools
Comparing version 0.0.96 to 0.0.97
{ | ||
"name": "homebridge-lg-airco", | ||
"version": "0.0.96", | ||
"version": "0.0.97", | ||
"description": "Homebridge plugin to control a Smart Thinq enabled LG airco unit. Makes use of WideQ => https://github.com/sampsyo/wideq", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
const Wideq = require("./lg/wideq").Wideq; | ||
const Utils = require("./utils/utils").Utils; | ||
@@ -27,2 +28,3 @@ let Service, Characteristic; | ||
this.wideq = new Wideq(config['country'], config['language']); | ||
this.utils = new Utils(); | ||
@@ -266,3 +268,3 @@ this.state = { | ||
rotationSpeedCharac.on('get', me.getRotationSpeed.bind(me)); | ||
rotationSpeedCharac.on('set', me.setRotationSpeed.bind(me)); | ||
rotationSpeedCharac.on('set', me.utils.debounce(me.setRotationSpeed.bind(me), 1000)); | ||
@@ -269,0 +271,0 @@ return [informationService, me.service]; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
105007
14
397