Skip to content

Commit 82ddece

Browse files
author
SawYer-Robotics
committed
1.0.6
1 parent c6ae0a4 commit 82ddece

File tree

69 files changed

+5643
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+5643
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ roch_robot
33

44
Robot ROS packages for the SawYer roch, for operating robot hardware.
55

6-
- roch_bringup : Bringup launch files and scripts.
76
- roch_base : Hardware driver for communicating with the onboard MCU.
87
- roch_ftdi : Udev rules files that how to identify /dev/roch.
9-
8+
- roch_control : Control configuration
9+
- roch_description : Robot description (URDF)
10+
- roch_msgs : Message definitions
11+
- roch_safety_controller : Roch safety controller avoid collision.
12+
- roch_sensorpc : Roch sensors publisher using with navigation.

roch_description/CHANGELOG.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2+
Changelog for package roch_description
3+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4+
1.0.6 (2017-01-17)
5+
------------------
6+
7+
0.1.2 (2016-12-14)
8+
------------------
9+
* add Rplidar A1 model
10+
* Contributors: Carl
11+
12+
13+
0.1.1 (2016-12-02)
14+
------------------
15+
* add Intel r200 model
16+
* Contributors: Carl
17+
18+
19+
0.1.0 (2016-10-30)
20+
------------------
21+
* Catkinized
22+
* Contributors: Carl
23+
24+

roch_description/CMakeLists.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
cmake_minimum_required(VERSION 2.8.3)
3+
project(roch_description)
4+
5+
find_package(catkin REQUIRED COMPONENTS roslaunch)
6+
7+
catkin_package()
8+
catkin_add_env_hooks(50.roch_description
9+
SHELLS sh DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/env-hooks)
10+
11+
roslaunch_add_file_check(launch)
12+
13+
install(
14+
DIRECTORY launch meshes urdf robots
15+
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
16+
)

roch_description/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
roch_description
2+
=================
3+
4+
Roch URDF description.
5+
6+
Viewer launchfile is in roch_viz package: `roslaunch roch_viz view_model.launch`
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export ROCH_DESCRIPTION=$(catkin_find --without-underlays --first-only roch_description robots/roch_standard_asus_xtion_pro.urdf.xacro 2>/dev/null)
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0"?>
2+
<launch>
3+
4+
<arg name="base"/>
5+
<arg name="stacks"/>
6+
<arg name="3d_sensor"/>
7+
8+
<arg name="urdf_file" default="$(find xacro)/xacro.py '$(find turtlebot_description)/robots/$(arg base)_$(arg stacks)_$(arg 3d_sensor).urdf.xacro'" />
9+
<param name="robot_description" command="$(arg urdf_file)" />
10+
11+
<node pkg="robot_state_publisher" type="robot_state_publisher" name="robot_state_publisher">
12+
<param name="publish_frequency" type="double" value="5.0" />
13+
</node>
14+
15+
16+
</launch>

roch_description/meshes/chassis.dae

Lines changed: 146 additions & 0 deletions
Large diffs are not rendered by default.
17.6 KB
Loading
559 KB
Loading
132 KB
Loading

0 commit comments

Comments
 (0)