-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added a BT for driving in a square * removed extra printouts * decreased timeout * do not increment recovery * code review * code review * test and linting fix * updated plugin list * fixed BT loading issue * bump up speed
- Loading branch information
1 parent
7efb6ba
commit 9bb37c6
Showing
7 changed files
with
42 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!-- | ||
his Behavior Tree drives in a square for odometry calibration experiments | ||
--> | ||
|
||
<root main_tree_to_execute="MainTree"> | ||
<BehaviorTree ID="MainTree"> | ||
<Repeat num_cycles="3"> | ||
<Sequence name="Drive in a square"> | ||
<DriveOnHeading dist_to_travel="2.0" speed="0.2" time_allowance="12"/> | ||
<Spin spin_dist="1.570796" is_recovery="false"/> | ||
<DriveOnHeading dist_to_travel="2.0" speed="0.2" time_allowance="12"/> | ||
<Spin spin_dist="1.570796" is_recovery="false"/> | ||
<DriveOnHeading dist_to_travel="2.0" speed="0.2" time_allowance="12"/> | ||
<Spin spin_dist="1.570796" is_recovery="false"/> | ||
<DriveOnHeading dist_to_travel="2.0" speed="0.2" time_allowance="12"/> | ||
<Spin spin_dist="1.570796" is_recovery="false"/> | ||
</Sequence> | ||
</Repeat> | ||
</BehaviorTree> | ||
</root> |
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