From 9f33bf3d8fb794b8d7b094793a83a72ca4a06528 Mon Sep 17 00:00:00 2001 From: coon Date: Thu, 2 Oct 2025 21:05:59 +0200 Subject: [PATCH] mixer.py: set iPad flag = 0 (no need for periodic active_sense byte to keep TCP connection alive) --- mixer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mixer.py b/mixer.py index 1a581e7..7583495 100755 --- a/mixer.py +++ b/mixer.py @@ -89,7 +89,7 @@ class Mixer: def get_system_state(self): msg_id = self.SysExMessageId.GET_SYSTEM_STATE_REQUEST.value - i_pad_flag = 0x01 + i_pad_flag = 0x00 data = self.SYSEX_ALL_CALL + [msg_id, i_pad_flag]