From 5dcbd9a50bd2c3868e1481a433bff6523f4de841 Mon Sep 17 00:00:00 2001 From: Stefano Bertelli Date: Sun, 31 Dec 2023 11:27:24 -0600 Subject: [PATCH] fix: reduce speed to 57600 --- rotary_controller_python/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rotary_controller_python/main.py b/rotary_controller_python/main.py index c93f600..c55e24d 100644 --- a/rotary_controller_python/main.py +++ b/rotary_controller_python/main.py @@ -86,7 +86,7 @@ class MainApp(App): def __init__(self, **kv): try: self.device = communication.DeviceManager( - serial_device=self.serial_port, baudrate=115200, address=17 + serial_device=self.serial_port, baudrate=57600, address=17 ) except Exception as e: log.error(f"Communication cannot be started, will try again: {e.__str__()}")