forked from AutonomyLab/create_robot
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Using variable instead of default name * Fix inertias * Fix LegacyMode again * Support initial pose for AMCL * Fix RViz config for navigation * Add slam_gmapping example * Fix RViz launchfile * Use optical link for camera * Fix position of slam_gmapping launchfile and use config YAML * Use HTTPS instead of SSH * Clean up and improve XACRO model
- Loading branch information
Showing
23 changed files
with
314 additions
and
81 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 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" ?> | ||
<robot name="create_2" xmlns:xacro="http://ros.org/wiki/xacro"> | ||
<xacro:include filename="$(find ca_description)/urdf/create_base.xacro"/> | ||
<xacro:include filename="$(find ca_description)/urdf/roomblock.xacro"/> | ||
|
||
<xacro:property name="wheel_separation" value="0.235"/> | ||
<xacro:property name="base_diameter" value="0.3485"/> | ||
<xacro:property name="wheel_width" value="0.024"/> | ||
<xacro:property name="wheel_radius" value="0.036"/> | ||
|
||
<xacro:create_base wheel_separation="${wheel_separation}" | ||
base_diameter="${base_diameter}" | ||
wheel_width="${wheel_width}" | ||
wheel_radius="${wheel_radius}" | ||
visualize="$(arg visualize)"> | ||
<mesh filename="package://ca_description/meshes/create_2.dae" /> | ||
</xacro:create_base> | ||
|
||
<!-- Roomblock --> | ||
<xacro:roomblock parent="base_link" visualize="$(arg visualize)"/> | ||
</robot> |
48 changes: 17 additions & 31 deletions
48
ca_description/urdf/create_base.urdf.xacro → ca_description/urdf/create_base.xacro
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
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,5 +1,5 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<arg name="config_file" default=""/> | ||
<arg name="config_file" default="default"/> | ||
<node type="rviz" name="rviz" pkg="rviz" args="-d $(arg config_file)" required="false"/> | ||
</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
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
Oops, something went wrong.