homebridge-syntex-magichome
Advanced tools
Comparing version 1.2.5-b2 to 1.2.5-b3
{ | ||
"name": "homebridge-syntex-magichome", | ||
"version": "1.2.5-b2", | ||
"version": "1.2.5-b3", | ||
"description": "Homebridge Plugin for MagicHome LED Strips with preset scenes", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -124,3 +124,3 @@ const { ColoredBulbService } = require('homebridge-syntex-dynamic-platform'); | ||
this.updateState(state); | ||
callback(null, this.value); | ||
@@ -132,5 +132,5 @@ }); | ||
callback(null, this.value); | ||
} | ||
}, super.hasState('value')); | ||
} | ||
}, super.hasState('value') || super.hasState('hue') || super.hasState('saturation') || super.hasState('brightness')); | ||
} | ||
@@ -141,3 +141,3 @@ | ||
this.setToCurrentColor({ value }, (failed) => { | ||
if(!failed) | ||
@@ -172,3 +172,3 @@ { | ||
}, super.hasState('hue')); | ||
}, false); | ||
} | ||
@@ -200,3 +200,3 @@ | ||
this.updateState(state); | ||
callback(null, this.saturation); | ||
@@ -208,5 +208,5 @@ }); | ||
callback(null, this.saturation); | ||
} | ||
}, super.hasState('saturation')); | ||
} | ||
}, false); | ||
} | ||
@@ -247,3 +247,3 @@ | ||
}, super.hasState('brightness')); | ||
}, false); | ||
} | ||
@@ -250,0 +250,0 @@ |
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
119854