From 70ba63b7e85ad7b8afcd052528a1f1f1a3390ad6 Mon Sep 17 00:00:00 2001 From: IrvingGao <1729854488@qq.com> Date: Mon, 27 May 2024 23:44:42 +0800 Subject: [PATCH] update start light --- takway/clients/web_socket_client_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/takway/clients/web_socket_client_utils.py b/takway/clients/web_socket_client_utils.py index 39a90d1..3ac5f4e 100644 --- a/takway/clients/web_socket_client_utils.py +++ b/takway/clients/web_socket_client_utils.py @@ -28,12 +28,14 @@ from takway.audio_utils import AudioPlayer def start_status_light(hardware, board): + print(f"start status light running.") if board == 'orangepi': for i in range(2): hardware.set_led_on("green") time.sleep(0.5) hardware.set_led_off("green") time.sleep(0.5) + print(f"led {i} on") class WebSocketClinet: