diff options
| author | Edvin <[email protected]> | 2025-05-12 12:00:25 +0200 |
|---|---|---|
| committer | Edvin <[email protected]> | 2025-05-12 12:00:25 +0200 |
| commit | b9ffc73cccdb02f36f6c28592ce42c2e414508b6 (patch) | |
| tree | c052d43c687e686f84d4ee6be65756dd3ccd4148 /DWM.py | |
| parent | 07515e3ac7da2e023ad1cabe7356011ee2a549a4 (diff) | |
Changed from arduino nano to arduino nano every
Diffstat (limited to 'DWM.py')
| -rwxr-xr-x | DWM.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,7 +29,7 @@ kf.x = np.array([0., 0.]) kf.P *= 1000 # Noise matrix -kf.R = np.diag([25, 25]) +kf.R = np.diag([100, 100]) kf.Q = np.eye(2) @@ -37,7 +37,7 @@ position = deque([(0, 0)]) updRate = "1 1" # Active Idle -with serial.Serial('/dev/ttyACM0', 115200, timeout = 1) as s: +with serial.Serial('/dev/ttyACM1', 115200, timeout = 1) as s: # print(f"Opened serial port {s.name}") |
