File tree 16 files changed +47
-14
lines changed
open_manipulator_control_gui
open_manipulator_controller
open_manipulator_description
16 files changed +47
-14
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,9 @@ notifications:
18
18
- pyo@robotis.com
19
19
env :
20
20
matrix :
21
- - ROS_DISTRO=kinetic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=file $ROSINSTALL_FILENAME=".open_manipulator.rosinstall"
22
- - ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=file $ROSINSTALL_FILENAME=".open_manipulator.rosinstall"
23
- - ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=debian OS_CODE_NAME=stretch
24
- # - ROS_DISTRO=kinetic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=ubuntu OS_CODE_NAME=xenial
25
- # - ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=ubuntu OS_CODE_NAME=bionic
26
- # - ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=debian OS_CODE_NAME=stretch
21
+ - ROS_DISTRO=kinetic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=ubuntu OS_CODE_NAME=xenial
22
+ - ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=ubuntu OS_CODE_NAME=bionic
23
+ - ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=debian OS_CODE_NAME=stretch
27
24
matrix :
28
25
allow_failures :
29
26
- env : ROS_DISTRO=melodic ROS_REPO=ros-shadow-fixed UPSTREAM_WORKSPACE=debian OS_NAME=debian OS_CODE_NAME=stretch
Original file line number Diff line number Diff line change 2
2
Changelog for package open_manipulator
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.0.1 (2019-02-18)
6
+ ------------------
7
+ * added dependency option for open_manipulator_control_gui package
8
+ * Contributors: Pyo
9
+
5
10
2.0.0 (2019-02-08)
6
11
------------------
7
12
* updated the CHANGELOG and version to release binary packages
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package format =" 2" >
3
3
<name >open_manipulator</name >
4
- <version >2.0.0 </version >
4
+ <version >2.0.1 </version >
5
5
<description >
6
6
ROS-enabled OpenManipulator is a full open robot platform consisting of OpenSoftware, OpenHardware and OpenCR(Embedded board).
7
7
The OpenManipulator is allowed users to control it more easily by linking with the MoveIt! package. Moreover it has full hardware compatibility with TurtleBot3.
Original file line number Diff line number Diff line change 2
2
Changelog for package open_manipulator_control_gui
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.0.1 (2019-02-18)
6
+ ------------------
7
+ * added dependency option for open_manipulator_control_gui package
8
+ * Contributors: Pyo
9
+
5
10
2.0.0 (2019-02-08)
6
11
------------------
7
12
* updated the CHANGELOG and version to release binary packages (first relese)
Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ find_package(catkin REQUIRED COMPONENTS
15
15
std_msgs
16
16
sensor_msgs
17
17
open_manipulator_msgs
18
+ cmake_modules
18
19
)
20
+ find_package (Eigen3 REQUIRED)
19
21
find_package (Qt5Widgets REQUIRED)
20
22
21
23
set (${PROJECT_NAME} _SRCS
@@ -65,6 +67,7 @@ endif()
65
67
catkin_package(
66
68
INCLUDE_DIRS include
67
69
CATKIN_DEPENDS roscpp std_msgs sensor_msgs open_manipulator_msgs
70
+ DEPENDS EIGEN3
68
71
)
69
72
70
73
qt5_wrap_cpp(${PROJECT_NAME} _MOCS ${${PROJECT_NAME} _HDRS})
@@ -86,11 +89,12 @@ include_directories(
86
89
include
87
90
${open_manipulator_control_gui_INCLUDE_DIRECTORIES}
88
91
${catkin_INCLUDE_DIRS}
92
+ ${EIGEN3_INCLUDE_DIRS}
89
93
)
90
94
91
95
add_executable (open_manipulator_control_gui ${open_manipulator_control_gui_SRCS} ${open_manipulator_control_gui_MOCS} ${open_manipulator_control_gui_UIS_H} ${open_manipulator_control_gui_RCC} )
92
96
add_dependencies (open_manipulator_control_gui ${${PROJECT_NAME} _EXPORTED_TARGETS} ${catkin_EXPORTED_TARGETS} )
93
- target_link_libraries (open_manipulator_control_gui Qt5::Widgets ${catkin_LIBRARIES} )
97
+ target_link_libraries (open_manipulator_control_gui Qt5::Widgets ${catkin_LIBRARIES} ${Eigen3_LIBRARIES} )
94
98
95
99
#################################################################################
96
100
## Install
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package format =" 2" >
3
3
<name >open_manipulator_control_gui</name >
4
- <version >2.0.0 </version >
4
+ <version >2.0.1 </version >
5
5
<description >
6
6
OpenManipulator GUI control package based on QT
7
7
</description >
25
25
<depend >qt5-qmake</depend >
26
26
<depend >libqt5-core</depend >
27
27
<depend >libqt5-gui</depend >
28
+ <depend >cmake_modules</depend >
29
+ <depend >eigen</depend >
28
30
</package >
Original file line number Diff line number Diff line change 2
2
Changelog for package open_manipulator_controller
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.0.1 (2019-02-18)
6
+ ------------------
7
+ * none
8
+
5
9
2.0.0 (2019-02-08)
6
10
------------------
7
11
* added jointspace path serv, moveit params
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package format =" 2" >
3
3
<name >open_manipulator_controller</name >
4
- <version >2.0.0 </version >
4
+ <version >2.0.1 </version >
5
5
<description >
6
6
OpenManipulator controller package
7
7
</description >
Original file line number Diff line number Diff line change 2
2
Changelog for package open_manipulator_description
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.0.1 (2019-02-18)
6
+ ------------------
7
+ * none
8
+
5
9
2.0.0 (2019-02-08)
6
10
------------------
7
11
* deleted model.launch
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package format =" 2" >
3
3
<name >open_manipulator_description</name >
4
- <version >2.0.0 </version >
4
+ <version >2.0.1 </version >
5
5
<description >
6
6
OpenManipulator 3D model description for visualization and simulation
7
7
</description >
Original file line number Diff line number Diff line change 2
2
Changelog for package open_manipulator_libs
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.0.1 (2019-02-18)
6
+ ------------------
7
+ * none
8
+
5
9
2.0.0 (2019-02-08)
6
10
------------------
7
11
* changed open_manipulator_dynamixel_ctrl to open_manipulator_libs
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package format =" 2" >
3
3
<name >open_manipulator_libs</name >
4
- <version >2.0.0 </version >
4
+ <version >2.0.1 </version >
5
5
<description >
6
6
OpenManipulator library (Kinematics lib., Dynamixel lib., Drawing path lib.)
7
7
</description >
Original file line number Diff line number Diff line change 2
2
Changelog for package open_manipulator_moveit
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.0.1 (2019-02-18)
6
+ ------------------
7
+ * none
8
+
5
9
2.0.0 (2019-02-08)
6
10
------------------
7
11
* added moveit config and controller
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package format =" 2" >
3
3
<name >open_manipulator_moveit</name >
4
- <version >2.0.0 </version >
4
+ <version >2.0.1 </version >
5
5
<description >
6
6
An automatically generated package with all the configuration and launch files for using the open_manipulator with the MoveIt! Motion Planning Framework
7
7
</description >
Original file line number Diff line number Diff line change 2
2
Changelog for package open_manipulator_teleop
3
3
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4
4
5
+ 2.0.1 (2019-02-18)
6
+ ------------------
7
+ * none
8
+
5
9
2.0.0 (2019-02-08)
6
10
------------------
7
11
* added new package for teleoperation
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" ?>
2
2
<package format =" 2" >
3
3
<name >open_manipulator_teleop</name >
4
- <version >2.0.0 </version >
4
+ <version >2.0.1 </version >
5
5
<description >
6
6
Provides teleoperation using keyboard for OpenManipulator.
7
7
</description >
You can’t perform that action at this time.
0 commit comments