-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from ROBOTIS-GIT/master
merge for sync kinetic-devel and master branch
- Loading branch information
Showing
35 changed files
with
493 additions
and
40 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
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
ball_detector/cfg/DetectorParams.cfg → op3_ball_detector/cfg/DetectorParams.cfg
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
2 changes: 1 addition & 1 deletion
2
ball_detector/cfg/DetectorParamsBlue.cfg → op3_ball_detector/cfg/DetectorParamsBlue.cfg
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
2 changes: 1 addition & 1 deletion
2
ball_detector/cfg/DetectorParamsRed.cfg → op3_ball_detector/cfg/DetectorParamsRed.cfg
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
ball_detector/launch/ball_detector.launch → ...ball_detector/launch/ball_detector.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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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,42 @@ | ||
################################################################################ | ||
# Set minimum required version of cmake, project name and compile options | ||
################################################################################ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(op3_bringup) | ||
|
||
################################################################################ | ||
# Find catkin packages and libraries for catkin and system dependencies | ||
################################################################################ | ||
find_package(catkin REQUIRED) | ||
|
||
################################################################################ | ||
# Setup for python modules and scripts | ||
################################################################################ | ||
|
||
################################################################################ | ||
# Declare ROS messages, services and actions | ||
################################################################################ | ||
|
||
################################################################################ | ||
# Declare ROS dynamic reconfigure parameters | ||
################################################################################ | ||
|
||
################################################################################ | ||
# Declare catkin specific configuration to be passed to dependent projects | ||
################################################################################ | ||
catkin_package() | ||
|
||
################################################################################ | ||
# Build | ||
################################################################################ | ||
|
||
################################################################################ | ||
# Install | ||
################################################################################ | ||
install(DIRECTORY launch rviz | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION} | ||
) | ||
|
||
################################################################################ | ||
# Test | ||
################################################################################ |
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 @@ | ||
<?xml version="1.0" ?> | ||
<launch> | ||
<!-- OP3 Manager --> | ||
<include file="$(find op3_manager)/launch/op3_manager.launch" /> | ||
|
||
<!-- UVC camera --> | ||
<node pkg="usb_cam" type="usb_cam_node" name="usb_cam_node" output="screen"> | ||
<param name="video_device" type="string" value="/dev/video0" /> | ||
<param name="image_width" type="int" value="1280" /> | ||
<param name="image_height" type="int" value="720" /> | ||
<param name="framerate " type="int" value="30" /> | ||
<param name="camera_frame_id" type="string" value="cam_link" /> | ||
<param name="camera_name" type="string" value="camera" /> | ||
</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,18 @@ | ||
<?xml version="1.0" ?> | ||
<launch> | ||
<param name="robot_description" command="$(find xacro)/xacro.py '$(find op3_description)/urdf/robotis_op3.urdf.xacro'"/> | ||
|
||
<!-- Send fake joint values and monitoring present joint angle --> | ||
<node pkg="joint_state_publisher" type="joint_state_publisher" name="joint_state_publisher"> | ||
<param name="use_gui" value="TRUE"/> | ||
<rosparam param="/source_list">[/robotis/present_joint_states]</rosparam> | ||
</node> | ||
|
||
<!-- Combine joint values --> | ||
<node pkg="robot_state_publisher" type="state_publisher" name="robot_state_publisher"> | ||
<remap from="/joint_states" to="/robotis/present_joint_states" /> | ||
</node> | ||
|
||
<!-- Show in Rviz --> | ||
<node pkg="rviz" type="rviz" name="rviz" args="-d $(find op3_bringup)/rviz/op3_bringup.rviz"/> | ||
</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,22 @@ | ||
<?xml version="1.0"?> | ||
<package format="2"> | ||
<name>op3_bringup</name> | ||
<version>0.0.1</version> | ||
<description> | ||
This package is a demo for first time users. | ||
There is an example in the demo where you can run and visualize the robot. | ||
</description> | ||
<license>Apache 2.0</license> | ||
<author email="kmjung@robotis.com">Kayman</author> | ||
<maintainer email="pyo@robotis.com">Pyo</maintainer> | ||
<url type="website">http://wiki.ros.org/op3_bringup</url> | ||
<url type="emanual">http://emanual.robotis.com/docs/en/platform/op3/introduction/</url> | ||
<url type="repository">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Demo</url> | ||
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Demo/issues</url> | ||
<buildtool_depend>catkin</buildtool_depend> | ||
<exec_depend>op3_manager</exec_depend> | ||
<exec_depend>usb_cam</exec_depend> | ||
<exec_depend>joint_state_publisher</exec_depend> | ||
<exec_depend>robot_state_publisher</exec_depend> | ||
<exec_depend>rviz</exec_depend> | ||
</package> |
Oops, something went wrong.