feat: help message

This commit is contained in:
Tony Yang 2023-05-03 15:38:12 +08:00
parent 8eed050252
commit d804efb7ba
Signed by: t510599
GPG Key ID: D88388851C28715D

View File

@ -170,6 +170,11 @@ async def main(loop):
print(f"Upload request {filename} sent!") print(f"Upload request {filename} sent!")
elif command == "q": elif command == "q":
break break
else:
print("Commands:")
print("p: take picture and upload to S3")
print("h: help message")
print("q: quit")
loop.stop() loop.stop()