forked from CMU-Robotics-Club/RoboBuggy2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added Trajectory Msg and finished off path planner
- Loading branch information
1 parent
16ec98e
commit 1a2eb70
Showing
7 changed files
with
54 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
<launch> | ||
|
||
<node pkg="foxglove_bridge" exec="foxglove_bridge" name="foxglove" namespace="SC"/> | ||
|
||
<node pkg="buggy" exec="engine.py" name="SC_sim_single" namespace="SC"> | ||
<param name="velocity" value="12"/> | ||
<param name="pose" value="Hill1_SC"/> | ||
</node> | ||
<node pkg="buggy" exec="buggy_state_converter.py" name="SC_state_converter" namespace="SC"/> | ||
<node pkg="buggy" exec="controller_node.py" name="SC_controller" namespace="SC"> | ||
|
||
<node pkg="buggy" exec="buggy_state_converter.py" name="NAND_state_converter" namespace="NAND"/> | ||
<node pkg="buggy" exec="controller_node.py" name="NAND_controller" namespace="NAND"> | ||
<param name="dist" value="0.0"/> | ||
<param name="traj_name" value="buggycourse_safe.json"/> | ||
<param name="controller" value="stanley"/> | ||
</node> | ||
<!-- <node pkg="buggy" exec="path_planner" name="SC_path_planner" namespace="SC"> | ||
<param name="traj_name" value="buggycourse_safe.json"/> | ||
</node> --> | ||
|
||
<node pkg="buggy" exec="buggy_state_converter.py" name="NAND_state_converter" namespace="NAND"/> | ||
<node pkg="buggy" exec="engine.py" name="NAND_sim_single" namespace="NAND"> | ||
<param name="velocity" value="10"/> | ||
<param name="velocity" value="8"/> | ||
<param name="pose" value="Hill1_NAND"/> | ||
</node> | ||
<node pkg="buggy" exec="controller_node.py" name="NAND_controller" namespace="NAND"> | ||
|
||
<node pkg="buggy" exec="buggy_state_converter.py" name="SC_state_converter" namespace="SC"/> | ||
<node pkg="buggy" exec="controller_node.py" name="SC_controller" namespace="SC"> | ||
<param name="dist" value="0.0"/> | ||
<param name="traj_name" value="buggycourse_safe.json"/> | ||
<param name="controller" value="stanley"/> | ||
</node> | ||
<node pkg="buggy" exec="engine.py" name="SC_sim_single" namespace="SC"> | ||
<param name="velocity" value="12"/> | ||
<param name="pose" value="Hill1_SC"/> | ||
</node> | ||
<node pkg="buggy" exec="path_planner.py" name="SC_path_planner" namespace="SC" output="screen"> | ||
<param name="traj_name" value="buggycourse_safe.json"/> | ||
<remap from="other/state" to="/NAND/self/state"/> | ||
</node> | ||
|
||
</launch> |
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,4 @@ | ||
float64 time | ||
float64 cur_idx | ||
float64[] easting | ||
float64[] northing |
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