diff --git a/main.py b/main.py index e169483..369ca6f 100644 --- a/main.py +++ b/main.py @@ -450,7 +450,7 @@ class ArduinoGUI: if self.ser: if self.ser.in_waiting: try: - command = self.ser.readline().decode(errors='ignore').strip() + command = self.ser.read(2).decode(errors='ignore').strip() print(command) if command == 'a': message = f"{self.current_angle};{self.current_torque};{self.analogInput};{self.currentSetpoint};{self.currentOutput}\n"