New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

knx.js

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

knx.js - npm Package Compare versions

Comparing version 0.6.1 to 0.6.2

2

package.json
{
"name": "knx.js",
"version": "0.6.1",
"version": "0.6.2",
"private": false,

@@ -5,0 +5,0 @@ "repository": {

@@ -118,6 +118,6 @@ /**

if (this.debug)
console.log("[%s] Sending %s to %s.", this.ClassName, data, address);
console.log("[%s] Sending %s to %s.", this.ClassName, JSON.stringify(data), JSON.stringify(address));
this.knxSender.Action(address, data);
if (this.debug)
console.log("[%s] Sent %s to %s.", this.ClassName, data, address);
console.log("[%s] Sent %s to %s.", this.ClassName, JSON.stringify(data), JSON.stringify(address));
}

@@ -132,6 +132,6 @@

if (this.debug)
console.log("[%s] Sending request status to %s.", this.ClassName, address);
console.log("[%s] Sending request status to %s.", this.ClassName, JSON.stringify(address));
this.knxSender.RequestStatus(address, callback);
if (this.debug)
console.log("[%s] Sent request status to %s.", this.ClassName, address);
console.log("[%s] Sent request status to %s.", this.ClassName, JSON.stringify(address));
}

@@ -138,0 +138,0 @@

@@ -184,3 +184,3 @@ /**

return new Promise(function (fulfill, reject) {
//console.log('delay for ' + time + 'ms');
console.log('delay for ' + time + 'ms');
setTimeout(fulfill, time);

@@ -187,0 +187,0 @@ });

@@ -31,3 +31,3 @@ /**

// +--------+--------+--------+--------+----------------+----------------+--------+----------------+
// 1 byte 1 byte 1 byte 1 byte 2 bytes 2 bytes 1 byte 2 bytes
59// 1 byte 1 byte 1 byte 1 byte 2 bytes 2 bytes 1 byte 2 bytes
//

@@ -99,2 +99,4 @@ // Message Code = 0x11 - a L_Data.req primitive

KnxHelper.WriteData(datagram, data, i);
this.connection.debug && console.log('KnxSender.CreateActionDatagramCommon datagram[%s]', datagram.toString('hex'));
debugger;
return datagram;

@@ -101,0 +103,0 @@ }

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