-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit fd86a07
Showing
17 changed files
with
1,647 additions
and
0 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,11 @@ | ||
|
||
cmake_minimum_required(VERSION 2.8.3) | ||
project(opendog_description) | ||
|
||
find_package(catkin REQUIRED COMPONENTS) | ||
|
||
catkin_package() | ||
|
||
install(DIRECTORY meshes launch urdf | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
) |
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,12 @@ | ||
<launch> | ||
<arg name="description_name" default="robot_description"/> | ||
<arg name="description_file" default="$(find opendog_description)/urdf/opendog.urdf"/> | ||
|
||
<param name="$(arg description_name)" textfile="$(arg description_file)"/> | ||
|
||
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" respawn="false" output="screen"> | ||
<param name="use_tf_static" value="true"/> | ||
<param name="publish_frequency" value="200"/> | ||
<remap from="robot_description" to="$(arg description_name)"/> | ||
</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,15 @@ | ||
<launch> | ||
<param name="robot_description" command="$(find xacro)/xacro --inorder '$(find opendog_description)/urdf/opendog.urdf.xacro' " /> | ||
<node name="opendog_robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher" respawn="false" output="screen"> | ||
<param name="publish_frequency" type="double" value="30.0" /> | ||
<param name="ignore_timestamp" type="bool" value="true" /> | ||
</node> | ||
|
||
<node type="rviz" name="rviz" pkg="rviz" args="-d $(find opendog_description)/rviz/urdf_viewer.rviz" /> | ||
|
||
<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher"> | ||
<param name="/use_gui" value="false"/> | ||
<rosparam param="/source_list">[joint_states]</rosparam> | ||
</node> | ||
</launch> | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,23 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<name>opendog_description</name> | ||
<version>0.1.0</version> | ||
<description>Open Dog Description Package</description> | ||
|
||
<maintainer email="[email protected]">Juan Miguel Jimeno</maintainer> | ||
<author>Juan Miguel Jimeno</author> | ||
|
||
<license>BSD</license> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<exec_depend>roslaunch</exec_depend> | ||
<exec_depend>robot_state_publisher</exec_depend> | ||
<exec_depend>joint_state_publisher</exec_depend> | ||
<exec_depend>urdf</exec_depend> | ||
<exec_depend>xacro</exec_depend> | ||
<exec_depend>rviz</exec_depend> | ||
<exec_depend>gazebo_plugins</exec_depend> | ||
<exec_depend>hector_gazebo_plugins</exec_depend> | ||
<exec_depend>hector_sensors_description</exec_depend> | ||
|
||
</package> |
Oops, something went wrong.