From fa3964bb565bd01d769677bead918b113ce94780 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Fri, 27 Feb 2026 19:48:35 +0000 Subject: [PATCH] upd comments pointing to implementation notes --- src/vban_cli/bus.py | 3 +-- src/vban_cli/eq.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/vban_cli/bus.py b/src/vban_cli/bus.py index d68b215..233b121 100644 --- a/src/vban_cli/bus.py +++ b/src/vban_cli/bus.py @@ -7,8 +7,7 @@ from .context import Context from .help import CustomHelpFormatter app = App(name='bus', help_formatter=CustomHelpFormatter()) -# The VBAN protocl does not yet define a packet structure for these bus parameters. -# Hopefully that will come in the form of a 'VBAN_VMPARAMBUS_PACKET'. +# See https://github.com/onyx-and-iris/vban-cli?tab=readme-ov-file#implementation-notes - 1. # app.command(eq.app.meta, name='eq') diff --git a/src/vban_cli/eq.py b/src/vban_cli/eq.py index 2925f78..f8e246e 100644 --- a/src/vban_cli/eq.py +++ b/src/vban_cli/eq.py @@ -47,7 +47,7 @@ def on( If provided, sets the on state to this value. If not provided, the current on state is printed. """ if new_state is None: - # This doesn't work because the VBAN protocol doesn't send an initial NBS1 packet. + # See https://github.com/onyx-and-iris/vban-cli?tab=readme-ov-file#implementation-notes - 2. # console.out.print(ctx.client.strip[index].eq.channel[0].cell[band].on) return ctx.client.strip[index].eq.channel[0].cell[band].on = new_state