implement set_default_mixer command

This commit is contained in:
coon 2025-09-18 21:34:16 +02:00
parent 0af2dabf6b
commit 38a3d23b91

View file

@ -117,7 +117,7 @@ class Mixer:
msg_bytes = bytes(a.bytes() + b.bytes() + c.bytes() + d.bytes())
print (' '.join(f"{b:02X}" for b in msg_bytes))
print(' '.join(f"{b:02X}" for b in msg_bytes))
self.sock.sendall(msg_bytes)
def shutdown(self):
@ -176,7 +176,7 @@ def main():
case 'set_default_layer':
mixer = Mixer(args.ip, MIXER_PORT)
# mixer.set_layer()
mixer.scene_recall(0)
case 'watch':
mixer = Mixer(args.ip, MIXER_PORT)