-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #158 from MissouriMRDT/release/testing
Updated Competition Merge (release/competition)
- Loading branch information
Showing
271 changed files
with
20,778 additions
and
1,827 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.iso filter=lfs diff=lfs merge=lfs -text | ||
*.pt filter=lfs diff=lfs merge=lfs -text | ||
*.onnx filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,41 @@ | ||
# | ||
# Mars Rover Design Team | ||
# .gitignore | ||
# | ||
# Created on Feb 06, 2017 | ||
# Updated on Aug 21, 2022 | ||
# | ||
|
||
# PyCharm files | ||
.idea/ | ||
|
||
#Pytest files | ||
# Pytest files | ||
.pytest_cache/ | ||
|
||
#pipenv lock file | ||
.lock | ||
Pipfile.lock | ||
|
||
# Mac Temp Files | ||
.DS_Store | ||
|
||
# Python temp files | ||
*.pyc | ||
|
||
#Our Log Files | ||
# Autonomy Log Files | ||
*/logs/ | ||
logs/ | ||
*.log | ||
*.avi | ||
|
||
#Output files from unit tests | ||
# Output files from unit tests | ||
resources/tests/output/* | ||
!resources/tests/output/.keep | ||
|
||
#Coverage files | ||
# Coverage Files | ||
*.coverage | ||
|
||
# Map test output | ||
map.html | ||
# Web Output Files | ||
*.html | ||
|
||
# Pip wheels | ||
*.whl | ||
|
||
# pip lock | ||
*.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
import algorithms.geomath as geomath | ||
import algorithms.follow_marker as follow_marker | ||
import algorithms.gps_navigate as gps_navigate | ||
import algorithms.heading_hold as heading_hold | ||
import algorithms.marker_search as marker_search | ||
import algorithms.PID_controller as PID_controller | ||
import algorithms.obstacle_detector as obstacle_detector | ||
import algorithms.obstacle_avoider as obstacle_avoider | ||
import algorithms.AR_tag as AR_tag | ||
# | ||
# Mars Rover Design Team | ||
# __init__.py | ||
# | ||
# Created on Feb 06, 2017 | ||
# Updated on Aug 21, 2022 | ||
# | ||
|
||
from algorithms import geomath as geomath | ||
from algorithms import follow_marker as follow_marker | ||
from algorithms import gps_navigate as gps_navigate | ||
from algorithms import heading_hold as heading_hold | ||
from algorithms import marker_search as marker_search | ||
from algorithms import pid_controller as PID_controller | ||
from algorithms import small_movements as small_movements | ||
from algorithms import obstacle_detector as obstacle_detector | ||
from algorithms import obstacle_avoider as obstacle_avoider | ||
from algorithms import stanley_controller as stanley_controller | ||
from algorithms import ar_tag as ar_tag | ||
from algorithms import helper_funcs as helper_funcs |
Oops, something went wrong.