Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

blue-owl-core

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blue-owl-core - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0

4

dist/lib/owlcms.js

@@ -157,3 +157,5 @@ "use strict";

requestConfig() {
this.mqtt?.publish('owlcms/config', '');
// Raspberry Pi OS 12 throws EFAULT if trying to publish an empty string
// for the message, so we must send a space
this.mqtt?.publish('owlcms/config', ' ');
}

@@ -160,0 +162,0 @@ resumeCompetition({ platform, }) {

{
"name": "blue-owl-core",
"version": "1.2.0",
"version": "1.3.0",
"description": "Technical Official device integration for owlcms",

@@ -36,10 +36,10 @@ "keywords": [

"dependencies": {
"debug": "^4.3.4",
"debug": "^4.3.7",
"johnny-five": "scottgonzalez/johnny-five#f548f9aed5b1992cb8f847e95b5a4583f952fc73",
"mqtt": "^4.3.7"
"mqtt": "^5.10.2"
},
"devDependencies": {
"@tsconfig/node16-strictest": "^1.0.4",
"@types/debug": "^4.1.7",
"@types/johnny-five": "^2.1.9",
"@types/debug": "^4.1.12",
"@types/johnny-five": "^2.1.11",
"@types/node": "^16.11.66",

@@ -46,0 +46,0 @@ "@typescript-eslint/eslint-plugin": "^5.43.0",

@@ -6,2 +6,3 @@ import type {

IClientOptions,
MqttClient,
} from 'mqtt';

@@ -126,3 +127,3 @@ import type {

private mqtt?: mqtt.Client;
private mqtt?: MqttClient;

@@ -333,3 +334,5 @@ private options: OwlcmsOptions;

public requestConfig() {
this.mqtt?.publish('owlcms/config', '');
// Raspberry Pi OS 12 throws EFAULT if trying to publish an empty string
// for the message, so we must send a space
this.mqtt?.publish('owlcms/config', ' ');
}

@@ -336,0 +339,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