-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR aims to reenable the row driving of the robot. This is relatet to the new field creation and uses the fields created by the ab line field creation. ToDo: - [x] wait for #188 - [x] wait for zauberzeug/rosys#204 - [x] fix the row change for small row distances (probably without the spline tool) - [x] tidy up row change - [x] Fix row change for real robot with bad odometry - [x] Row 3 of Wiese_Testfeld is driven over two times - [x] Fix start_field_watch - [x] write tests - [x] Fix field outlines - [x] Remove hardcoded fields - [x] Remove old rows_on_field_navigation and AB-Line Navigation - [x] Remove dev info on main page - [x] Move ESP gpio code to zauberzeug/rosys#196 Known Issues: - Always starts at the first row - Can not continue a row after restart --------- Co-authored-by: Lukas Baecker <baecker.lukas@outlook.de> Co-authored-by: Pascal Schade <pascal@zauberzeug.com>
- Loading branch information
1 parent
ef427b8
commit b081ccb
Showing
18 changed files
with
462 additions
and
786 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
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
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,19 +1,14 @@ | ||
|
||
from .a_b_line_navigation import ABLineNavigation | ||
from .coverage_navigation import CoverageNavigation | ||
from .crossglide_demo_navigation import CrossglideDemoNavigation | ||
from .field_navigation import FieldNavigation | ||
from .follow_crops_navigation import FollowCropsNavigation | ||
from .navigation import Navigation, WorkflowException | ||
from .row_on_field_navigation import RowsOnFieldNavigation | ||
from .straight_line_navigation import StraightLineNavigation | ||
from .crossglide_demo_navigation import CrossglideDemoNavigation | ||
|
||
__all__ = [ | ||
'Navigation', | ||
'WorkflowException', | ||
'RowsOnFieldNavigation', | ||
'StraightLineNavigation', | ||
'FollowCropsNavigation', | ||
'CoverageNavigation', | ||
'ABLineNavigation', | ||
'FieldNavigation', | ||
'CrossglideDemoNavigation', | ||
] |
142 changes: 0 additions & 142 deletions
142
field_friend/automations/navigation/a_b_line_navigation.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.