Package Summary

Tags No category tags.
Version 2.4.0
License BSD
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version ros2
Last Updated 2023-08-21
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/msg/JointState messages for a robot described with URDF. Given a URDF (either passed on the command-line or via the /robot_description topic), this node will continually publish values for all of the movable joints in the URDF to the /joint_states topic. In combination with robot_state_publisher, this ensures that there is a valid transform for all joints even when the joint doesn’t have encoder data.

Published Topics

  • /joint_states (sensor_msgs/msg/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /robot_description (std_msgs/msg/String) - If no URDF is given on the command-line, then this node will listen on the /robot_description topic for the URDF to be published. Once it has been received at least once, this node will start to publish joint values to /joint_states.
  • (optional) /any_topic (sensor_msgs/msg/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/msg/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • delta (double) - How much to automatically move joints during each iteration. Defaults to 0.0.

Mapped Parameters

These parameters map from joint_names to values. The format to use these parameters is <parameter>.<key>:=<value>, where a new parameter is defined for each key. See below for examples.

  • zeros (map from string -> float) - A map of joint_names to initial starting values for the joint. For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param zeros.joint_name1:=value1 --param zeros.joint_name2:=value2. This parameter is not set by default, so all joints start at zero. For joints where zero isn’t within the joint range, it uses the range’s (max + min) / 2.
  • dependent_joints (map from string -> map from ‘parent’, ‘factor’, ‘offset’ -> float) - A map of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param dependent_joints.left_leg.parent:=right_leg --param dependent_joints.left_leg.offset:=0.0 --param dependent_joints.left_leg.factor:=2.0. This parameter is not set by default, in which case only joints that are marked as <mimic> in the URDF are mimiced.
CHANGELOG

Changelog for package joint_state_publisher

2.4.0 (2023-08-04)

  • Support for sdformat robot descriptions (#55)
  • Refactor urdf parser function (#94)
  • Gracefully handle SIGINT (#86)
  • Contributors: Dharini Dutia, Shane Loretz, Will

2.3.0 (2022-04-21)

  • Use underscores in setup.cfg. (#76)
  • Fix the mimic_cycle test to always succeed. (#74)
  • Remove deprecated policy warning (#67)
  • Clarify docs on 'mapped parameters' in README (#66) (#71) * Clarify docs on 'mapped parameters' in README Co-authored-by: Binit Shah <<bshah@hello-robot.com>>

  • Contributors: Binit Shah, Chris Lalancette

2.2.0 (2020-06-04)

  • Minor fixes from review.
  • Add in pytest.ini files for jsp and jsp_gui.
  • Stop using deprecated launch parameters in Foxy.
  • Contributors: Chris Lalancette

2.1.0 (2020-05-19)

2.0.0 (2020-03-10)

  • Port to ROS 2 (#30)
  • Remove the deprecated fallback option of use_gui (#34)
  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.4.0
License BSD
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version ros2
Last Updated 2023-08-21
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/msg/JointState messages for a robot described with URDF. Given a URDF (either passed on the command-line or via the /robot_description topic), this node will continually publish values for all of the movable joints in the URDF to the /joint_states topic. In combination with robot_state_publisher, this ensures that there is a valid transform for all joints even when the joint doesn’t have encoder data.

Published Topics

  • /joint_states (sensor_msgs/msg/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /robot_description (std_msgs/msg/String) - If no URDF is given on the command-line, then this node will listen on the /robot_description topic for the URDF to be published. Once it has been received at least once, this node will start to publish joint values to /joint_states.
  • (optional) /any_topic (sensor_msgs/msg/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/msg/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • delta (double) - How much to automatically move joints during each iteration. Defaults to 0.0.

Mapped Parameters

These parameters map from joint_names to values. The format to use these parameters is <parameter>.<key>:=<value>, where a new parameter is defined for each key. See below for examples.

  • zeros (map from string -> float) - A map of joint_names to initial starting values for the joint. For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param zeros.joint_name1:=value1 --param zeros.joint_name2:=value2. This parameter is not set by default, so all joints start at zero. For joints where zero isn’t within the joint range, it uses the range’s (max + min) / 2.
  • dependent_joints (map from string -> map from ‘parent’, ‘factor’, ‘offset’ -> float) - A map of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param dependent_joints.left_leg.parent:=right_leg --param dependent_joints.left_leg.offset:=0.0 --param dependent_joints.left_leg.factor:=2.0. This parameter is not set by default, in which case only joints that are marked as <mimic> in the URDF are mimiced.
CHANGELOG

Changelog for package joint_state_publisher

2.4.0 (2023-08-04)

  • Support for sdformat robot descriptions (#55)
  • Refactor urdf parser function (#94)
  • Gracefully handle SIGINT (#86)
  • Contributors: Dharini Dutia, Shane Loretz, Will

2.3.0 (2022-04-21)

  • Use underscores in setup.cfg. (#76)
  • Fix the mimic_cycle test to always succeed. (#74)
  • Remove deprecated policy warning (#67)
  • Clarify docs on 'mapped parameters' in README (#66) (#71) * Clarify docs on 'mapped parameters' in README Co-authored-by: Binit Shah <<bshah@hello-robot.com>>

  • Contributors: Binit Shah, Chris Lalancette

2.2.0 (2020-06-04)

  • Minor fixes from review.
  • Add in pytest.ini files for jsp and jsp_gui.
  • Stop using deprecated launch parameters in Foxy.
  • Contributors: Chris Lalancette

2.1.0 (2020-05-19)

2.0.0 (2020-03-10)

  • Port to ROS 2 (#30)
  • Remove the deprecated fallback option of use_gui (#34)
  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.4.0
License BSD
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version ros2
Last Updated 2023-08-21
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/msg/JointState messages for a robot described with URDF. Given a URDF (either passed on the command-line or via the /robot_description topic), this node will continually publish values for all of the movable joints in the URDF to the /joint_states topic. In combination with robot_state_publisher, this ensures that there is a valid transform for all joints even when the joint doesn’t have encoder data.

Published Topics

  • /joint_states (sensor_msgs/msg/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /robot_description (std_msgs/msg/String) - If no URDF is given on the command-line, then this node will listen on the /robot_description topic for the URDF to be published. Once it has been received at least once, this node will start to publish joint values to /joint_states.
  • (optional) /any_topic (sensor_msgs/msg/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/msg/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • delta (double) - How much to automatically move joints during each iteration. Defaults to 0.0.

Mapped Parameters

These parameters map from joint_names to values. The format to use these parameters is <parameter>.<key>:=<value>, where a new parameter is defined for each key. See below for examples.

  • zeros (map from string -> float) - A map of joint_names to initial starting values for the joint. For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param zeros.joint_name1:=value1 --param zeros.joint_name2:=value2. This parameter is not set by default, so all joints start at zero. For joints where zero isn’t within the joint range, it uses the range’s (max + min) / 2.
  • dependent_joints (map from string -> map from ‘parent’, ‘factor’, ‘offset’ -> float) - A map of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param dependent_joints.left_leg.parent:=right_leg --param dependent_joints.left_leg.offset:=0.0 --param dependent_joints.left_leg.factor:=2.0. This parameter is not set by default, in which case only joints that are marked as <mimic> in the URDF are mimiced.
CHANGELOG

Changelog for package joint_state_publisher

2.4.0 (2023-08-04)

  • Support for sdformat robot descriptions (#55)
  • Refactor urdf parser function (#94)
  • Gracefully handle SIGINT (#86)
  • Contributors: Dharini Dutia, Shane Loretz, Will

2.3.0 (2022-04-21)

  • Use underscores in setup.cfg. (#76)
  • Fix the mimic_cycle test to always succeed. (#74)
  • Remove deprecated policy warning (#67)
  • Clarify docs on 'mapped parameters' in README (#66) (#71) * Clarify docs on 'mapped parameters' in README Co-authored-by: Binit Shah <<bshah@hello-robot.com>>

  • Contributors: Binit Shah, Chris Lalancette

2.2.0 (2020-06-04)

  • Minor fixes from review.
  • Add in pytest.ini files for jsp and jsp_gui.
  • Stop using deprecated launch parameters in Foxy.
  • Contributors: Chris Lalancette

2.1.0 (2020-05-19)

2.0.0 (2020-03-10)

  • Port to ROS 2 (#30)
  • Remove the deprecated fallback option of use_gui (#34)
  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.4.0
License BSD
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version ros2
Last Updated 2023-08-21
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/msg/JointState messages for a robot described with URDF. Given a URDF (either passed on the command-line or via the /robot_description topic), this node will continually publish values for all of the movable joints in the URDF to the /joint_states topic. In combination with robot_state_publisher, this ensures that there is a valid transform for all joints even when the joint doesn’t have encoder data.

Published Topics

  • /joint_states (sensor_msgs/msg/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /robot_description (std_msgs/msg/String) - If no URDF is given on the command-line, then this node will listen on the /robot_description topic for the URDF to be published. Once it has been received at least once, this node will start to publish joint values to /joint_states.
  • (optional) /any_topic (sensor_msgs/msg/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/msg/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • delta (double) - How much to automatically move joints during each iteration. Defaults to 0.0.

Mapped Parameters

These parameters map from joint_names to values. The format to use these parameters is <parameter>.<key>:=<value>, where a new parameter is defined for each key. See below for examples.

  • zeros (map from string -> float) - A map of joint_names to initial starting values for the joint. For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param zeros.joint_name1:=value1 --param zeros.joint_name2:=value2. This parameter is not set by default, so all joints start at zero. For joints where zero isn’t within the joint range, it uses the range’s (max + min) / 2.
  • dependent_joints (map from string -> map from ‘parent’, ‘factor’, ‘offset’ -> float) - A map of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param dependent_joints.left_leg.parent:=right_leg --param dependent_joints.left_leg.offset:=0.0 --param dependent_joints.left_leg.factor:=2.0. This parameter is not set by default, in which case only joints that are marked as <mimic> in the URDF are mimiced.
CHANGELOG

Changelog for package joint_state_publisher

2.4.0 (2023-08-04)

  • Support for sdformat robot descriptions (#55)
  • Refactor urdf parser function (#94)
  • Gracefully handle SIGINT (#86)
  • Contributors: Dharini Dutia, Shane Loretz, Will

2.3.0 (2022-04-21)

  • Use underscores in setup.cfg. (#76)
  • Fix the mimic_cycle test to always succeed. (#74)
  • Remove deprecated policy warning (#67)
  • Clarify docs on 'mapped parameters' in README (#66) (#71) * Clarify docs on 'mapped parameters' in README Co-authored-by: Binit Shah <<bshah@hello-robot.com>>

  • Contributors: Binit Shah, Chris Lalancette

2.2.0 (2020-06-04)

  • Minor fixes from review.
  • Add in pytest.ini files for jsp and jsp_gui.
  • Stop using deprecated launch parameters in Foxy.
  • Contributors: Chris Lalancette

2.1.0 (2020-05-19)

2.0.0 (2020-03-10)

  • Port to ROS 2 (#30)
  • Remove the deprecated fallback option of use_gui (#34)
  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 1.15.1
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version noetic-devel
Last Updated 2023-05-04
Dev Status MAINTAINED
CI status
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/JointState messages for a robot described with URDF. Given a URDF in the robot_description parameter on the parameter server, this node will continually publish default values for all of the movable joints in the URDF to the /joint_states topic.

See the ROS wiki for additional API documentation and tutorials.

This was originally part of the ros/robot_model repository. It has been moved to this repo as described by ros/robot_model#195

Published Topics

  • /joint_states (sensor_msgs/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /any_topic (sensor_msgs/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • robot_description (string, required) - A URDF or DAE file describing the robot.
  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • zeros (dictionary of string -> float) - A dictionary of joint_names to initial starting values for the joint. Defaults to an empty dictionary, in which case 0.0 is assumed as the zero for all joints.
  • dependent_joints (dictionary of string -> dictionary of ‘parent’, ‘factor’, ‘offset’) - A dictionary of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). Defaults to the empty dictionary, in which case only joints that are marked as <mimic> in the URDF are mimiced.
CHANGELOG

Changelog for package joint_state_publisher

1.15.1 (2022-02-17)

  • The jsp can now use the zeros parameter when joint names have slashes. (#60)
  • Removed reference to removed use_gui parameter (#69)
  • Use setuptools instead of distutils (#45)
  • Contributors: Lucas Walter, Matthew Elwin, Shane Loretz

1.15.0 (2020-03-12)

  • Bump CMake version to avoid CMP0048 (#44)
  • Set source_update_cb attr before creating subscribers (#43)
  • Make it clear robot_description is required. (#39)
  • Remove the deprecated fallback option of use_gui (#34)
  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner, Shane Loretz

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.4.0
License BSD
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version ros2
Last Updated 2023-08-21
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/msg/JointState messages for a robot described with URDF. Given a URDF (either passed on the command-line or via the /robot_description topic), this node will continually publish values for all of the movable joints in the URDF to the /joint_states topic. In combination with robot_state_publisher, this ensures that there is a valid transform for all joints even when the joint doesn’t have encoder data.

Published Topics

  • /joint_states (sensor_msgs/msg/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /robot_description (std_msgs/msg/String) - If no URDF is given on the command-line, then this node will listen on the /robot_description topic for the URDF to be published. Once it has been received at least once, this node will start to publish joint values to /joint_states.
  • (optional) /any_topic (sensor_msgs/msg/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/msg/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • delta (double) - How much to automatically move joints during each iteration. Defaults to 0.0.

Mapped Parameters

These parameters map from joint_names to values. The format to use these parameters is <parameter>.<key>:=<value>, where a new parameter is defined for each key. See below for examples.

  • zeros (map from string -> float) - A map of joint_names to initial starting values for the joint. For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param zeros.joint_name1:=value1 --param zeros.joint_name2:=value2. This parameter is not set by default, so all joints start at zero. For joints where zero isn’t within the joint range, it uses the range’s (max + min) / 2.
  • dependent_joints (map from string -> map from ‘parent’, ‘factor’, ‘offset’ -> float) - A map of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param dependent_joints.left_leg.parent:=right_leg --param dependent_joints.left_leg.offset:=0.0 --param dependent_joints.left_leg.factor:=2.0. This parameter is not set by default, in which case only joints that are marked as <mimic> in the URDF are mimiced.
CHANGELOG

Changelog for package joint_state_publisher

2.4.0 (2023-08-04)

  • Support for sdformat robot descriptions (#55)
  • Refactor urdf parser function (#94)
  • Gracefully handle SIGINT (#86)
  • Contributors: Dharini Dutia, Shane Loretz, Will

2.3.0 (2022-04-21)

  • Use underscores in setup.cfg. (#76)
  • Fix the mimic_cycle test to always succeed. (#74)
  • Remove deprecated policy warning (#67)
  • Clarify docs on 'mapped parameters' in README (#66) (#71) * Clarify docs on 'mapped parameters' in README Co-authored-by: Binit Shah <<bshah@hello-robot.com>>

  • Contributors: Binit Shah, Chris Lalancette

2.2.0 (2020-06-04)

  • Minor fixes from review.
  • Add in pytest.ini files for jsp and jsp_gui.
  • Stop using deprecated launch parameters in Foxy.
  • Contributors: Chris Lalancette

2.1.0 (2020-05-19)

2.0.0 (2020-03-10)

  • Port to ROS 2 (#30)
  • Remove the deprecated fallback option of use_gui (#34)
  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.4.0
License BSD
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version ros2
Last Updated 2023-08-21
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/msg/JointState messages for a robot described with URDF. Given a URDF (either passed on the command-line or via the /robot_description topic), this node will continually publish values for all of the movable joints in the URDF to the /joint_states topic. In combination with robot_state_publisher, this ensures that there is a valid transform for all joints even when the joint doesn’t have encoder data.

Published Topics

  • /joint_states (sensor_msgs/msg/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /robot_description (std_msgs/msg/String) - If no URDF is given on the command-line, then this node will listen on the /robot_description topic for the URDF to be published. Once it has been received at least once, this node will start to publish joint values to /joint_states.
  • (optional) /any_topic (sensor_msgs/msg/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/msg/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • delta (double) - How much to automatically move joints during each iteration. Defaults to 0.0.

Mapped Parameters

These parameters map from joint_names to values. The format to use these parameters is <parameter>.<key>:=<value>, where a new parameter is defined for each key. See below for examples.

  • zeros (map from string -> float) - A map of joint_names to initial starting values for the joint. For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param zeros.joint_name1:=value1 --param zeros.joint_name2:=value2. This parameter is not set by default, so all joints start at zero. For joints where zero isn’t within the joint range, it uses the range’s (max + min) / 2.
  • dependent_joints (map from string -> map from ‘parent’, ‘factor’, ‘offset’ -> float) - A map of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param dependent_joints.left_leg.parent:=right_leg --param dependent_joints.left_leg.offset:=0.0 --param dependent_joints.left_leg.factor:=2.0. This parameter is not set by default, in which case only joints that are marked as <mimic> in the URDF are mimiced.
CHANGELOG

Changelog for package joint_state_publisher

2.4.0 (2023-08-04)

  • Support for sdformat robot descriptions (#55)
  • Refactor urdf parser function (#94)
  • Gracefully handle SIGINT (#86)
  • Contributors: Dharini Dutia, Shane Loretz, Will

2.3.0 (2022-04-21)

  • Use underscores in setup.cfg. (#76)
  • Fix the mimic_cycle test to always succeed. (#74)
  • Remove deprecated policy warning (#67)
  • Clarify docs on 'mapped parameters' in README (#66) (#71) * Clarify docs on 'mapped parameters' in README Co-authored-by: Binit Shah <<bshah@hello-robot.com>>

  • Contributors: Binit Shah, Chris Lalancette

2.2.0 (2020-06-04)

  • Minor fixes from review.
  • Add in pytest.ini files for jsp and jsp_gui.
  • Stop using deprecated launch parameters in Foxy.
  • Contributors: Chris Lalancette

2.1.0 (2020-05-19)

2.0.0 (2020-03-10)

  • Port to ROS 2 (#30)
  • Remove the deprecated fallback option of use_gui (#34)
  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.2.0
License BSD
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version galactic
Last Updated 2021-09-28
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/msg/JointState messages for a robot described with URDF. Given a URDF (either passed on the command-line or via the /robot_description topic), this node will continually publish values for all of the movable joints in the URDF to the /joint_states topic. In combination with robot_state_publisher, this ensures that there is a valid transform for all joints even when the joint doesn’t have encoder data.

Published Topics

  • /joint_states (sensor_msgs/msg/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /robot_description (std_msgs/msg/String) - If no URDF is given on the command-line, then this node will listen on the /robot_description topic for the URDF to be published. Once it has been received at least once, this node will start to publish joint values to /joint_states.
  • (optional) /any_topic (sensor_msgs/msg/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/msg/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • delta (double) - How much to automatically move joints during each iteration. Defaults to 0.0.

Mapped Parameters

These parameters map from joint_names to values. The format to use these parameters is <parameter>.<key>:=<value>, where a new parameter is defined for each key. See below for examples.

  • zeros (map from string -> float) - A map of joint_names to initial starting values for the joint. For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param zeros.joint_name1:=value1 --param zeros.joint_name2:=value2. This parameter is not set by default, so all joints start at zero. For joints where zero isn’t within the joint range, it uses the range’s (max + min) / 2.
  • dependent_joints (map from string -> map from ‘parent’, ‘factor’, ‘offset’ -> float) - A map of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param dependent_joints.left_leg.parent:=right_leg --param dependent_joints.left_leg.offset:=0.0 --param dependent_joints.left_leg.factor:=2.0. This parameter is not set by default, in which case only joints that are marked as <mimic> in the URDF are mimiced.
CHANGELOG

Changelog for package joint_state_publisher

2.2.0 (2020-06-04)

  • Minor fixes from review.
  • Add in pytest.ini files for jsp and jsp_gui.
  • Stop using deprecated launch parameters in Foxy.
  • Contributors: Chris Lalancette

2.1.0 (2020-05-19)

2.0.0 (2020-03-10)

  • Port to ROS 2 (#30)
  • Remove the deprecated fallback option of use_gui (#34)
  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 2.2.0
License BSD
Build type AMENT_PYTHON
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version foxy
Last Updated 2021-09-28
Dev Status MAINTAINED
CI status No Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/msg/JointState messages for a robot described with URDF. Given a URDF (either passed on the command-line or via the /robot_description topic), this node will continually publish values for all of the movable joints in the URDF to the /joint_states topic. In combination with robot_state_publisher, this ensures that there is a valid transform for all joints even when the joint doesn’t have encoder data.

Published Topics

  • /joint_states (sensor_msgs/msg/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /robot_description (std_msgs/msg/String) - If no URDF is given on the command-line, then this node will listen on the /robot_description topic for the URDF to be published. Once it has been received at least once, this node will start to publish joint values to /joint_states.
  • (optional) /any_topic (sensor_msgs/msg/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/msg/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • delta (double) - How much to automatically move joints during each iteration. Defaults to 0.0.

Mapped Parameters

These parameters map from joint_names to values. The format to use these parameters is <parameter>.<key>:=<value>, where a new parameter is defined for each key. See below for examples.

  • zeros (map from string -> float) - A map of joint_names to initial starting values for the joint. For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param zeros.joint_name1:=value1 --param zeros.joint_name2:=value2. This parameter is not set by default, so all joints start at zero. For joints where zero isn’t within the joint range, it uses the range’s (max + min) / 2.
  • dependent_joints (map from string -> map from ‘parent’, ‘factor’, ‘offset’ -> float) - A map of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). For example, in Eloquent and beyond, this parameter can be used from the command-line with ros2 run joint_state_publisher joint_state_publisher --ros-args --param dependent_joints.left_leg.parent:=right_leg --param dependent_joints.left_leg.offset:=0.0 --param dependent_joints.left_leg.factor:=2.0. This parameter is not set by default, in which case only joints that are marked as <mimic> in the URDF are mimiced.
CHANGELOG

Changelog for package joint_state_publisher

2.2.0 (2020-06-04)

  • Minor fixes from review.
  • Add in pytest.ini files for jsp and jsp_gui.
  • Stop using deprecated launch parameters in Foxy.
  • Contributors: Chris Lalancette

2.1.0 (2020-05-19)

2.0.0 (2020-03-10)

  • Port to ROS 2 (#30)
  • Remove the deprecated fallback option of use_gui (#34)
  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 1.12.15
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version kinetic-devel
Last Updated 2020-12-11
Dev Status MAINTAINED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/JointState messages for a robot described with URDF. Given a URDF in the robot_description parameter on the parameter server, this node will continually publish default values for all of the movable joints in the URDF to the /joint_states topic.

See the ROS wiki for additional API documentation and tutorials.

This was originally part of the ros/robot_model repository. It has been moved to this repo as described by ros/robot_model#195

Published Topics

  • /joint_states (sensor_msgs/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /any_topic (sensor_msgs/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • robot_description (string, required) - A URDF or DAE file describing the robot.
  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. If False, use_gui must also be False. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • zeros (dictionary of string -> float) - A dictionary of joint_names to initial starting values for the joint. Defaults to an empty dictionary, in which case 0.0 is assumed as the zero for all joints.
  • dependent_joints (dictionary of string -> dictionary of ‘parent’, ‘factor’, ‘offset’) - A dictionary of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). Defaults to the empty dictionary, in which case only joints that are marked as <mimic> in the URDF are mimiced.
  • use_gui (bool) - Deprecated option to show a GUI useful for manipulating joints when launching the joint_state_publisher. Defaults to False. Will be removed in Noetic in favor of running joint_state_publisher_gui instead.
  • num_rows (int) - Deprecated option to control the number of rows shown in the GUI when use_gui is set to true. Defaults to the number of joints. Will be removed in Noetic.
CHANGELOG

Changelog for package joint_state_publisher

1.12.15 (2020-03-12)

  • Make it clear robot_description is required (#42)
  • Set source_update_cb attr before creating subscribers (#41)
  • Contributors: Shane Loretz

1.12.14 (2020-01-22)

  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

joint_state_publisher package from joint_state_publisher repo

joint_state_publisher

Package Summary

Tags No category tags.
Version 1.11.15
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version indigo-devel
Last Updated 2018-02-09
Dev Status MAINTAINED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay
README
No README found. See repository README.
CHANGELOG

Changelog for package joint_state_publisher

1.11.15 (2017-09-15)

  • Added forward declaration for recent versions of urdfdom (#217)
  • pcrecpp is no longer a dependency (#216)
  • Contributors: Chris Lalancette, Michael Görner

1.11.14 (2017-08-14)

1.11.13 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Contributors: Chris Lalancette, Martin Günther

1.11.12 (2017-01-04)

1.11.11 (2016-06-10)

  • scroll joint_state_publisher if there are too many joints (#137)
  • Contributors: v4hn

1.11.10 (2016-02-23)

1.11.9 (2016-02-22)

  • Add Jackie as a maintainer
  • Contributors: Jackie Kay

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

Name
wxpython

Dependant Packages

Name Deps
abb_irb2400_moveit_config
abb_irb2400_support
abb_irb5400_support
abb_irb6600_support
abb_irb6640_moveit_config
abb_irb6640_support
cob_obstacle_distance
cob_moveit_bringup
cob_bringup
cob_hardware_config
cob_gazebo_worlds
denso_robot_moveit_config
fanuc_cr35ia_support
fanuc_cr7ia_moveit_config
fanuc_cr7ia_support
fanuc_cr7ial_moveit_config
fanuc_lrmate200i_moveit_config
fanuc_lrmate200i_support
fanuc_lrmate200ib3l_moveit_config
fanuc_lrmate200ib_moveit_config
fanuc_lrmate200ib_support
fanuc_lrmate200ic5h_moveit_config
fanuc_lrmate200ic5l_moveit_config
fanuc_lrmate200ic_moveit_config
fanuc_lrmate200ic_support
fanuc_m10ia_moveit_config
fanuc_m10ia_support
fanuc_m16ib20_moveit_config
fanuc_m16ib_support
fanuc_m20ia10l_moveit_config
fanuc_m20ia_moveit_config
fanuc_m20ia_support
fanuc_m20ib25_moveit_config
fanuc_m20ib_support
fanuc_m430ia2f_moveit_config
fanuc_m430ia2p_moveit_config
fanuc_m430ia_support
fanuc_m6ib6s_moveit_config
fanuc_m6ib_moveit_config
fanuc_m6ib_support
fanuc_m710ic_support
fanuc_m900ia_support
fanuc_m900ib_support
fanuc_r1000ia80f_moveit_config
fanuc_r1000ia_support
fanuc_lrmate200id7l_moveit_config
fanuc_lrmate200id_moveit_config
fanuc_lrmate200id_support
fanuc_r2000ib_support
fanuc_r2000ic_support
fetch_moveit_config
flir_ptu_viz
heron_viz
husky_ur5_moveit_config
jackal_viz
jsk_pcl_ros
jsk_rviz_plugins
tra1_description
tra1_moveit_config
mir_description
mir_gazebo
pr2_moveit_config
moveit_resources_dual_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources
moveit_resources_panda_moveit_config
moveit_resources_prbt_moveit_config
ridgeback_viz
nextage_calibration
nextage_moveit_config
staubli_rx160_moveit_config
staubli_rx160_support
staubli_tx60_support
staubli_tx90_support
ur10_moveit_config
ur3_moveit_config
ur5_moveit_config
urdf_tutorial
warthog_viz
warthog_gazebo
abb_irb120_moveit_config
abb_irb120_support
abb_irb120t_moveit_config
abb_irb4400_support
grizzly_viz
rgbd_depth_correction
innok_heros_description
kuka_kr10_support
kuka_kr120_support
kuka_kr150_support
kuka_kr16_support
kuka_kr210_support
kuka_kr3_support
kuka_kr5_support
kuka_kr6_support
kuka_lbr_iiwa_support
motoman_mh5_support
motoman_sda10f_moveit_config
motoman_sda10f_support
motoman_sia10d_support
motoman_sia10f_support
motoman_sia20d_moveit_config
motoman_sia20d_support
motoman_sia5d_support
motoman_bmda3_support
motoman_mh_support
motoman_mpl80_moveit_config
motoman_mpl_support
motoman_sia5d_moveit_config
nao_moveit_config
pepper_moveit_config
rb1_base_kinova_j2n6a300_moveit_config
robot_model
roch_viz
romeo_moveit_config
romeo_description
roomblock_description
turtlebot_arm_moveit_config
turtlebot_rviz_launchers
calvin_moveit_config
cyton_gamma_1500_description
jsk_robot_utils
maxwell_moveit_config
hrp2w_moveit_config
samplerobot_moveit_config
staro_moveit_config
segbot_bringup
aubo_i5_moveit_config
carl_description
carl_moveit
cirkit_unit03_description
cirkit_unit03_bringup
evarobot_state_publisher
husky_viz
stomp_test_kr210_moveit_config
jsk_demo_common
phantomx_reactor_arm_moveit_config
rb1_jaco_3fg_moveit_config
rb1_mico_3fg_moveit_config
schunk_lwa4d
schunk_lwa4d_moveit_config
schunk_lwa4p
schunk_lwa4p_extended
schunk_pg70
schunk_pw70
spur_controller
Multicar_moveit_config
widowx_arm_moveit
jaco_description
jaco_moveit_config
mico_description
mico_moveit_config
yumi_moveit_config

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 1.12.15
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version kinetic-devel
Last Updated 2020-12-11
Dev Status MAINTAINED
CI status Continuous Integration
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/JointState messages for a robot described with URDF. Given a URDF in the robot_description parameter on the parameter server, this node will continually publish default values for all of the movable joints in the URDF to the /joint_states topic.

See the ROS wiki for additional API documentation and tutorials.

This was originally part of the ros/robot_model repository. It has been moved to this repo as described by ros/robot_model#195

Published Topics

  • /joint_states (sensor_msgs/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /any_topic (sensor_msgs/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • robot_description (string, required) - A URDF or DAE file describing the robot.
  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. If False, use_gui must also be False. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • zeros (dictionary of string -> float) - A dictionary of joint_names to initial starting values for the joint. Defaults to an empty dictionary, in which case 0.0 is assumed as the zero for all joints.
  • dependent_joints (dictionary of string -> dictionary of ‘parent’, ‘factor’, ‘offset’) - A dictionary of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). Defaults to the empty dictionary, in which case only joints that are marked as <mimic> in the URDF are mimiced.
  • use_gui (bool) - Deprecated option to show a GUI useful for manipulating joints when launching the joint_state_publisher. Defaults to False. Will be removed in Noetic in favor of running joint_state_publisher_gui instead.
  • num_rows (int) - Deprecated option to control the number of rows shown in the GUI when use_gui is set to true. Defaults to the number of joints. Will be removed in Noetic.
CHANGELOG

Changelog for package joint_state_publisher

1.12.15 (2020-03-12)

  • Make it clear robot_description is required (#42)
  • Set source_update_cb attr before creating subscribers (#41)
  • Contributors: Shane Loretz

1.12.14 (2020-01-22)

  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
abb_irb2400_moveit_config
abb_irb2400_support
abb_irb4400_support
abb_irb5400_support
abb_irb6600_support
abb_irb6640_moveit_config
abb_irb6640_support
cob_obstacle_distance
cob_moveit_bringup
cob_bringup
cob_hardware_config
cob_gazebo_worlds
crane_x7_moveit_config
denso_robot_moveit_config
fanuc_cr35ia_support
fanuc_cr7ia_moveit_config
fanuc_cr7ia_support
fanuc_cr7ial_moveit_config
fanuc_lrmate200i_moveit_config
fanuc_lrmate200i_support
fanuc_lrmate200ib3l_moveit_config
fanuc_lrmate200ib_moveit_config
fanuc_lrmate200ib_support
fanuc_lrmate200ic5h_moveit_config
fanuc_lrmate200ic5l_moveit_config
fanuc_lrmate200ic_moveit_config
fanuc_lrmate200ic_support
fanuc_m10ia_moveit_config
fanuc_m10ia_support
fanuc_m16ib20_moveit_config
fanuc_m16ib_support
fanuc_m20ia10l_moveit_config
fanuc_m20ia_moveit_config
fanuc_m20ia_support
fanuc_m20ib25_moveit_config
fanuc_m20ib_support
fanuc_m430ia2f_moveit_config
fanuc_m430ia2p_moveit_config
fanuc_m430ia_support
fanuc_m6ib6s_moveit_config
fanuc_m6ib_moveit_config
fanuc_m6ib_support
fanuc_m710ic_support
fanuc_m900ia_support
fanuc_m900ib_support
fanuc_r1000ia80f_moveit_config
fanuc_r1000ia_support
fanuc_lrmate200id7l_moveit_config
fanuc_lrmate200id_moveit_config
fetch_moveit_config
flir_ptu_viz
franka_control
fsrobo_r_description
fsrobo_r_moveit_config
gundam_rx78_description
heron_viz
husky_viz
jackal_viz
joint_state_publisher_gui
jsk_pcl_ros
jsk_rviz_plugins
khi_duaro_moveit_config
khi_rs007l_moveit_config
khi_rs007n_moveit_config
khi_rs013n_moveit_config
khi_rs020n_moveit_config
khi_rs025n_moveit_config
khi_rs030n_moveit_config
khi_rs080n_moveit_config
leo_viz
tra1_description
tra1_moveit_config
mir_description
mir_gazebo
moose_gazebo
pr2_moveit_config
moveit_resources_dual_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources
moveit_resources_panda_moveit_config
moveit_resources_prbt_moveit_config
open_manipulator_description
open_manipulator_moveit
open_manipulator_p_description
open_manipulator_with_tb3_description
open_manipulator_with_tb3_tools
open_manipulator_with_tb3_waffle_moveit
open_manipulator_with_tb3_waffle_pi_moveit
panda_moveit_config
prbt_moveit_config
prbt_support
raspimouse_description
ridgeback_viz
nextage_calibration
nextage_moveit_config
sciurus17_moveit_config
seed_r7_moveit_config
seed_r7_typef_moveit_config
seed_r7_typeg2_arm_moveit_config
seed_r7_typeg_arm_moveit_config
seed_r7_typeg_moveit_config
sr_moveit_hand_config
sr_box_ur10_moveit_config
sr_multi_moveit_config
sr_multi_moveit_test
sr_robot_launch
staubli_rx160_moveit_config
staubli_rx160_support
staubli_tx2_60_support
staubli_tx2_90_support
staubli_tx60_support
staubli_tx90_support
turtlebot3_bringup
turtlebot3_automatic_parking_vision
ur10_e_moveit_config
ur10_moveit_config
ur3_e_moveit_config
ur3_moveit_config
ur5_e_moveit_config
ur5_moveit_config
ur_description
ur_e_description
urdf_tutorial
uuv_thruster_manager
warthog_viz
warthog_gazebo
abb_irb1200_5_90_moveit_config
abb_irb1200_7_70_moveit_config
abb_irb1200_support
abb_irb120_moveit_config
abb_irb120_support
abb_irb120t_moveit_config
abb_irb1600_6_12_moveit_config
abb_irb1600_support
abb_irb2600_support
abb_irb4600_support
abb_irb52_support
abb_irb6650s_support
abb_irb6700_support
abb_irb7600_support
framefab_irb6600_workspace_moveit_config
choreo_kr150_2_workspace_moveit_config
choreo_kr5_arc_workspace_moveit_config
kr6_r900_mit_suction_gripper_moveit_config
kr6_r900_workspace_moveit_config
moveit_config_a0509
moveit_config_a0912
moveit_config_h2017
moveit_config_h2515
moveit_config_m0609
moveit_config_m0617
moveit_config_m1013
moveit_config_m1509
grizzly_viz
hsr_description
iiwa_moveit
rgbd_depth_correction
innok_heros_description
kuka_kr10_support
kuka_kr120_support
kuka_kr150_support
kuka_kr16_support
kuka_kr210_support
kuka_kr3_support
kuka_kr5_support
kuka_kr6_support
kuka_lbr_iiwa_support
magni_description
manipulator_h_bringup
manipulator_h_description
melfa_description
rv4fl_moveit_config
rv7fl_moveit_config
motoman_ar2010_support
motoman_gp12_support
motoman_gp180_support
motoman_gp200r_support
motoman_gp25_support
motoman_gp35l_support
motoman_gp4_support
motoman_gp50_support
motoman_gp70l_support
motoman_gp7_support
motoman_gp88_support
motoman_gp8_support
motoman_hc10_support
motoman_hc20_support
motoman_ma2010_moveit_config
motoman_mh12_support
motoman_mh50_support
motoman_mh5_support
motoman_motomini_support
motoman_ms210_moveit_config
motoman_sda10f_moveit_config
motoman_sda10f_support
motoman_sia10d_support
motoman_sia10f_support
motoman_sia20d_moveit_config
motoman_sia20d_support
motoman_sia30d_support
motoman_sia50_support
motoman_sia5d_support
motoman_bmda3_support
motoman_csda10f_moveit_config
motoman_csda10f_support
motoman_epx_support
motoman_mh_support
motoman_mhj_support
motoman_mpl80_moveit_config
motoman_mpl_support
motoman_mpx3500_support
motoman_sia5d_moveit_config
nao_moveit_config
pepper_moveit_config
rb1_dual_ur3_moveit_config
rh_p12_rn_description
robot_model
op3_description
op3_bringup
roch_viz
romeo_moveit_config
romeo_description
roomblock_description
rsv_balance_viz
summit_xl_j2n6s200_moveit_config
summit_xl_j2s6s200_moveit_config
summit_xl_j2s6s300_moveit_config
summit_xl_j2s7s300_moveit_config
svenzva_moveit
thormang3_description
turtlebot_arm_moveit_config
turtlebot_rviz_launchers
dual_xarm6_moveit_config
xarm5_vacuum_gripper_moveit_config
xarm6_vacuum_gripper_moveit_config
xarm7_vacuum_gripper_moveit_config
lite6_moveit_config
uf_robot_moveit_config
xarm5_gripper_moveit_config
xarm5_moveit_config
xarm6_gripper_moveit_config
xarm6_moveit_config
xarm7_gripper_moveit_config
xarm7_moveit_config
xarm_gripper
xbot_description

Recent questions tagged joint_state_publisher at Robotics Stack Exchange

Package Summary

Tags No category tags.
Version 1.12.15
License BSD
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros/joint_state_publisher.git
VCS Type git
VCS Version kinetic-devel
Last Updated 2020-12-11
Dev Status MAINTAINED
CI status
Released RELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

This package contains a tool for setting and publishing joint state values for a given URDF.

Additional Links

Maintainers

  • Chris Lalancette
  • Shane Loretz

Authors

  • David V. Lu!!
  • Jackie Kay

Joint State Publisher

This contains a package for publishing sensor_msgs/JointState messages for a robot described with URDF. Given a URDF in the robot_description parameter on the parameter server, this node will continually publish default values for all of the movable joints in the URDF to the /joint_states topic.

See the ROS wiki for additional API documentation and tutorials.

This was originally part of the ros/robot_model repository. It has been moved to this repo as described by ros/robot_model#195

Published Topics

  • /joint_states (sensor_msgs/JointState) - The state of all of the movable joints in the system.

Subscribed Topics

  • (optional) /any_topic (sensor_msgs/JointState) - If the sources_list parameter is not empty (see Parameters below), then every named topic in this parameter will be subscribed to for joint state updates. Do not add the default /joint_states topic to this list, as it will end up in an endless loop!

Parameters

  • robot_description (string, required) - A URDF or DAE file describing the robot.
  • rate (int) - The rate at which to publish updates to the /joint_states topic. Defaults to 10.
  • publish_default_positions (bool) - Whether to publish a default position for each movable joint to the /joint_states topic. If False, use_gui must also be False. Defaults to True.
  • publish_default_velocities (bool) - Whether to publish a default velocity for each movable joint to the /joint_states topic. Defaults to False.
  • publish_default_efforts (bool) - Whether to publish a default effort for each movable joint to the /joint_states topic. Defaults to False.
  • use_mimic_tags (bool) - Whether to honor <mimic> tags in the URDF. Defaults to True.
  • use_smallest_joint_limits (bool) - Whether to honor <safety_controller> tags in the URDF. Defaults to True.
  • source_list (array of strings) - Each string in this array represents a topic name. For each string, create a subscription to the named topic of type sensor_msgs/JointStates. Publication to that topic will update the joints named in the message. Defaults to an empty array.
  • zeros (dictionary of string -> float) - A dictionary of joint_names to initial starting values for the joint. Defaults to an empty dictionary, in which case 0.0 is assumed as the zero for all joints.
  • dependent_joints (dictionary of string -> dictionary of ‘parent’, ‘factor’, ‘offset’) - A dictionary of joint_names to the joints that they mimic; compare to the <mimic> tag in URDF. A joint listed here will mimic the movements of the ‘parent’ joint, subject to the ‘factor’ and ‘offset’ provided. The ‘parent’ name must be provided, while the ‘factor’ and ‘offset’ parameters are optional (they default to 1.0 and 0.0, respectively). Defaults to the empty dictionary, in which case only joints that are marked as <mimic> in the URDF are mimiced.
  • use_gui (bool) - Deprecated option to show a GUI useful for manipulating joints when launching the joint_state_publisher. Defaults to False. Will be removed in Noetic in favor of running joint_state_publisher_gui instead.
  • num_rows (int) - Deprecated option to control the number of rows shown in the GUI when use_gui is set to true. Defaults to the number of joints. Will be removed in Noetic.
CHANGELOG

Changelog for package joint_state_publisher

1.12.15 (2020-03-12)

  • Make it clear robot_description is required (#42)
  • Set source_update_cb attr before creating subscribers (#41)
  • Contributors: Shane Loretz

1.12.14 (2020-01-22)

  • Split jsp and jsp gui (#31)
  • Only update one joint slider on value changed. (#11)
  • ignore 'planar' joints just as 'fixed' and 'floating' (#14)
  • Make GUI window scroll & resize for large robots (#10)
  • Contributors: Andy McEvoy, Chris Lalancette, Michael Görner

1.12.13 (2018-03-19)

  • add bugtracker link now that this is not hosted on robot_model anymore
  • Added a scrollarea around the gridlayout to support large number of joints
  • pass robot objects into init_collada() and init_urdf()
  • add test for collada supports
  • add support for collada model : moved from https://github.com/ros/robot_model/pull/97
  • Contributors: Guillaume Walck, Kei Okada, Mikael Arguedas

1.12.12 (2017-09-15)

  • Don't publish joint states if there are no joints (#212)
  • Contributors: Chris Lalancette

1.12.11 (2017-06-27)

1.12.10 (2017-06-24)

1.12.9 (2017-04-26)

1.12.8 (2017-03-27)

  • [joint_state_publisher] Handle time moving backwards Without this patch, joint_state_publisher dies whenever the ROS time moves backwards (e.g., when running [rosbag play --clock --loop]{.title-ref}).
  • Switch a couple more packages over to Chris and Shane.
  • Fix rostest dependency.
  • Add recursive mimic joint (#177)
    • Add recursive mimic joint
  • Contributors: Alessandro Tondo, Chris Lalancette, Martin Günther, Mike Purvis

1.12.7 (2017-01-26)

  • Fixed a crash which happened when there were 0 free joints, opens empty window (#178)
  • Contributors: Bence Magyar

1.12.6 (2017-01-04)

  • Migrated slots in joint state publisher gui to Qt5 (#147)
  • Now uses GridLayout to support large numbers of joints and small screens (#150)
  • Contributors: Bence Magyar, Michał Barciś

1.12.5 (2016-10-27)

  • Fix initial position of sliders in joint_state_publisher GUI (#148) Caused by a regression in 8c6cf9841cb, the slider positions are not initialized correctly from the provided zero positions at startup. This commit fixes the issue, by adding the call to center() again that got lost.
  • Contributors: Timm Linder

1.12.4 (2016-08-23)

1.12.3 (2016-06-10)

  • Fix circular logic in joint state publisher events (#140)
  • Use signal and sys.exit to fix shutdown in joint_state_publisher (#139)
  • joint_state_publisher: Change slider update method (#135)
  • Contributors: Jackie Kay, vincentrou

1.12.2 (2016-04-12)

  • Migrate qt (#128)
    • Migrate JointStatePublisher from wxPython to qt5
  • Contributors: Jackie Kay

1.12.1 (2016-04-10)

1.11.8 (2015-09-11)

1.11.7 (2015-04-22)

  • Added a randomize button for the joints.
  • Contributors: Aaron Blasdel

1.11.6 (2014-11-30)

  • Added floating joints to joint types ignored by publisher
  • warn when joints have no limits
  • add queue_size for publisher
  • Contributors: Jihoon Lee, Michael Ferguson, Shaun Edwards

1.11.5 (2014-07-24)

1.11.4 (2014-07-07)

  • Update package.xml Updating author and maintainer email for consistency
  • Contributors: David Lu!!

1.11.3 (2014-06-24)

1.11.2 (2014-03-22)

1.11.1 (2014-03-20)

1.11.0 (2014-02-21)

  • Use #!/usr/bin/env python for systems with multiple Python versions.
  • Contributors: Benjamin Chretien

1.10.18 (2013-12-04)

1.10.16 (2013-11-18)

1.10.15 (2013-08-17)

  • joint_state_publisher: do not install script to global bin Also clean up no longer required setup.py

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Name Deps
abb_irb2400_moveit_config
abb_irb2400_support
abb_irb4400_support
abb_irb5400_support
abb_irb6600_support
abb_irb6640_moveit_config
abb_irb6640_support
cob_obstacle_distance
cob_moveit_bringup
cob_bringup
cob_hardware_config
cob_gazebo_worlds
crane_x7_moveit_config
denso_robot_moveit_config
fanuc_cr35ia_support
fanuc_cr7ia_moveit_config
fanuc_cr7ia_support
fanuc_cr7ial_moveit_config
fanuc_lrmate200i_moveit_config
fanuc_lrmate200i_support
fanuc_lrmate200ib3l_moveit_config
fanuc_lrmate200ib_moveit_config
fanuc_lrmate200ib_support
fanuc_lrmate200ic5h_moveit_config
fanuc_lrmate200ic5l_moveit_config
fanuc_lrmate200ic_moveit_config
fanuc_lrmate200ic_support
fanuc_m10ia_moveit_config
fanuc_m10ia_support
fanuc_m16ib20_moveit_config
fanuc_m16ib_support
fanuc_m20ia10l_moveit_config
fanuc_m20ia_moveit_config
fanuc_m20ia_support
fanuc_m20ib25_moveit_config
fanuc_m20ib_support
fanuc_m430ia2f_moveit_config
fanuc_m430ia2p_moveit_config
fanuc_m430ia_support
fanuc_m6ib6s_moveit_config
fanuc_m6ib_moveit_config
fanuc_m6ib_support
fanuc_m710ic_support
fanuc_m900ia_support
fanuc_m900ib_support
fanuc_r1000ia80f_moveit_config
fanuc_r1000ia_support
fanuc_lrmate200id7l_moveit_config
fanuc_lrmate200id_moveit_config
fetch_moveit_config
flir_ptu_viz
franka_control
fsrobo_r_description
fsrobo_r_moveit_config
gundam_rx78_description
heron_viz
husky_viz
jackal_viz
joint_state_publisher_gui
jsk_pcl_ros
jsk_rviz_plugins
khi_duaro_moveit_config
khi_rs007l_moveit_config
khi_rs007n_moveit_config
khi_rs013n_moveit_config
khi_rs020n_moveit_config
khi_rs025n_moveit_config
khi_rs030n_moveit_config
khi_rs080n_moveit_config
leo_viz
robot
tra1_description
tra1_moveit_config
mir_description
mir_gazebo
moose_gazebo
pr2_moveit_config
moveit_resources_dual_panda_moveit_config
moveit_resources_fanuc_moveit_config
moveit_resources
moveit_resources_panda_moveit_config
moveit_resources_prbt_moveit_config
open_manipulator_description
open_manipulator_p_description
open_manipulator_with_tb3_description
open_manipulator_with_tb3_tools
open_manipulator_with_tb3_waffle_moveit
open_manipulator_with_tb3_waffle_pi_moveit
panda_moveit_config
prbt_moveit_config
prbt_support
pincher_arm_moveit_config
raspimouse_description
ridgeback_viz
robotont_description
nextage_calibration
nextage_moveit_config
sciurus17_moveit_config
seed_r7_moveit_config
seed_r7_typef_moveit_config
seed_r7_typeg2_arm_moveit_config
seed_r7_typeg_arm_moveit_config
seed_r7_typeg_moveit_config
sr_moveit_hand_config
sr_box_ur10_moveit_config
sr_multi_moveit_config
sr_multi_moveit_test
sr_robot_launch
staubli_rx160_moveit_config
staubli_rx160_support
staubli_tx2_60_support
staubli_tx2_90_support
staubli_tx60_support
staubli_tx90_support
turtlebot3_bringup
turtlebot3_automatic_parking_vision
ur10_moveit_config
ur10e_moveit_config
ur16e_moveit_config
ur3_moveit_config
ur3e_moveit_config
ur5_moveit_config
ur5e_moveit_config
urdf_tutorial
uuv_thruster_manager
warthog_viz
warthog_gazebo

Recent questions tagged joint_state_publisher at Robotics Stack Exchange