Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
grassjelly committed Aug 1, 2020
0 parents commit fd86a07
Show file tree
Hide file tree
Showing 17 changed files with 1,647 additions and 0 deletions.
11 changes: 11 additions & 0 deletions CMakeLists.txt
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}
)
12 changes: 12 additions & 0 deletions launch/description.launch
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>
15 changes: 15 additions & 0 deletions launch/view_urdf.launch
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 added meshes/base.stl
Binary file not shown.
Binary file added meshes/foot.stl
Binary file not shown.
Binary file added meshes/hip.stl
Binary file not shown.
Binary file added meshes/hip_mirror.stl
Binary file not shown.
Binary file added meshes/lower_leg.stl
Binary file not shown.
Binary file added meshes/upper_leg.stl
Binary file not shown.
23 changes: 23 additions & 0 deletions package.xml
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>
Loading

0 comments on commit fd86a07

Please sign in to comment.