Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

led-ble

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

led-ble - npm Package Compare versions

Comparing version
1.0.2
to
1.1.0
+2
-1
PKG-INFO
Metadata-Version: 2.1
Name: led-ble
Version: 1.0.2
Version: 1.1.0
Summary: Control a wide range of LED BLE devices

@@ -19,2 +19,3 @@ Home-page: https://github.com/bluetooth-devices/led-ble

Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries

@@ -21,0 +22,0 @@ Provides-Extra: docs

[tool.poetry]
name = "led-ble"
version = "1.0.2"
version = "1.1.0"
description = "Control a wide range of LED BLE devices"

@@ -5,0 +5,0 @@ authors = ["J. Nick Koston <nick@koston.org>"]

from __future__ import annotations
__version__ = "1.0.2"
__version__ = "1.1.0"

@@ -5,0 +5,0 @@

@@ -7,3 +7,3 @@ BASE_UUID_FORMAT = "0000{}-0000-1000-8000-00805f9b34fb"

STATE_COMMAND = b"\xEF\x01\x77"
STATE_COMMAND = b"\xef\x01\x77"

@@ -10,0 +10,0 @@

@@ -14,3 +14,2 @@ from __future__ import annotations

class LEDBLEModel:
model_num: int # The model number aka byte 1

@@ -17,0 +16,0 @@ models: list[str] # The model names from discovery

@@ -8,3 +8,2 @@ from __future__ import annotations

class LEDBLEState:
power: bool = False

@@ -11,0 +10,0 @@ rgb: tuple[int, int, int] = (0, 0, 0)

"""Utils."""
from __future__ import annotations

@@ -3,0 +4,0 @@