-
Notifications
You must be signed in to change notification settings - Fork 227
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial port to ROS 2 #41
Open
ahcorde
wants to merge
11
commits into
foxy
Choose a base branch
from
ahcorde/port/ros2
base: foxy
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
cc8340b
Initial port to ROS 2
ahcorde 1223411
Update config files with recent changes in gazebo_ros2_control
ahcorde 826a6f2
Ported rrbot_gazebo package
ahcorde b325632
Added feedback
ahcorde fa5c6b2
Added license to rrbot_moveit_demo_nodes
ahcorde 48695f9
Restored author on moveit example
ahcorde 65fc070
Improved description
ahcorde 105333d
load and launch the controllers
ahcorde a5b8877
Added note to notice that we should port to ROS 2 other packages
ahcorde 927f581
beautify xacro
ahcorde 79083ca
update version in package.xml
ahcorde File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,15 @@ | ||
# Gazebo ROS Demos | ||
|
||
* Author: Dave Coleman <[email protected]> | ||
* Author: Alejandro Hernández | ||
* License: GNU General Public License, version 3 (GPL-3.0) | ||
|
||
Example robots and code for interfacing Gazebo with ROS | ||
|
||
## Tutorials | ||
|
||
[ROS URDF](http://gazebosim.org/tutorials/?tut=ros_urdf) | ||
Example robots and code for interfacing Gazebo, ROS2 and Moveit2 | ||
|
||
## Quick Start | ||
|
||
Rviz: | ||
|
||
roslaunch rrbot_description rrbot_rviz.launch | ||
|
||
Gazebo: | ||
|
||
roslaunch rrbot_gazebo rrbot_world.launch | ||
|
||
ROS Control: | ||
|
||
roslaunch rrbot_control rrbot_control.launch | ||
|
||
Example of Moving Joints: | ||
|
||
rostopic pub /rrbot/joint2_position_controller/command std_msgs/Float64 "data: -0.9" | ||
davetcoleman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
ros2 launch rrbot_moveit_demo_nodes rrbot_demo.launch.py | ||
|
||
## Develop and Contribute | ||
|
||
|
Empty file.
Empty file.
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 |
---|---|---|
@@ -1,15 +1,7 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
cmake_minimum_required(VERSION 3.10.2) | ||
project(rrbot_description) | ||
find_package(ament_cmake REQUIRED) | ||
|
||
find_package(catkin REQUIRED) | ||
ament_package() | ||
|
||
catkin_package() | ||
|
||
install(DIRECTORY launch | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) | ||
|
||
install(DIRECTORY meshes | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) | ||
|
||
install(DIRECTORY urdf | ||
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) | ||
install(DIRECTORY urdf meshes DESTINATION share/${PROJECT_NAME}) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -14,12 +14,12 @@ | |
|
||
<author email="[email protected]">Dave Coleman</author> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<run_depend>joint_state_publisher</run_depend> | ||
<run_depend>robot_state_publisher</run_depend> | ||
<run_depend>rviz</run_depend> | ||
<run_depend>rviz2</run_depend> | ||
ahcorde marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
|
||
</package> |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd be in favor of simply removing this line... we're both authors, but so are many others who have contributed to this repo.