joint_state_publisher window is not shown
Hi there,
this is my launch file
<?xml version="1.0"?>
<launch>
<!-- upload urdf -->
<param name="robot_description" textfile="$(find robot_arm_pkg)/urdf/arduino_robot_arm.urdf" />
<!-- Combine joint values -->
<node name="robot_state_publisher" pkg="robot_state_publisher" type="state_publisher"/>
<!-- Show in Rviz -->
<node name="rviz" pkg="rviz" type="rviz" args="-d $(find robot_arm_pkg)/launch/config.rviz" />
<!-- send joint values -->
<node name="joint_state_publisher" pkg="joint_state_publisher" type="joint_state_publisher">
<param name="use_gui" value="True"/>
</node>
</launch>
I'm using the joint_state_publisher GUI to control a robot in Rviz, the problem is the joint_state_publisher window is not appear. I already installed the joint_state_publisher and joint_state_publisher_gui by using:
sudo apt-get install ros-kinetic-joint-state-publisher
sudo apt-get install ros-kinetic-joint-state-publisher-gui
there are no errors are shown when I launch the file
By the way, I tested the same package and launch file in another system and it works fine