Socket
Socket
Sign inDemoInstall

homebridge-syntex-dynamic-platform

Package Overview
Dependencies
Maintainers
1
Versions
345
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

homebridge-syntex-dynamic-platform - npm Package Compare versions

Comparing version 1.0.0-b23 to 1.0.0-b24

4

accessories/coloredBulb.js

@@ -54,3 +54,3 @@ const DimmedBulbService = require('./dimmedBulb');

{
callback(null, super.getValue('hue') || 0);
callback(super.getValue('hue', true));
}

@@ -67,3 +67,3 @@

{
callback(null, super.getValue('saturation') || 100);
callback(super.getValue('saturation', true));
}

@@ -70,0 +70,0 @@

@@ -26,4 +26,4 @@ const BaseService = require('./base');

{
callback(null, super.getValue('state') || false);
callback(super.getValue('state', true));
}
}

@@ -51,3 +51,3 @@ const LightBulbService = require('./lightBulb');

{
callback(null, super.getValue('brightness') || 100);
callback(super.getValue('brightness', true));
}

@@ -54,0 +54,0 @@

@@ -31,3 +31,3 @@ const BaseService = require('./base');

{
callback(null, super.getValue('state') || false);
callback(super.getValue('state', true));
}

@@ -34,0 +34,0 @@

@@ -26,3 +26,3 @@ const BaseService = require('./base');

{
callback(null, super.getValue('state') || false);
callback(super.getValue('state', true));
}

@@ -29,0 +29,0 @@

@@ -156,2 +156,22 @@ const AccessoryInformationService = require('./info');

}
getID()
{
return this.mac;
}
getManufacturer()
{
return this.manufacturer
}
getModel()
{
return this.model;
}
getVersion()
{
return this.version;
}
}
{
"name": "homebridge-syntex-dynamic-platform",
"version": "1.0.0-b23",
"version": "1.0.0-b24",
"description": "A Dynamic Platform Accessory",

@@ -5,0 +5,0 @@ "main": "platform.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc