-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add lidarbot_gz package to use Gazebo Fortress
- Loading branch information
1 parent
b5f91cd
commit 0178bc8
Showing
26 changed files
with
2,344 additions
and
38 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
cmake_minimum_required(VERSION 3.8) | ||
project(lidarbot_gz) | ||
|
||
find_package(ament_cmake REQUIRED) | ||
find_package(urdf REQUIRED) | ||
|
||
install( | ||
DIRECTORY config launch models urdf worlds | ||
DESTINATION share/${PROJECT_NAME} | ||
) | ||
|
||
ament_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# gz topic published by the simulator core | ||
- ros_topic_name: "clock" | ||
gz_topic_name: "clock" | ||
ros_type_name: "rosgraph_msgs/msg/Clock" | ||
gz_type_name: "gz.msgs.Clock" | ||
direction: GZ_TO_ROS | ||
|
||
# gz topic published by JointState plugin | ||
# - ros_topic_name: "joint_states" | ||
# gz_topic_name: "joint_states" | ||
# ros_type_name: "sensor_msgs/msg/JointState" | ||
# gz_type_name: "gz.msgs.Model" | ||
# direction: GZ_TO_ROS | ||
|
||
# gz topic published by DiffDrive plugin | ||
# - ros_topic_name: "odom" | ||
# gz_topic_name: "odom" | ||
# ros_type_name: "nav_msgs/msg/Odometry" | ||
# gz_type_name: "gz.msgs.Odometry" | ||
# direction: GZ_TO_ROS | ||
|
||
# gz topic published by DiffDrive plugin | ||
# - ros_topic_name: "tf" | ||
# gz_topic_name: "tf" | ||
# ros_type_name: "tf2_msgs/msg/TFMessage" | ||
# gz_type_name: "gz.msgs.Pose_V" | ||
# direction: GZ_TO_ROS | ||
|
||
# gz topic subscribed to by DiffDrive plugin | ||
# - ros_topic_name: "cmd_vel" | ||
# gz_topic_name: "cmd_vel" | ||
# ros_type_name: "geometry_msgs/msg/Twist" | ||
# gz_type_name: "gz.msgs.Twist" | ||
# direction: ROS_TO_GZ | ||
|
||
# gz topic published by IMU plugin | ||
# - ros_topic_name: "imu" | ||
# gz_topic_name: "imu" | ||
- ros_topic_name: "imu_broadcaster/imu" | ||
gz_topic_name: "imu_broadcaster/imu" | ||
ros_type_name: "sensor_msgs/msg/Imu" | ||
gz_type_name: "gz.msgs.IMU" | ||
direction: GZ_TO_ROS | ||
|
||
# gz topic published by Sensors plugin | ||
- ros_topic_name: "scan" | ||
gz_topic_name: "scan" | ||
ros_type_name: "sensor_msgs/msg/LaserScan" | ||
gz_type_name: "gz.msgs.LaserScan" | ||
direction: GZ_TO_ROS | ||
|
||
# gz topic published by Sensors plugin (Camera) | ||
- ros_topic_name: "camera/camera_info" | ||
gz_topic_name: "camera/camera_info" | ||
ros_type_name: "sensor_msgs/msg/CameraInfo" | ||
gz_type_name: "gz.msgs.CameraInfo" | ||
direction: GZ_TO_ROS |
Oops, something went wrong.