Skip to content

Commit

Permalink
Merge pull request #74 from cyberbotics/develop
Browse files Browse the repository at this point in the history
Merge develop into master
  • Loading branch information
lukicdarkoo authored Jul 16, 2021
2 parents 4a52aa2 + ffbd305 commit ff66bd3
Show file tree
Hide file tree
Showing 44 changed files with 1,449 additions and 417 deletions.
35 changes: 20 additions & 15 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(webots_ros)
## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
## is used, also find other catkin packages
find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs sensor_msgs message_generation tf)
find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs sensor_msgs message_generation tf moveit_ros_planning_interface)

## System dependencies are found with CMake's conventions
# find_package(Boost REQUIRED COMPONENTS system)
Expand All @@ -28,7 +28,9 @@ find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs sensor_msgs messag
Int8Stamped.msg
RadarTarget.msg
RecognitionObject.msg
RecognitionObjects.msg
StringStamped.msg
ContactPoint.msg
)

## Generate services in the 'srv' folder
Expand All @@ -51,6 +53,8 @@ find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs sensor_msgs messag
display_image_paste.srv
display_image_save.srv
display_set_font.srv
field_disable_sf_tracking.srv
field_enable_sf_tracking.srv
field_get_bool.srv
field_get_color.srv
field_get_count.srv
Expand All @@ -60,7 +64,7 @@ find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs sensor_msgs messag
field_get_rotation.srv
field_get_string.srv
field_get_type.srv
field_get_type_name.srv
field_get_name.srv
field_get_vec2f.srv
field_get_vec3f.srv
field_import_node.srv
Expand Down Expand Up @@ -91,23 +95,34 @@ find_package(catkin REQUIRED COMPONENTS roscpp rospy std_msgs sensor_msgs messag
mouse_get_state.srv
node_add_force_or_torque.srv
node_add_force_with_offset.srv
node_disable_contact_points_tracking.srv
node_disable_pose_tracking.srv
node_enable_contact_points_tracking.srv
node_enable_pose_tracking.srv
node_get_center_of_mass.srv
node_get_contact_point.srv
node_get_contact_points.srv
node_get_contact_point_node.srv
node_get_field.srv
node_get_field_by_index.srv
node_get_id.srv
node_get_number_of_contact_points.srv
node_get_number_of_fields.srv
node_get_name.srv
node_get_orientation.srv
node_get_pose.srv
node_get_parent_node.srv
node_get_position.srv
node_get_static_balance.srv
node_get_status.srv
node_get_string.srv
node_set_string.srv
node_get_type.srv
node_get_velocity.srv
node_remove.srv
node_reset_functions.srv
node_move_viewpoint.srv
node_set_joint_position.srv
node_set_visibility.srv
node_set_velocity.srv
pen_set_ink_color.srv
Expand Down Expand Up @@ -232,16 +247,6 @@ target_link_libraries(panoramic_view_recorder
${catkin_LIBRARIES}
)

#instructions for pioneer3at node

add_executable(pioneer3at src/pioneer3at.cpp)

add_dependencies(pioneer3at webots_ros_generate_messages_cpp)

target_link_libraries(pioneer3at
${catkin_LIBRARIES}
)


#############
## Install ##
Expand All @@ -265,9 +270,6 @@ install(TARGETS catch_the_bird
install(TARGETS panoramic_view_recorder
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})

install(TARGETS pioneer3at
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})

catkin_install_python(PROGRAMS scripts/ros_controller.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION})

Expand All @@ -285,3 +287,6 @@ install(DIRECTORY plugins

install(DIRECTORY worlds
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})

install(DIRECTORY config
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION})
24 changes: 4 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,34 +12,18 @@ ROS tutorial for Webots:
- https://www.cyberbotics.com/doc/guide/using-ros


## Acknowledgements
## Acknowledgement

<a href="http://rosin-project.eu">
<img src="http://rosin-project.eu/wp-content/uploads/rosin_ack_logo_wide.png"
<img src="http://rosin-project.eu/wp-content/uploads/rosin_ack_logo_wide.png"
alt="rosin_logo" height="60" >
</a></br>

Supported by ROSIN - ROS-Industrial Quality-Assured Robot Software Components.
More information: <a href="http://rosin-project.eu">rosin-project.eu</a>

<img src="http://rosin-project.eu/wp-content/uploads/rosin_eu_flag.jpg"
<img src="http://rosin-project.eu/wp-content/uploads/rosin_eu_flag.jpg"
alt="eu_flag" height="45" align="left" >

This project has received funding from the European Union’s Horizon 2020
research and innovation programme under grant agreement no. 732287.

<br>

<a href="https://opendr.eu/">
<img src="https://opendr.eu/wp-content/uploads/2020/01/logo-300x125.png"
alt="opendr_logo" height="60" >
</a></br>

Supported by OpenDR - Open Deep Learning Toolkit for Robotics.
More information: <a href="https://opendr.eu/">opendr.eu</a>

<img src="https://opendr.csd.auth.gr/wp-content/uploads/2019/12/Flag_of_Europe-300x200.png"
alt="eu_flag" height="45" align="left" >

This project has received funding from the European Union’s Horizon 2020
research and innovation programme under grant agreement no. 871449.
research and innovation programme under grant agreement no. 732287.
Loading

0 comments on commit ff66bd3

Please sign in to comment.