Skip to content

Commit ab3dc32

Browse files
Add support for Kuka KR60-HA
1 parent 984e1f2 commit ab3dc32

21 files changed

+319
-0
lines changed

kuka_kr60_support/CMakeLists.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
cmake_minimum_required(VERSION 2.8.3)
3+
4+
project(kuka_kr60_support)
5+
6+
find_package(catkin REQUIRED)
7+
8+
catkin_package()
9+
10+
if (CATKIN_ENABLE_TESTING)
11+
find_package(roslaunch REQUIRED)
12+
roslaunch_add_file_check(test/roslaunch_test_kr60ha.xml)
13+
endif()
14+
15+
foreach(dir launch meshes urdf)
16+
install(
17+
DIRECTORY ${dir}/
18+
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}/${dir})
19+
endforeach()
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0"?>
2+
<launch>
3+
<!-- Load robot description to parameter server -->
4+
<param name="robot_description" command="$(find xacro)/xacro.py '$(find kuka_kr60_support)/urdf/kr60_ha.xacro'"/>
5+
</launch>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0"?>
2+
<launch>
3+
<include file="$(find kuka_kr60_support)/launch/load_kr60_ha.launch" />
4+
<param name="use_gui" value="true" />
5+
<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher"/>
6+
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher"/>
7+
<node name="rviz" pkg="rviz" type="rviz" args="-d $(find industrial_robot_client)/config/robot_state_visualize.rviz" required="true" />
8+
</launch>
4.28 KB
Binary file not shown.
19.2 KB
Binary file not shown.
16.5 KB
Binary file not shown.
22.8 KB
Binary file not shown.
4.38 KB
Binary file not shown.
10.8 KB
Binary file not shown.
8.58 KB
Binary file not shown.

0 commit comments

Comments
 (0)