Skip to content

Commit

Permalink
Better messaging
Browse files Browse the repository at this point in the history
  • Loading branch information
KillianLucas committed Mar 25, 2024
1 parent 4e416ce commit 1a8f6b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions software/source/clients/base_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,9 @@ async def websocket_communication(self, WS_URL):
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))

Expand Down

0 comments on commit 1a8f6b9

Please sign in to comment.