We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ce40d3 commit 63fe94aCopy full SHA for 63fe94a
src/reachy_mini/daemon/app/main.py
@@ -158,6 +158,8 @@ def run_app(args: Args) -> None:
158
"""Temporary fix for audio issues with beta version."""
159
logging.info("Applying audio fix for beta version.")
160
161
+ import time
162
+
163
from reachy_mini.media.audio_control_utils import init_respeaker_usb
164
165
respeaker = init_respeaker_usb()
@@ -166,6 +168,7 @@ def run_app(args: Args) -> None:
166
168
else:
167
169
respeaker.write("REBOOT", [1])
170
respeaker.close()
171
+ time.sleep(1)
172
logging.debug("Respeaker rebooted.")
173
174
health_check_event = asyncio.Event()
0 commit comments