You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,20 @@
1
1
# Autonomous-Robot-Simulation
2
2
Simulation of an autonomously navigating robot.
3
-
This is a WIP project used for experimentation.
3
+
4
4
<br>
5
5
Author: Cameron Rosenthal @Supernova1114
6
6
<br>
7
7
8
+
### Robot Parameters:
9
+
safeDistanceThresh: // If an obstacle is within this distance, the robot will attempt to avoid it.
10
+
goToFreeSpaceDistThresh: // Should be greater than safeDistanceThresh. If an obstacle is between this distance and safeDistanceThresh, the robot will traverse towards free space.
11
+
maxMoveSpeed: // Normal move speed.
12
+
maxRotationSpeed: // Normal rotation speed.
13
+
avoidanceMoveSpeed: // Move speed during the robot's obstacle avoidance attempt.
14
+
avoidanceRotationSpeed: // Rotation speed during the robot's obstacle avoidance attempt.
15
+
8
16
### Notes
9
-
- Robot uses a simulated 2D LIDAR module for mapping.
10
-
-
17
+
- Robot uses a simulated 2D LIDAR module for ranging data.
0 commit comments