From c54c3a3a239a4cb22b4574fa9c4540982274aa2c Mon Sep 17 00:00:00 2001 From: Lucca Ketterer Date: Mon, 26 Apr 2021 20:13:46 +0200 Subject: [PATCH] update help menu --- client/client.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/client.py b/client/client.py index 0327361..316f9c3 100755 --- a/client/client.py +++ b/client/client.py @@ -35,7 +35,10 @@ def helpmenu(): print("Options:") print("-h show help") print("-s set static color") - print("-v visualizer") + print("-v visualizer") + print("-i interactive interface") + print("-a ambient light") + print("-t test function (debug)") def base_color(r,g,b): min_value = min([r,g,b])