From 50709c96e05a8977f8e5b5edb9b9b69411e1b8b7 Mon Sep 17 00:00:00 2001 From: Konstantin Lampalzer Date: Sun, 5 Sep 2021 11:27:23 +0100 Subject: [PATCH] Added prints on library startup --- compLib/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compLib/__init__.py b/compLib/__init__.py index e67ec4b..e42c956 100644 --- a/compLib/__init__.py +++ b/compLib/__init__.py @@ -18,7 +18,9 @@ except Exception as e: compLib.LogstashLogging.Logging.get_logger().error(f"error during checking apt package version -> {str(e)}") print(f"\033[91merror during checking apt package version -> {str(e)}\033[0m\n") +print(f"\033[34mInitializing chipmunk board...\033[0m") compLib.Reset.Reset.reset_bot() compLib.Spi.Spi.health_check() compLib.Spi.Spi.start_health_check_loop() -compLib.Encoder.Encoder.clear_all() \ No newline at end of file +compLib.Encoder.Encoder.clear_all() +print(f"\033[34mReady\033[0m\n") \ No newline at end of file