reference

  1. link

1.

home directory

git clone https://github.com/isaac-sim/IsaacSim-ros_workspaces.git
cd ~/IsaacSim-ros_workspaces/humble_ws/src
git clone -b humble-devel https://github.com/ROBOTIS-GIT/turtlebot3.git turtlebot3
image 9

create->environment->simple room

image 10
image 11

double clicks

image 13

image 12
image 16
image 17
image 18
image 19

differential_action graph -> r click -> open graph

we can contorl turtlebot3 by keyboard input such as wasd

3.

delete previous action graph and make new action graph

image 20

articulation controller note -> targetPrim -> turtlebot3_burger

image 21
image 22
image 23
image 24
image 25

image 26

4. ros2

image 27

move forward

ros2 topic pub /cmd_vel geometry_msgs/Twist "{'linear': {'x': 0.2, 'y': 0.0, 'z': 0.0}, 'angular': {'x': 0.0, 'y': 0.0, 'z': 0.0}}"

stop

ros2 topic pub /cmd_vel geometry_msgs/Twist "{'linear': {'x': 0.0, 'y': 0.0, 'z': 0.0}, 'angular': {'x': 0.0, 'y': 0.0, 'z': 0.0}}"

5. 3 link manipulator

image 28
image 29
image 30
image 31
image 32

rqt

ros2 topic pub /joint_command sensor_msgs/msg/JointState "{
  header: {
    stamp: {sec: 0, nanosec: 0},
    frame_id: ''
  },
  name: ['joint0', 'joint1', 'joint2'],
  position: [1.0, 0.5, 0.0],
  velocity: [],
  effort: []
}"
image 33
image 34

Categories: IsaacSim

0 Comments

Leave a Reply