homebridge-syntex-dynamic-platform
Advanced tools
Comparing version 1.0.8-b58 to 1.0.8-b59
@@ -187,3 +187,3 @@ const fs = require('fs'), path = require('path'); | ||
} | ||
else if(service != null && service.letters != null) | ||
else if(service != null && service.letters != null && accessory.homebridgeAccessory.context.data[service.letters] != null) | ||
{ | ||
@@ -190,0 +190,0 @@ state = accessory.homebridgeAccessory.context.data[service.letters]; |
{ | ||
"name": "homebridge-syntex-dynamic-platform", | ||
"version": "1.0.8-b58", | ||
"version": "1.0.8-b59", | ||
"description": "A Dynamic Platform Accessory", | ||
@@ -5,0 +5,0 @@ "main": "main.js", |
@@ -82,3 +82,3 @@ const BaseService = require('../base'); | ||
getRotationDirection(callback, verbose) | ||
getRotationDirection(callback, verbose = false) | ||
{ | ||
@@ -93,3 +93,3 @@ this.direction = this.getValue('direction', verbose); | ||
setRotationDirection(direction, callback, verbose) | ||
setRotationDirection(direction, callback, verbose = false) | ||
{ | ||
@@ -106,3 +106,3 @@ this.direction = this.tempState.direction = direction; | ||
getRotationSpeed(callback, verbose) | ||
getRotationSpeed(callback, verbose = false) | ||
{ | ||
@@ -117,3 +117,3 @@ this.speed = this.getValue('speed', verbose); | ||
setRotationSpeed(speed, callback, verbose) | ||
setRotationSpeed(speed, callback, verbose = false) | ||
{ | ||
@@ -120,0 +120,0 @@ this.speed = this.tempState.speed = speed; |
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
90211