From 1a8f6b9cfd74f084bb531a493d0dda1d8fc590dd Mon Sep 17 00:00:00 2001 From: killian <63927363+KillianLucas@users.noreply.github.com> Date: Sun, 24 Mar 2024 17:02:47 -0700 Subject: [PATCH] Better messaging --- software/source/clients/base_device.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/software/source/clients/base_device.py b/software/source/clients/base_device.py index 89d63df..cc152b3 100644 --- a/software/source/clients/base_device.py +++ b/software/source/clients/base_device.py @@ -256,9 +256,9 @@ class Device: try: async with websockets.connect(WS_URL) as websocket: if CAMERA_ENABLED: - print("\nPress the spacebar to start/stop recording. Press 'c' to capture an image from the camera. Press CTRL-C to exit.") + print("\nHold the spacebar to start recording. Press 'c' to capture an image from the camera. Press CTRL-C to exit.") else: - print("\nPress the spacebar to start/stop recording. Press CTRL-C to exit.") + print("\Hold the spacebar to start recording. Press CTRL-C to exit.") asyncio.create_task(self.message_sender(websocket))