From 592311d3eeafd65f87c53675b460e69ab081026a Mon Sep 17 00:00:00 2001 From: Konstantin Lampalzer Date: Sat, 16 Oct 2021 23:38:15 +0200 Subject: [PATCH] Change lines --- compLib/VisionDaemon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compLib/VisionDaemon.py b/compLib/VisionDaemon.py index 93f9966..404c8d0 100644 --- a/compLib/VisionDaemon.py +++ b/compLib/VisionDaemon.py @@ -60,10 +60,10 @@ def write_ip_to_screen(): try: ip = str(get_ip()) print(f"writing {ip} to display") - Display.write(1, f"FW. V{Spi.get_version()}") - Display.write(2, datetime.datetime.now().strftime("%b %d %H:%M:%S")) + Display.write(2, f"FW. V{Spi.get_version()}") Display.write(3, "IP:") Display.write(4, ip) + Display.write(1, datetime.datetime.now().strftime("%b %d %H:%M:%S")) time.sleep(5) except Exception as e: print(f"Exception in write ip thread: {e}")