diff --git a/ros_ign_gazebo_demos/CMakeLists.txt b/ros_ign_gazebo_demos/CMakeLists.txt
index aa395e18..c4265636 100644
--- a/ros_ign_gazebo_demos/CMakeLists.txt
+++ b/ros_ign_gazebo_demos/CMakeLists.txt
@@ -16,4 +16,10 @@ install(
DESTINATION share/${PROJECT_NAME}/rviz
)
+install(
+ DIRECTORY
+ models/
+ DESTINATION share/${PROJECT_NAME}/models
+)
+
ament_package()
diff --git a/ros_ign_gazebo_demos/README.md b/ros_ign_gazebo_demos/README.md
index 64cc786c..adbd618d 100644
--- a/ros_ign_gazebo_demos/README.md
+++ b/ros_ign_gazebo_demos/README.md
@@ -148,4 +148,14 @@ To try the demo launch:
ros2 launch ros_ign_gazebo_demos robot_description_publisher.launch.py
-![](images/robot_state_publisher_demo.png)
\ No newline at end of file
+![](images/robot_state_publisher_demo.png)
+
+## Joint States Publisher
+
+Publishes joint states of the robot.
+
+To try the demo launch:
+
+ ros2 launch ros_ign_gazebo_demos joint_states.launch.py
+
+![](images/joint_states.png)
diff --git a/ros_ign_gazebo_demos/images/joint_states.png b/ros_ign_gazebo_demos/images/joint_states.png
new file mode 100644
index 00000000..943eaf66
Binary files /dev/null and b/ros_ign_gazebo_demos/images/joint_states.png differ
diff --git a/ros_ign_gazebo_demos/launch/joint_states.launch.py b/ros_ign_gazebo_demos/launch/joint_states.launch.py
new file mode 100644
index 00000000..c6296bd7
--- /dev/null
+++ b/ros_ign_gazebo_demos/launch/joint_states.launch.py
@@ -0,0 +1,79 @@
+import os
+import xacro
+from ament_index_python.packages import get_package_share_directory
+from launch import LaunchDescription
+from launch.actions import IncludeLaunchDescription
+from launch.launch_description_sources import PythonLaunchDescriptionSource
+from launch_ros.actions import Node
+
+def generate_launch_description():
+
+ # Package Directories
+ pkg_ros_ign_gazebo = get_package_share_directory('ros_ign_gazebo')
+ pkg_ros_ign_gazebo_demos = get_package_share_directory('ros_ign_gazebo_demos')
+
+ # Parse robot description from xacro
+ robot_description_file = os.path.join(pkg_ros_ign_gazebo_demos, 'models', 'rrbot.xacro')
+ robot_description_config = xacro.process_file(
+ robot_description_file
+ )
+ robot_description = {"robot_description": robot_description_config.toxml()}
+
+ # Robot state publisher
+ robot_state_publisher = Node(
+ package='robot_state_publisher',
+ executable='robot_state_publisher',
+ name='robot_state_publisher',
+ output='both',
+ parameters=[robot_description],
+ )
+
+ # Ignition gazebo
+ gazebo = IncludeLaunchDescription(
+ PythonLaunchDescriptionSource(
+ os.path.join(pkg_ros_ign_gazebo, 'launch', 'ign_gazebo.launch.py')),
+ launch_arguments={'ign_args': '-r empty.sdf'}.items(),
+ )
+
+ # RViz
+ rviz = Node(
+ package='rviz2',
+ executable='rviz2',
+ arguments=['-d', os.path.join(pkg_ros_ign_gazebo_demos, 'rviz', 'joint_states.rviz')],
+ )
+
+ # Spawn
+ spawn = Node(package='ros_ign_gazebo', executable='create',
+ arguments=[
+ '-name', 'rrbot',
+ '-topic', 'robot_description',
+ ],
+ output='screen',
+ )
+
+ # Ign - ROS Bridge
+ bridge = Node(
+ package='ros_ign_bridge',
+ executable='parameter_bridge',
+ arguments=[
+ # Clock (IGN -> ROS2)
+ '/clock@rosgraph_msgs/msg/Clock[ignition.msgs.Clock',
+ # Joint states (IGN -> ROS2)
+ '/world/empty/model/rrbot/joint_state@sensor_msgs/msg/JointState[ignition.msgs.Model',
+ ],
+ remappings=[
+ ('/world/empty/model/rrbot/joint_state', 'joint_states'),
+ ],
+ output='screen'
+ )
+
+ return LaunchDescription(
+ [
+ # Nodes and Launches
+ gazebo,
+ spawn,
+ bridge,
+ robot_state_publisher,
+ rviz,
+ ]
+ )
diff --git a/ros_ign_gazebo_demos/models/rrbot.xacro b/ros_ign_gazebo_demos/models/rrbot.xacro
new file mode 100644
index 00000000..782154e3
--- /dev/null
+++ b/ros_ign_gazebo_demos/models/rrbot.xacro
@@ -0,0 +1,165 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1 0.423529412 0.039215686 1
+ 1 0.423529412 0.039215686 1
+ 1 0.423529412 0.039215686 1
+
+
+
+
+
+ 0.2
+ 0.2
+
+ 0 0 0 1
+ 0 0 0 1
+ 0 0 0 1
+
+
+
+
+
+ 0.2
+ 0.2
+
+ 1 0.423529412 0.039215686 1
+ 1 0.423529412 0.039215686 1
+ 1 0.423529412 0.039215686 1
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ros_ign_gazebo_demos/rviz/joint_states.rviz b/ros_ign_gazebo_demos/rviz/joint_states.rviz
new file mode 100644
index 00000000..06920d70
--- /dev/null
+++ b/ros_ign_gazebo_demos/rviz/joint_states.rviz
@@ -0,0 +1,190 @@
+Panels:
+ - Class: rviz_common/Displays
+ Help Height: 78
+ Name: Displays
+ Property Tree Widget:
+ Expanded:
+ - /Global Options1
+ - /Status1
+ - /RobotModel1
+ - /TF1
+ Splitter Ratio: 0.5
+ Tree Height: 802
+ - Class: rviz_common/Selection
+ Name: Selection
+ - Class: rviz_common/Tool Properties
+ Expanded:
+ - /2D Goal Pose1
+ - /Publish Point1
+ Name: Tool Properties
+ Splitter Ratio: 0.5886790156364441
+ - Class: rviz_common/Views
+ Expanded:
+ - /Current View1
+ Name: Views
+ Splitter Ratio: 0.5
+Visualization Manager:
+ Class: ""
+ Displays:
+ - Alpha: 0.5
+ Cell Size: 1
+ Class: rviz_default_plugins/Grid
+ Color: 160; 160; 164
+ Enabled: true
+ Line Style:
+ Line Width: 0.029999999329447746
+ Value: Lines
+ Name: Grid
+ Normal Cell Count: 0
+ Offset:
+ X: 0
+ Y: 0
+ Z: 0
+ Plane: XY
+ Plane Cell Count: 10
+ Reference Frame:
+ Value: true
+ - Alpha: 0.800000011920929
+ Class: rviz_default_plugins/RobotModel
+ Collision Enabled: false
+ Description File: ""
+ Description Source: Topic
+ Description Topic:
+ Depth: 5
+ Durability Policy: Volatile
+ History Policy: Keep Last
+ Reliability Policy: Reliable
+ Value: /robot_description
+ Enabled: true
+ Links:
+ All Links Enabled: true
+ Expand Joint Details: false
+ Expand Link Details: false
+ Expand Tree: false
+ Link Tree Style: Links in Alphabetic Order
+ link1:
+ Alpha: 1
+ Show Axes: false
+ Show Trail: false
+ Value: true
+ link2:
+ Alpha: 1
+ Show Axes: false
+ Show Trail: false
+ Value: true
+ link3:
+ Alpha: 1
+ Show Axes: false
+ Show Trail: false
+ Value: true
+ Name: RobotModel
+ TF Prefix: ""
+ Update Interval: 0
+ Value: true
+ Visual Enabled: true
+ - Class: rviz_default_plugins/TF
+ Enabled: true
+ Frame Timeout: 15
+ Frames:
+ All Enabled: true
+ link1:
+ Value: true
+ link2:
+ Value: true
+ link3:
+ Value: true
+ world:
+ Value: true
+ Marker Scale: 1
+ Name: TF
+ Show Arrows: true
+ Show Axes: true
+ Show Names: true
+ Tree:
+ link1:
+ link2:
+ link3:
+ {}
+ world:
+ {}
+ Update Interval: 0
+ Value: true
+ Enabled: true
+ Global Options:
+ Background Color: 48; 48; 48
+ Fixed Frame: world
+ Frame Rate: 30
+ Name: root
+ Tools:
+ - Class: rviz_default_plugins/Interact
+ Hide Inactive Objects: true
+ - Class: rviz_default_plugins/MoveCamera
+ - Class: rviz_default_plugins/Select
+ - Class: rviz_default_plugins/FocusCamera
+ - Class: rviz_default_plugins/Measure
+ Line color: 128; 128; 0
+ - Class: rviz_default_plugins/SetInitialPose
+ Topic:
+ Depth: 5
+ Durability Policy: Volatile
+ History Policy: Keep Last
+ Reliability Policy: Reliable
+ Value: /initialpose
+ - Class: rviz_default_plugins/SetGoal
+ Topic:
+ Depth: 5
+ Durability Policy: Volatile
+ History Policy: Keep Last
+ Reliability Policy: Reliable
+ Value: /goal_pose
+ - Class: rviz_default_plugins/PublishPoint
+ Single click: true
+ Topic:
+ Depth: 5
+ Durability Policy: Volatile
+ History Policy: Keep Last
+ Reliability Policy: Reliable
+ Value: /clicked_point
+ Transformation:
+ Current:
+ Class: rviz_default_plugins/TF
+ Value: true
+ Views:
+ Current:
+ Class: rviz_default_plugins/Orbit
+ Distance: 6.524543762207031
+ Enable Stereo Rendering:
+ Stereo Eye Separation: 0.05999999865889549
+ Stereo Focal Distance: 1
+ Swap Stereo Eyes: false
+ Value: false
+ Focal Point:
+ X: -0.106326624751091
+ Y: 0.5023337006568909
+ Z: 1.1979976892471313
+ Focal Shape Fixed Size: true
+ Focal Shape Size: 0.05000000074505806
+ Invert Z Axis: false
+ Name: Current View
+ Near Clip Distance: 0.009999999776482582
+ Pitch: 0.7303980588912964
+ Target Frame:
+ Value: Orbit (rviz)
+ Yaw: 5.698581218719482
+ Saved: ~
+Window Geometry:
+ Displays:
+ collapsed: false
+ Height: 1025
+ Hide Left Dock: false
+ Hide Right Dock: false
+ QMainWindow State: 000000ff00000000fd000000040000000000000156000003abfc0200000008fb0000001200530065006c0065006300740069006f006e00000001e10000009b0000005c00fffffffb0000001e0054006f006f006c002000500072006f007000650072007400690065007302000001ed000001df00000185000000a3fb000000120056006900650077007300200054006f006f02000001df000002110000018500000122fb000000200054006f006f006c002000500072006f0070006500720074006900650073003203000002880000011d000002210000017afb000000100044006900730070006c006100790073010000003b000003ab000000c700fffffffb0000002000730065006c0065006300740069006f006e00200062007500660066006500720200000138000000aa0000023a00000294fb00000014005700690064006500530074006500720065006f02000000e6000000d2000003ee0000030bfb0000000c004b0069006e0065006300740200000186000001060000030c00000261000000010000010f000003abfc0200000003fb0000001e0054006f006f006c002000500072006f00700065007200740069006500730100000041000000780000000000000000fb0000000a00560069006500770073010000003b000003ab000000a000fffffffb0000001200530065006c0065006300740069006f006e010000025a000000b200000000000000000000000200000490000000a9fc0100000001fb0000000a00560069006500770073030000004e00000080000002e10000019700000003000004420000003efc0100000002fb0000000800540069006d00650100000000000004420000000000000000fb0000000800540069006d00650100000000000004500000000000000000000004cc000003ab00000004000000040000000800000008fc0000000100000002000000010000000a0054006f006f006c00730100000000ffffffff0000000000000000
+ Selection:
+ collapsed: false
+ Tool Properties:
+ collapsed: false
+ Views:
+ collapsed: false
+ Width: 1853
+ X: 67
+ Y: 27