From 60fe15822f89356f1db33e609963ab9b0a285f82 Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 27 Apr 2023 13:17:07 -0700 Subject: [PATCH] printing data to see whats going on --- mic_hat_examples/recording_examples/record.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mic_hat_examples/recording_examples/record.py b/mic_hat_examples/recording_examples/record.py index 5482948..bb92970 100644 --- a/mic_hat_examples/recording_examples/record.py +++ b/mic_hat_examples/recording_examples/record.py @@ -26,6 +26,7 @@ frames = [] for i in range(0, int(RESPEAKER_RATE / CHUNK * RECORD_SECONDS)): data = stream.read(CHUNK) print("read a chunk") + print(data) frames.append(data) print("* done recording")