From 7f20c39398e3e840e36c83fdcf30ab3414a34a82 Mon Sep 17 00:00:00 2001 From: Jessica Dreyer <jessica.dreyer@stud.hs-bochum.de> Date: Tue, 27 Jun 2023 11:29:30 +0000 Subject: [PATCH] Corrected Spelling mistakes --- race_managment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/race_managment.py b/race_managment.py index fdd97dd..8e0c05f 100644 --- a/race_managment.py +++ b/race_managment.py @@ -14,10 +14,10 @@ from grafic import Line_Plotter, Line_Plotter_Time, Track_Plotter, Dashboard #%% constant values HOST = '' # Symbolic name meaning all available interfaces PORT = 50007 # Arbitrary non-privileged port -CHAR_RECIVING = 31 # Number of chars witch one message contains +CHAR_RECIVING = 31 # Number of chars one UDP-message contains THRESHOLD_LEFT = 0.05 # Value to detect a left turn of the robot THRESHOLD_RIGHT = -0.05 # Value to detect a right turn of the robot -BLOCK_SIZE_DA = 10 # Number of iterations to analyse the sektion type +BLOCK_SIZE_DA = 10 # Number of iterations to analyze the section type S = 0 # Value for a straight part of the track R = 1 # Value for a right turn L = 2 # Value for a left turn -- GitLab