From 3fe31f6bf01254f29ae731ee879e772185a440bf Mon Sep 17 00:00:00 2001 From: Musab Erdem Date: Tue, 23 Jul 2024 11:15:51 +0200 Subject: [PATCH] Optimierung LSP1 Kommunikation --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 88b59ad..2170929 100644 --- a/main.py +++ b/main.py @@ -460,7 +460,7 @@ class ArduinoGUI: if command[0] == 'w': self.tare_angle() if command[0] == 'u': - outCommand = F"command: {command}\n" + outCommand = F"{command}\n" self.arduino.write(outCommand.encode()) print(outCommand.encode()) print(self.arduino.readline())