From d24f2c9fe4bcb65f250e74023f05cc399df77c87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=A4usler?= Date: Mon, 30 Jun 2025 03:43:46 +0200 Subject: [PATCH] feat: debug stt callback --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 93de487..df72faa 100644 --- a/main.py +++ b/main.py @@ -91,6 +91,7 @@ def main(): # Register MIDI handler for speech-to-text def handle_stt_midi(msg): + print(f"Received: {msg}") # Check if message matches our trigger if hasattr(msg, 'type') and msg.type == stt_trigger_type and hasattr(msg, 'channel') and msg.channel == stt_channel: if stt_trigger_type == "note_on" and hasattr(msg, 'note') and msg.note == stt_note: