-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ros2' into caguero/camera_demo_v2
- Loading branch information
Showing
12 changed files
with
148 additions
and
249 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# IMU configuration. | ||
- topic_name: "/imu" | ||
ros_type_name: "sensor_msgs/msg/Imu" | ||
gz_type_name: "gz.msgs.IMU" | ||
lazy: true | ||
direction: GZ_TO_ROS |
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,6 @@ | ||
# Magnetometer configuration. | ||
- topic_name: "/magnetometer" | ||
ros_type_name: "sensor_msgs/msg/MagneticField" | ||
gz_type_name: "gz.msgs.Magnetometer" | ||
lazy: true | ||
direction: GZ_TO_ROS |
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,14 @@ | ||
# tf_bridge configuration. | ||
- ros_topic_name: "/joint_states" | ||
gz_topic_name: "/world/default/model/double_pendulum_with_base0/joint_state" | ||
ros_type_name: "sensor_msgs/msg/JointState" | ||
gz_type_name: "gz.msgs.Model" | ||
lazy: true | ||
direction: GZ_TO_ROS | ||
|
||
- ros_topic_name: "/tf" | ||
gz_topic_name: "/model/double_pendulum_with_base0/pose" | ||
ros_type_name: "tf2_msgs/msg/TFMessage" | ||
gz_type_name: "gz.msgs.Pose_V" | ||
lazy: true | ||
direction: GZ_TO_ROS |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<launch> | ||
<gz_server | ||
world_sdf_file="sensors.sdf" | ||
use_composition="True" | ||
create_own_container="True" /> | ||
<ros_gz_bridge | ||
bridge_name="ros_gz_bridge" | ||
config_file="$(find-pkg-share ros_gz_sim_demos)/config/imu.yaml" | ||
use_composition="True" /> | ||
<node pkg="rqt_topic" exec="rqt_topic" args="-t" /> | ||
<node pkg="rviz2" exec="rviz2" args="-d $(find-pkg-share ros_gz_sim_demos)/rviz/imu.rviz" /> | ||
<executable cmd="gz sim -g" /> | ||
</launch> |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<launch> | ||
<gz_server | ||
world_sdf_file="sensors.sdf" | ||
use_composition="True" | ||
create_own_container="True" /> | ||
<ros_gz_bridge | ||
bridge_name="ros_gz_bridge" | ||
config_file="$(find-pkg-share ros_gz_sim_demos)/config/magnetometer.yaml" | ||
use_composition="True" /> | ||
<node pkg="rqt_topic" exec="rqt_topic" args="-t" /> | ||
<executable cmd="gz sim -g" /> | ||
</launch> |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<launch> | ||
<gz_server | ||
world_sdf_file="$(find-pkg-share ros_gz_sim_demos)/models/double_pendulum_model.sdf" | ||
use_composition="True" | ||
create_own_container="True" /> | ||
<ros_gz_bridge | ||
bridge_name="ros_gz_bridge" | ||
config_file="$(find-pkg-share ros_gz_sim_demos)/config/tf_bridge.yaml" | ||
use_composition="True" /> | ||
<node pkg="rviz2" exec="rviz2" args="-d $(find-pkg-share ros_gz_sim_demos)/rviz/tf_bridge.rviz" /> | ||
<executable cmd="gz sim -g" /> | ||
</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
Oops, something went wrong.