Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version foxy-devel
Last Updated 2022-11-23
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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

1.3.0 (2022-11-23)

  • launch: fix deprecated attributes
  • Fix some warnings from tests. In here are some flake8 fixes and fixes to the joy_teleop tests now that some of the error messages have changed.
  • Allow a [value]{.title-ref} type within an axis mapping. Useful for frame data.
  • Add offsets to example yaml
  • add ci & lint
  • joy_teleop: convert current time to message type for timestamping
  • Contributors: AndyZe, Chris Lalancette, Kazunari Tanaka, Marcel Zeilinger, Russ Webber

1.2.1 (2020-10-29)

1.2.0 (2020-10-16)

  • Change the file mode of the python files in joy_teleop. They don\'t need to be executable.
  • Add in Python typing to joy_teleop. This also showed a few bugs.
  • Add a test for service becoming ready.
  • Add in tests for parameter failures.
  • Add a test for debouncing. The test works by having a subscription to the output topic. Every time the subscription is received, we increment a counter. There is also a timer callback that executes every 0.1 seconds, publishing the \'joy\' message. Like other tests, this publication toggles the button on and off to avoid debouncing. Unlike other tests, once we have seen one message come in, we stop toggling and just set it to one all of the time to ensure debouncing works properly.
  • Add in a test for actions.
  • Add in tests for services.
  • Add a test for topic axis mappings.
  • Add in a test for a simple message.
  • Add in joy_teleop common testing tools. These will be used by the rest of the tests.
  • Add in unit tests for get_interface_type.
  • Rename test_pop257 -> test_pep257.
  • Rewrite to use classes instead of maps. This has a number of benefits: 1. I think it is much easier to read; the classes only implement the pieces they are concerned with. 2. Actions and services now automatically reconnect as action servers or service servers come and go. 3. It is easier to write tests for individual functionality. The API to this node stays the same; the parameters and topics that were used before are still honored.

  • Raise errors when parsing configuration fails. This lets the user know that their configuration is wrong much earlier.

  • Get rid of self.config. We never use it outside of the constructor, so just make it a local variable.

  • Rename al_clients -> action_clients.

  • Contributors: Chris Lalancette

1.1.0 (2020-04-21)

  • Add the ability to have deadman axes. (#46) * Add the ability to have deadman axes. Some controllers don\'t have a convenient shoulder trigger button, but do have shoulder \"axes\". Allow the axes to be used for a deadman trigger, assuming they are pressed all the way. Note that I used a dict for the list of axes, as this provides the most convenient way to deal with controllers that use 1.0, -1.0, or 0.0 as the \"far\" end of the axis.

    • Make sure to ignore buttons and axes that don\'t exist.
  • Contributors: Chris Lalancette

1.0.2 (2020-02-10)

  • Avoid halting on action server status checks. (#48)
  • Depend action_tutorials_interfaces (#44)
  • log JoyTeleopException (#41)
  • Contributors: Michel Hidalgo, Yutaka Kondo

1.0.1 (2019-09-18)

  • Fix install rules and dashing changes (#38)

    • fix ament indexing
    • fix package resource files
    • add tk depenndency
    • add check for param index-ability

    * data files are now package agnostic Signed-off-by: Ted Kern <ted.kern@canonical.com>

  • Contributors: Ted Kern

1.0.0 (2019-09-10)

  • ROS2 port (#35)

    • key_teleop pkg format 3
    • port teleop_tools_msgs
    • key_teleop catch KeyboardInterrupt
    • port mouse_teleop
    • add key_teleop.yaml
    • add xmllint test
    • fix xmllint tests
    • remove useless class KeyTeleop
    • Fixes for dynamic topic joy publishers

    - match_command() now compares button array length to the max deadman button index (apples to apples) - match_command function now checks if any of the deadman buttons are depressed before returning a match - properly handle a std_msgs/msg/Empty \'message_value\' by not attempting to access its value - utilizes iter-items to correctly index into the config dict for \'axis_mappings\'\'s \'axis\' and \'button\' values - set_member() now splits according to a dash (-) rather than a periond (.) to be consistent with ros2 param parsing & example yaml - adds the correct name to setup.py for test_key_teleop.py test - reduce copy/pasta

  • Contributors: Jeremie Deray

0.3.0 (2019-01-03)

  • Fill in the timestamp of outgoing messages, if applicable.
  • add service example
  • Add option for persistent service, defaulted false
  • Contributors: AndyZe, Jeremie Deray, Bence Magyar

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version foxy-devel
Last Updated 2022-11-23
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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

1.3.0 (2022-11-23)

  • launch: fix deprecated attributes
  • Fix some warnings from tests. In here are some flake8 fixes and fixes to the joy_teleop tests now that some of the error messages have changed.
  • Allow a [value]{.title-ref} type within an axis mapping. Useful for frame data.
  • Add offsets to example yaml
  • add ci & lint
  • joy_teleop: convert current time to message type for timestamping
  • Contributors: AndyZe, Chris Lalancette, Kazunari Tanaka, Marcel Zeilinger, Russ Webber

1.2.1 (2020-10-29)

1.2.0 (2020-10-16)

  • Change the file mode of the python files in joy_teleop. They don\'t need to be executable.
  • Add in Python typing to joy_teleop. This also showed a few bugs.
  • Add a test for service becoming ready.
  • Add in tests for parameter failures.
  • Add a test for debouncing. The test works by having a subscription to the output topic. Every time the subscription is received, we increment a counter. There is also a timer callback that executes every 0.1 seconds, publishing the \'joy\' message. Like other tests, this publication toggles the button on and off to avoid debouncing. Unlike other tests, once we have seen one message come in, we stop toggling and just set it to one all of the time to ensure debouncing works properly.
  • Add in a test for actions.
  • Add in tests for services.
  • Add a test for topic axis mappings.
  • Add in a test for a simple message.
  • Add in joy_teleop common testing tools. These will be used by the rest of the tests.
  • Add in unit tests for get_interface_type.
  • Rename test_pop257 -> test_pep257.
  • Rewrite to use classes instead of maps. This has a number of benefits: 1. I think it is much easier to read; the classes only implement the pieces they are concerned with. 2. Actions and services now automatically reconnect as action servers or service servers come and go. 3. It is easier to write tests for individual functionality. The API to this node stays the same; the parameters and topics that were used before are still honored.

  • Raise errors when parsing configuration fails. This lets the user know that their configuration is wrong much earlier.

  • Get rid of self.config. We never use it outside of the constructor, so just make it a local variable.

  • Rename al_clients -> action_clients.

  • Contributors: Chris Lalancette

1.1.0 (2020-04-21)

  • Add the ability to have deadman axes. (#46) * Add the ability to have deadman axes. Some controllers don\'t have a convenient shoulder trigger button, but do have shoulder \"axes\". Allow the axes to be used for a deadman trigger, assuming they are pressed all the way. Note that I used a dict for the list of axes, as this provides the most convenient way to deal with controllers that use 1.0, -1.0, or 0.0 as the \"far\" end of the axis.

    • Make sure to ignore buttons and axes that don\'t exist.
  • Contributors: Chris Lalancette

1.0.2 (2020-02-10)

  • Avoid halting on action server status checks. (#48)
  • Depend action_tutorials_interfaces (#44)
  • log JoyTeleopException (#41)
  • Contributors: Michel Hidalgo, Yutaka Kondo

1.0.1 (2019-09-18)

  • Fix install rules and dashing changes (#38)

    • fix ament indexing
    • fix package resource files
    • add tk depenndency
    • add check for param index-ability

    * data files are now package agnostic Signed-off-by: Ted Kern <ted.kern@canonical.com>

  • Contributors: Ted Kern

1.0.0 (2019-09-10)

  • ROS2 port (#35)

    • key_teleop pkg format 3
    • port teleop_tools_msgs
    • key_teleop catch KeyboardInterrupt
    • port mouse_teleop
    • add key_teleop.yaml
    • add xmllint test
    • fix xmllint tests
    • remove useless class KeyTeleop
    • Fixes for dynamic topic joy publishers

    - match_command() now compares button array length to the max deadman button index (apples to apples) - match_command function now checks if any of the deadman buttons are depressed before returning a match - properly handle a std_msgs/msg/Empty \'message_value\' by not attempting to access its value - utilizes iter-items to correctly index into the config dict for \'axis_mappings\'\'s \'axis\' and \'button\' values - set_member() now splits according to a dash (-) rather than a periond (.) to be consistent with ros2 param parsing & example yaml - adds the correct name to setup.py for test_key_teleop.py test - reduce copy/pasta

  • Contributors: Jeremie Deray

0.3.0 (2019-01-03)

  • Fill in the timestamp of outgoing messages, if applicable.
  • add service example
  • Add option for persistent service, defaulted false
  • Contributors: AndyZe, Jeremie Deray, Bence Magyar

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version foxy-devel
Last Updated 2022-11-23
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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

1.3.0 (2022-11-23)

  • launch: fix deprecated attributes
  • Fix some warnings from tests. In here are some flake8 fixes and fixes to the joy_teleop tests now that some of the error messages have changed.
  • Allow a [value]{.title-ref} type within an axis mapping. Useful for frame data.
  • Add offsets to example yaml
  • add ci & lint
  • joy_teleop: convert current time to message type for timestamping
  • Contributors: AndyZe, Chris Lalancette, Kazunari Tanaka, Marcel Zeilinger, Russ Webber

1.2.1 (2020-10-29)

1.2.0 (2020-10-16)

  • Change the file mode of the python files in joy_teleop. They don\'t need to be executable.
  • Add in Python typing to joy_teleop. This also showed a few bugs.
  • Add a test for service becoming ready.
  • Add in tests for parameter failures.
  • Add a test for debouncing. The test works by having a subscription to the output topic. Every time the subscription is received, we increment a counter. There is also a timer callback that executes every 0.1 seconds, publishing the \'joy\' message. Like other tests, this publication toggles the button on and off to avoid debouncing. Unlike other tests, once we have seen one message come in, we stop toggling and just set it to one all of the time to ensure debouncing works properly.
  • Add in a test for actions.
  • Add in tests for services.
  • Add a test for topic axis mappings.
  • Add in a test for a simple message.
  • Add in joy_teleop common testing tools. These will be used by the rest of the tests.
  • Add in unit tests for get_interface_type.
  • Rename test_pop257 -> test_pep257.
  • Rewrite to use classes instead of maps. This has a number of benefits: 1. I think it is much easier to read; the classes only implement the pieces they are concerned with. 2. Actions and services now automatically reconnect as action servers or service servers come and go. 3. It is easier to write tests for individual functionality. The API to this node stays the same; the parameters and topics that were used before are still honored.

  • Raise errors when parsing configuration fails. This lets the user know that their configuration is wrong much earlier.

  • Get rid of self.config. We never use it outside of the constructor, so just make it a local variable.

  • Rename al_clients -> action_clients.

  • Contributors: Chris Lalancette

1.1.0 (2020-04-21)

  • Add the ability to have deadman axes. (#46) * Add the ability to have deadman axes. Some controllers don\'t have a convenient shoulder trigger button, but do have shoulder \"axes\". Allow the axes to be used for a deadman trigger, assuming they are pressed all the way. Note that I used a dict for the list of axes, as this provides the most convenient way to deal with controllers that use 1.0, -1.0, or 0.0 as the \"far\" end of the axis.

    • Make sure to ignore buttons and axes that don\'t exist.
  • Contributors: Chris Lalancette

1.0.2 (2020-02-10)

  • Avoid halting on action server status checks. (#48)
  • Depend action_tutorials_interfaces (#44)
  • log JoyTeleopException (#41)
  • Contributors: Michel Hidalgo, Yutaka Kondo

1.0.1 (2019-09-18)

  • Fix install rules and dashing changes (#38)

    • fix ament indexing
    • fix package resource files
    • add tk depenndency
    • add check for param index-ability

    * data files are now package agnostic Signed-off-by: Ted Kern <ted.kern@canonical.com>

  • Contributors: Ted Kern

1.0.0 (2019-09-10)

  • ROS2 port (#35)

    • key_teleop pkg format 3
    • port teleop_tools_msgs
    • key_teleop catch KeyboardInterrupt
    • port mouse_teleop
    • add key_teleop.yaml
    • add xmllint test
    • fix xmllint tests
    • remove useless class KeyTeleop
    • Fixes for dynamic topic joy publishers

    - match_command() now compares button array length to the max deadman button index (apples to apples) - match_command function now checks if any of the deadman buttons are depressed before returning a match - properly handle a std_msgs/msg/Empty \'message_value\' by not attempting to access its value - utilizes iter-items to correctly index into the config dict for \'axis_mappings\'\'s \'axis\' and \'button\' values - set_member() now splits according to a dash (-) rather than a periond (.) to be consistent with ros2 param parsing & example yaml - adds the correct name to setup.py for test_key_teleop.py test - reduce copy/pasta

  • Contributors: Jeremie Deray

0.3.0 (2019-01-03)

  • Fill in the timestamp of outgoing messages, if applicable.
  • add service example
  • Add option for persistent service, defaulted false
  • Contributors: AndyZe, Jeremie Deray, Bence Magyar

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

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

Package Description

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

0.5.0 (2023-05-04)

  • When allow_multiple_commands is True, Use AND operation with match_command instead of OR operation (#82)
    • Use AND operation with match_command instead of OR operation
    • added allow_multiple_commands parameter to have some control over the joystick combinations
  • Contributors: Sai Kishor Kothakota

0.4.1 (2021-05-23)

  • Fix missing exec_depend rosservice
  • Contributors: Jeremie Deray

0.4.0 (2020-06-04)

  • Fix iteritems and dependency in python3
  • Bump CMake version to avoid CMP0048
  • Fix install of python scripts for Noetic
  • Python3 compatibility for noetic (#52)
  • Contributors: Bence Magyar, Tim Clephas

0.3.1 (2020-02-10)

  • fix python3 compatibility (#42)
  • Contributors: Yutaka Kondo

0.3.0 (2019-01-03)

  • Fill in the timestamp of outgoing messages, if applicable.
  • add service example
  • Add option for persistent service, defaulted false
  • Contributors: AndyZe, Jeremie Deray, Bence Magyar

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

  • launch/example.launch
      • cmd_vel [default: input_joy/cmd_vel]
      • teleop_config [default: $(find joy_teleop)/config/joy_teleop_example.yaml]

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version dashing-devel
Last Updated 2020-04-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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

1.1.0 (2020-04-21)

  • Add the ability to have deadman axes. (#46) * Add the ability to have deadman axes. Some controllers don\'t have a convenient shoulder trigger button, but do have shoulder \"axes\". Allow the axes to be used for a deadman trigger, assuming they are pressed all the way. Note that I used a dict for the list of axes, as this provides the most convenient way to deal with controllers that use 1.0, -1.0, or 0.0 as the \"far\" end of the axis.

    • Make sure to ignore buttons and axes that don\'t exist.
  • Contributors: Chris Lalancette

1.0.2 (2020-02-10)

  • Avoid halting on action server status checks. (#48)
  • Depend action_tutorials_interfaces (#44)
  • log JoyTeleopException (#41)
  • Contributors: Michel Hidalgo, Yutaka Kondo

1.0.1 (2019-09-18)

  • Fix install rules and dashing changes (#38)

    • fix ament indexing
    • fix package resource files
    • add tk depenndency
    • add check for param index-ability

    * data files are now package agnostic Signed-off-by: Ted Kern <ted.kern@canonical.com>

  • Contributors: Ted Kern

1.0.0 (2019-09-10)

  • ROS2 port (#35)

    • key_teleop pkg format 3
    • port teleop_tools_msgs
    • key_teleop catch KeyboardInterrupt
    • port mouse_teleop
    • add key_teleop.yaml
    • add xmllint test
    • fix xmllint tests
    • remove useless class KeyTeleop
    • Fixes for dynamic topic joy publishers

    - match_command() now compares button array length to the max deadman button index (apples to apples) - match_command function now checks if any of the deadman buttons are depressed before returning a match - properly handle a std_msgs/msg/Empty \'message_value\' by not attempting to access its value - utilizes iter-items to correctly index into the config dict for \'axis_mappings\'\'s \'axis\' and \'button\' values - set_member() now splits according to a dash (-) rather than a periond (.) to be consistent with ros2 param parsing & example yaml - adds the correct name to setup.py for test_key_teleop.py test - reduce copy/pasta

  • Contributors: Jeremie Deray

0.3.0 (2019-01-03)

  • Fill in the timestamp of outgoing messages, if applicable.
  • add service example
  • Add option for persistent service, defaulted false
  • Contributors: AndyZe, Jeremie Deray, Bence Magyar

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version dashing-devel
Last Updated 2020-04-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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

1.1.0 (2020-04-21)

  • Add the ability to have deadman axes. (#46) * Add the ability to have deadman axes. Some controllers don\'t have a convenient shoulder trigger button, but do have shoulder \"axes\". Allow the axes to be used for a deadman trigger, assuming they are pressed all the way. Note that I used a dict for the list of axes, as this provides the most convenient way to deal with controllers that use 1.0, -1.0, or 0.0 as the \"far\" end of the axis.

    • Make sure to ignore buttons and axes that don\'t exist.
  • Contributors: Chris Lalancette

1.0.2 (2020-02-10)

  • Avoid halting on action server status checks. (#48)
  • Depend action_tutorials_interfaces (#44)
  • log JoyTeleopException (#41)
  • Contributors: Michel Hidalgo, Yutaka Kondo

1.0.1 (2019-09-18)

  • Fix install rules and dashing changes (#38)

    • fix ament indexing
    • fix package resource files
    • add tk depenndency
    • add check for param index-ability

    * data files are now package agnostic Signed-off-by: Ted Kern <ted.kern@canonical.com>

  • Contributors: Ted Kern

1.0.0 (2019-09-10)

  • ROS2 port (#35)

    • key_teleop pkg format 3
    • port teleop_tools_msgs
    • key_teleop catch KeyboardInterrupt
    • port mouse_teleop
    • add key_teleop.yaml
    • add xmllint test
    • fix xmllint tests
    • remove useless class KeyTeleop
    • Fixes for dynamic topic joy publishers

    - match_command() now compares button array length to the max deadman button index (apples to apples) - match_command function now checks if any of the deadman buttons are depressed before returning a match - properly handle a std_msgs/msg/Empty \'message_value\' by not attempting to access its value - utilizes iter-items to correctly index into the config dict for \'axis_mappings\'\'s \'axis\' and \'button\' values - set_member() now splits according to a dash (-) rather than a periond (.) to be consistent with ros2 param parsing & example yaml - adds the correct name to setup.py for test_key_teleop.py test - reduce copy/pasta

  • Contributors: Jeremie Deray

0.3.0 (2019-01-03)

  • Fill in the timestamp of outgoing messages, if applicable.
  • add service example
  • Add option for persistent service, defaulted false
  • Contributors: AndyZe, Jeremie Deray, Bence Magyar

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version foxy-devel
Last Updated 2022-11-23
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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

1.3.0 (2022-11-23)

  • launch: fix deprecated attributes
  • Fix some warnings from tests. In here are some flake8 fixes and fixes to the joy_teleop tests now that some of the error messages have changed.
  • Allow a [value]{.title-ref} type within an axis mapping. Useful for frame data.
  • Add offsets to example yaml
  • add ci & lint
  • joy_teleop: convert current time to message type for timestamping
  • Contributors: AndyZe, Chris Lalancette, Kazunari Tanaka, Marcel Zeilinger, Russ Webber

1.2.1 (2020-10-29)

1.2.0 (2020-10-16)

  • Change the file mode of the python files in joy_teleop. They don\'t need to be executable.
  • Add in Python typing to joy_teleop. This also showed a few bugs.
  • Add a test for service becoming ready.
  • Add in tests for parameter failures.
  • Add a test for debouncing. The test works by having a subscription to the output topic. Every time the subscription is received, we increment a counter. There is also a timer callback that executes every 0.1 seconds, publishing the \'joy\' message. Like other tests, this publication toggles the button on and off to avoid debouncing. Unlike other tests, once we have seen one message come in, we stop toggling and just set it to one all of the time to ensure debouncing works properly.
  • Add in a test for actions.
  • Add in tests for services.
  • Add a test for topic axis mappings.
  • Add in a test for a simple message.
  • Add in joy_teleop common testing tools. These will be used by the rest of the tests.
  • Add in unit tests for get_interface_type.
  • Rename test_pop257 -> test_pep257.
  • Rewrite to use classes instead of maps. This has a number of benefits: 1. I think it is much easier to read; the classes only implement the pieces they are concerned with. 2. Actions and services now automatically reconnect as action servers or service servers come and go. 3. It is easier to write tests for individual functionality. The API to this node stays the same; the parameters and topics that were used before are still honored.

  • Raise errors when parsing configuration fails. This lets the user know that their configuration is wrong much earlier.

  • Get rid of self.config. We never use it outside of the constructor, so just make it a local variable.

  • Rename al_clients -> action_clients.

  • Contributors: Chris Lalancette

1.1.0 (2020-04-21)

  • Add the ability to have deadman axes. (#46) * Add the ability to have deadman axes. Some controllers don\'t have a convenient shoulder trigger button, but do have shoulder \"axes\". Allow the axes to be used for a deadman trigger, assuming they are pressed all the way. Note that I used a dict for the list of axes, as this provides the most convenient way to deal with controllers that use 1.0, -1.0, or 0.0 as the \"far\" end of the axis.

    • Make sure to ignore buttons and axes that don\'t exist.
  • Contributors: Chris Lalancette

1.0.2 (2020-02-10)

  • Avoid halting on action server status checks. (#48)
  • Depend action_tutorials_interfaces (#44)
  • log JoyTeleopException (#41)
  • Contributors: Michel Hidalgo, Yutaka Kondo

1.0.1 (2019-09-18)

  • Fix install rules and dashing changes (#38)

    • fix ament indexing
    • fix package resource files
    • add tk depenndency
    • add check for param index-ability

    * data files are now package agnostic Signed-off-by: Ted Kern <ted.kern@canonical.com>

  • Contributors: Ted Kern

1.0.0 (2019-09-10)

  • ROS2 port (#35)

    • key_teleop pkg format 3
    • port teleop_tools_msgs
    • key_teleop catch KeyboardInterrupt
    • port mouse_teleop
    • add key_teleop.yaml
    • add xmllint test
    • fix xmllint tests
    • remove useless class KeyTeleop
    • Fixes for dynamic topic joy publishers

    - match_command() now compares button array length to the max deadman button index (apples to apples) - match_command function now checks if any of the deadman buttons are depressed before returning a match - properly handle a std_msgs/msg/Empty \'message_value\' by not attempting to access its value - utilizes iter-items to correctly index into the config dict for \'axis_mappings\'\'s \'axis\' and \'button\' values - set_member() now splits according to a dash (-) rather than a periond (.) to be consistent with ros2 param parsing & example yaml - adds the correct name to setup.py for test_key_teleop.py test - reduce copy/pasta

  • Contributors: Jeremie Deray

0.3.0 (2019-01-03)

  • Fill in the timestamp of outgoing messages, if applicable.
  • add service example
  • Add option for persistent service, defaulted false
  • Contributors: AndyZe, Jeremie Deray, Bence Magyar

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version foxy-devel
Last Updated 2022-11-23
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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

1.3.0 (2022-11-23)

  • launch: fix deprecated attributes
  • Fix some warnings from tests. In here are some flake8 fixes and fixes to the joy_teleop tests now that some of the error messages have changed.
  • Allow a [value]{.title-ref} type within an axis mapping. Useful for frame data.
  • Add offsets to example yaml
  • add ci & lint
  • joy_teleop: convert current time to message type for timestamping
  • Contributors: AndyZe, Chris Lalancette, Kazunari Tanaka, Marcel Zeilinger, Russ Webber

1.2.1 (2020-10-29)

1.2.0 (2020-10-16)

  • Change the file mode of the python files in joy_teleop. They don\'t need to be executable.
  • Add in Python typing to joy_teleop. This also showed a few bugs.
  • Add a test for service becoming ready.
  • Add in tests for parameter failures.
  • Add a test for debouncing. The test works by having a subscription to the output topic. Every time the subscription is received, we increment a counter. There is also a timer callback that executes every 0.1 seconds, publishing the \'joy\' message. Like other tests, this publication toggles the button on and off to avoid debouncing. Unlike other tests, once we have seen one message come in, we stop toggling and just set it to one all of the time to ensure debouncing works properly.
  • Add in a test for actions.
  • Add in tests for services.
  • Add a test for topic axis mappings.
  • Add in a test for a simple message.
  • Add in joy_teleop common testing tools. These will be used by the rest of the tests.
  • Add in unit tests for get_interface_type.
  • Rename test_pop257 -> test_pep257.
  • Rewrite to use classes instead of maps. This has a number of benefits: 1. I think it is much easier to read; the classes only implement the pieces they are concerned with. 2. Actions and services now automatically reconnect as action servers or service servers come and go. 3. It is easier to write tests for individual functionality. The API to this node stays the same; the parameters and topics that were used before are still honored.

  • Raise errors when parsing configuration fails. This lets the user know that their configuration is wrong much earlier.

  • Get rid of self.config. We never use it outside of the constructor, so just make it a local variable.

  • Rename al_clients -> action_clients.

  • Contributors: Chris Lalancette

1.1.0 (2020-04-21)

  • Add the ability to have deadman axes. (#46) * Add the ability to have deadman axes. Some controllers don\'t have a convenient shoulder trigger button, but do have shoulder \"axes\". Allow the axes to be used for a deadman trigger, assuming they are pressed all the way. Note that I used a dict for the list of axes, as this provides the most convenient way to deal with controllers that use 1.0, -1.0, or 0.0 as the \"far\" end of the axis.

    • Make sure to ignore buttons and axes that don\'t exist.
  • Contributors: Chris Lalancette

1.0.2 (2020-02-10)

  • Avoid halting on action server status checks. (#48)
  • Depend action_tutorials_interfaces (#44)
  • log JoyTeleopException (#41)
  • Contributors: Michel Hidalgo, Yutaka Kondo

1.0.1 (2019-09-18)

  • Fix install rules and dashing changes (#38)

    • fix ament indexing
    • fix package resource files
    • add tk depenndency
    • add check for param index-ability

    * data files are now package agnostic Signed-off-by: Ted Kern <ted.kern@canonical.com>

  • Contributors: Ted Kern

1.0.0 (2019-09-10)

  • ROS2 port (#35)

    • key_teleop pkg format 3
    • port teleop_tools_msgs
    • key_teleop catch KeyboardInterrupt
    • port mouse_teleop
    • add key_teleop.yaml
    • add xmllint test
    • fix xmllint tests
    • remove useless class KeyTeleop
    • Fixes for dynamic topic joy publishers

    - match_command() now compares button array length to the max deadman button index (apples to apples) - match_command function now checks if any of the deadman buttons are depressed before returning a match - properly handle a std_msgs/msg/Empty \'message_value\' by not attempting to access its value - utilizes iter-items to correctly index into the config dict for \'axis_mappings\'\'s \'axis\' and \'button\' values - set_member() now splits according to a dash (-) rather than a periond (.) to be consistent with ros2 param parsing & example yaml - adds the correct name to setup.py for test_key_teleop.py test - reduce copy/pasta

  • Contributors: Jeremie Deray

0.3.0 (2019-01-03)

  • Fill in the timestamp of outgoing messages, if applicable.
  • add service example
  • Add option for persistent service, defaulted false
  • Contributors: AndyZe, Jeremie Deray, Bence Magyar

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version indigo-devel
Last Updated 2018-04-06
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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

  • launch/example.launch
      • cmd_vel [default: input_joy/cmd_vel]
      • teleop_config [default: $(find joy_teleop)/config/joy_teleop_example.yaml]

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version indigo-devel
Last Updated 2018-04-06
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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

  • launch/example.launch
      • cmd_vel [default: input_joy/cmd_vel]
      • teleop_config [default: $(find joy_teleop)/config/joy_teleop_example.yaml]

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version indigo-devel
Last Updated 2018-04-06
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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

  • launch/example.launch
      • cmd_vel [default: input_joy/cmd_vel]
      • teleop_config [default: $(find joy_teleop)/config/joy_teleop_example.yaml]

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version hydro-devel
Last Updated 2014-11-23
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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros-teleop/teleop_tools.git
VCS Type git
VCS Version indigo-devel
Last Updated 2018-04-06
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

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

  • launch/example.launch
      • cmd_vel [default: input_joy/cmd_vel]
      • teleop_config [default: $(find joy_teleop)/config/joy_teleop_example.yaml]

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange

Package Summary

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

Repository Summary

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

Package Description

A (to be) generic joystick interface to control a robot

Additional Links

No additional links.

Maintainers

  • Bence Magyar

Authors

  • Paul Mathieu

joy_teleop

A configurable node to map joystick controls to robot teleoperation commands

CHANGELOG

Changelog for package joy_teleop

0.4.1 (2021-05-23)

  • Fix missing exec_depend rosservice
  • Contributors: Jeremie Deray

0.4.0 (2020-06-04)

  • Fix iteritems and dependency in python3
  • Bump CMake version to avoid CMP0048
  • Fix install of python scripts for Noetic
  • Python3 compatibility for noetic (#52)
  • Contributors: Bence Magyar, Tim Clephas

0.3.1 (2020-02-10)

  • fix python3 compatibility (#42)
  • Contributors: Yutaka Kondo

0.3.0 (2019-01-03)

  • Fill in the timestamp of outgoing messages, if applicable.
  • add service example
  • Add option for persistent service, defaulted false
  • Contributors: AndyZe, Jeremie Deray, Bence Magyar

0.2.6 (2018-04-06)

  • Support using buttons and axis in the same message
  • Contributors: Tim Clephas

0.2.5 (2017-04-21)

  • Remove duplicate examples, add list ones
  • Contributors: Bence Magyar

0.2.4 (2016-11-30)

  • Replace joy_teleop.fill_msg with genpy.message.fill_message_args
  • Contributors: Stephen Street

0.2.3 (2016-07-18)

  • Add hello publish to example
  • Rename to fix example launch file
  • Added example of feature to config file
  • Added message_value parameter to specify message content on topics
  • PEP8 style stuff
  • Fixes bug when keep asking for increments would make the goal position grow infinitely instead of be of maximum \'current joint position\' + \'increment quantity\'
  • Contributors: Bence Magyar, Sam Pfeiffer, SomeshDaga

0.2.2 (2016-03-24)

  • Add install rules for example files
  • gracefully handle missing joy axes
  • Contributors: Bence Magyar, Kopias Peter

0.2.1 (2016-01-29)

  • Add support for services it is now possible to asynchronously send service requests on button presses
  • Adds queue_size keyword
  • Contributors: Bence Magyar, Nils Berg, Enrique Fernandez

0.2.0 (2015-08-03)

  • Add example for incrementer
  • Update package.xmls
  • Add incrementer_server
  • Contributors: Bence Magyar

0.1.2 (2015-02-15)

  • joy_teleop: fix minor typo
  • Contributors: G.A. vd. Hoorn

0.1.1 (2014-11-17)

  • Change maintainer
  • checks for index out of bounds in buttons list [buttons]{.title-ref} is a list, not a dict Filter out buttons not available
  • Check for b in buttons
  • Check for IndexError
  • joy_teleop: add action server auto-refresh
  • Move everything to joy_teleop subfolder
  • Contributors: Bence Magyar, Enrique Fern

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Launch files

  • launch/example.launch
      • cmd_vel [default: input_joy/cmd_vel]
      • teleop_config [default: $(find joy_teleop)/config/joy_teleop_example.yaml]

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy_teleop at Robotics Stack Exchange