Package Summary

Tags No category tags.
Version 2.3.0
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros2/joystick_drivers.git
VCS Type git
VCS Version ros2
Last Updated 2019-05-20
Dev Status DEVELOPED
Released RELEASED

Package Description

ROS2 driver for a generic Linux joystick. Will contain a MacOS and Windows version later. The joy package contains joy_node, a node that interfaces a generic Linux joystick to ROS2. This node publishes a "Joy" message, which contains the current state of each one of the joystick's buttons and axes.

Additional Links

Maintainers

  • Chris Lalancette

Authors

  • Mikael Arguedas
  • Morgan Quigley
  • Brian Gerkey
  • Kevin Watts
  • Blaise Gassend
  • Jonathan Bohren

ROS Driver for Generic Linux Joysticks

The joy package contains joy_node, a node that interfaces a generic Linux joystick to ROS. This node publishes a "Joy" message, which contains the current state of each one of the joystick's buttons and axes.

Supported Hardware

This node should work with any joystick that is supported by Linux.

Published Topics

Device Selection

There are two parameters controlling which device should be used:

  • ~dev (string, default: "/dev/input/js0")
  • ~dev_name (string, default: "" (empty = disabled))

If ~dev_name is empty, ~dev defines the Linux joystick device from which to read joystick events.

If ~dev_name is defined, the node enumerates all available joysticks, i.e. /dev/input/js*. The first joystick matching ~dev_name is opened. If no joystick matches the desired device name, the device specified by ~dev is used as a fallback.

To get a list of the names of all connected joysticks, an invalid ~dev_name can be specified. For example:

rosrun joy joy_node _dev_name:="*"

The output might look like this:

[ INFO]: Found joystick: ST LIS3LV02DL Accelerometer (/dev/input/js1).
[ INFO]: Found joystick: Microsoft X-Box 360 pad (/dev/input/js0).
[ERROR]: Couldn't find a joystick with name *. Falling back to default device.

Then the node can be started with the device name given in the list. For example:

rosrun joy joy_node _dev_name:="Microsoft X-Box 360 pad"

Advanced Parameters

  • ~deadzone (double, default: 0.05)

    • Amount by which the joystick has to move before it is considered to be off-center. This parameter is specified relative to an axis normalized between -1 and 1. Thus, 0.1 means that the joystick has to move 10% of the way to the edge of an axis's range before that axis will output a non-zero value. Linux does its own deadzone processing, so in many cases this value can be set to zero.
  • ~autorepeat_rate (double, default: 0.0 (disabled))

    • Rate in Hz at which a joystick that has a non-changing state will resend the previously sent message.
  • ~coalesce_interval (double, default: 0.001)

    • Axis events that are received within coalesce_interval (seconds) of each other are sent out in a single ROS message. Since the kernel sends each axis motion as a separate event, coalescing greatly reduces the rate at which messages are sent. This option can also be used to limit the rate of outgoing messages. Button events are always sent out immediately to avoid missing button presses.

Further Information

For further information have a look at the Wiki page.

CHANGELOG

Could not convert RST to MD: No such file or directory - pandoc

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy at answers.ros.org

Package Summary

Tags No category tags.
Version 2.1.0
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros2/joystick_drivers.git
VCS Type git
VCS Version bouncy
Last Updated 2018-06-26
Dev Status DEVELOPED
Released RELEASED

Package Description

ROS2 driver for a generic Linux joystick. Will contain a MacOS and Windows version later. The joy package contains joy_node, a node that interfaces a generic Linux joystick to ROS2. This node publishes a "Joy" message, which contains the current state of each one of the joystick's buttons and axes.

Additional Links

Maintainers

  • Mikael Arguedas

Authors

  • Morgan Quigley
  • Brian Gerkey
  • Kevin Watts
  • Blaise Gassend
  • Jonathan Bohren

ROS Driver for Generic Linux Joysticks

The joy package contains joy_node, a node that interfaces a generic Linux joystick to ROS. This node publishes a "Joy" message, which contains the current state of each one of the joystick's buttons and axes.

Supported Hardware

This node should work with any joystick that is supported by Linux.

Published Topics

Device Selection

There are two parameters controlling which device should be used:

  • ~dev (string, default: "/dev/input/js0")
  • ~dev_name (string, default: "" (empty = disabled))

If ~dev_name is empty, ~dev defines the Linux joystick device from which to read joystick events.

If ~dev_name is defined, the node enumerates all available joysticks, i.e. /dev/input/js*. The first joystick matching ~dev_name is opened. If no joystick matches the desired device name, the device specified by ~dev is used as a fallback.

To get a list of the names of all connected joysticks, an invalid ~dev_name can be specified. For example:

rosrun joy joy_node _dev_name:="*"

The output might look like this:

[ INFO]: Found joystick: ST LIS3LV02DL Accelerometer (/dev/input/js1).
[ INFO]: Found joystick: Microsoft X-Box 360 pad (/dev/input/js0).
[ERROR]: Couldn't find a joystick with name *. Falling back to default device.

Then the node can be started with the device name given in the list. For example:

rosrun joy joy_node _dev_name:="Microsoft X-Box 360 pad"

Advanced Parameters

  • ~deadzone (double, default: 0.05)

    • Amount by which the joystick has to move before it is considered to be off-center. This parameter is specified relative to an axis normalized between -1 and 1. Thus, 0.1 means that the joystick has to move 10% of the way to the edge of an axis's range before that axis will output a non-zero value. Linux does its own deadzone processing, so in many cases this value can be set to zero.
  • ~autorepeat_rate (double, default: 0.0 (disabled))

    • Rate in Hz at which a joystick that has a non-changing state will resend the previously sent message.
  • ~coalesce_interval (double, default: 0.001)

    • Axis events that are received within coalesce_interval (seconds) of each other are sent out in a single ROS message. Since the kernel sends each axis motion as a separate event, coalescing greatly reduces the rate at which messages are sent. This option can also be used to limit the rate of outgoing messages. Button events are always sent out immediately to avoid missing button presses.

Further Information

For further information have a look at the Wiki page.

CHANGELOG

Could not convert RST to MD: No such file or directory - pandoc

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 at answers.ros.org

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros2/joystick_drivers.git
VCS Type git
VCS Version indigo-devel
Last Updated 2017-07-03
Dev Status DEVELOPED
Released UNRELEASED

Package Description

ROS driver for a generic Linux joystick. The joy package contains joy_node, a node that interfaces a generic Linux joystick to ROS. This node publishes a "Joy" message, which contains the current state of each one of the joystick's buttons and axes.

Additional Links

Maintainers

  • Jonathan Bohren

Authors

  • Morgan Quigley
  • Brian Gerkey
  • Kevin Watts
  • Blaise Gassend
README
No README found. No README in repository either.
CHANGELOG

Could not convert RST to MD: No such file or directory - pandoc

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

System Dependencies

Name
joystick

Dependant Packages

Name Repo Deps
bwi_joystick_teleop github-utexas-bwi-bwi_common
cob_bringup github-ipa320-cob_robots
demo_pioneer github-lagadic-demo_pioneer
grizzly_teleop github-g-grizzly
hector_quadrotor_teleop github-tu-darmstadt-ros-pkg-hector_quadrotor
joystick_drivers github-ros-drivers-joystick_drivers
joystick_drivers github-ros2-joystick_drivers
jsk_baxter_startup github-jsk-ros-pkg-jsk_robot
jsk_fetch_startup github-jsk-ros-pkg-jsk_robot
jsk_pepper_startup github-jsk-ros-pkg-jsk_robot
jsk_pr2_startup github-jsk-ros-pkg-jsk_robot
maggie_teleop github-UC3MSocialRobots-maggie_navigation
maxwell_defs github-mikeferguson-maxwell
nao_teleop github-ros-naoqi-nao_extras
pmb2_bringup github-pal-robotics-pmb2_robot
pr2_bringup github-PR2-pr2_robot
pr2_bringup github-pr2-pr2_robot
reemc_bringup github-pal-robotics-reemc_robot
turtlebot_teleop github-turtlebot-turtlebot
yocs_joyop github-yujinrobot-yujin_ocs
bebop_tools github-AutonomyLab-bebop_autonomy
ca_tools github-AutonomyLab-create_autonomy
rotors_gazebo github-ethz-asl-rotors_simulator
teleop_twist_joy github-ros-teleop-teleop_twist_joy
teleop_twist_joy github-ros2-teleop_twist_joy
carl_teleop github-GT-RAIL-carl_bot
cirkit_unit03_driver github-CIR-KIT-Unit03-cirkit_unit03_robot
dbw_fca_joystick_demo bitbucket-DataspeedInc-dbw_fca_ros
dbw_mkz_joystick_demo bitbucket-dataspeedinc-dbw_mkz_ros
husky_control github-husky-husky
icart_mini_driver github-open-rdc-icart_mini
innok_heros_control github-innokrobotics-innok_heros_control
jackal_control github-jackal-jackal
gazebo_drive_simulator github-jsk-ros-pkg-jsk_demos
tra1_moveit_config github-tork-a-minas
mrp2_control github-milvusrobotics-mrp2_common
mrp2_bringup github-milvusrobotics-mrp2_robot
dbw_pacifica_joystick_demo github-NewEagleRaptor-pacifica-dbw-ros
dbw_pacifica_joystick_speed_demo github-NewEagleRaptor-pacifica-dbw-ros
pacmod_game_control github-astuff-pacmod_game_control
puma_motor_driver github-clearpathrobotics-puma_motor_driver
ridgeback_control github-ridgeback-ridgeback
roch_teleop github-SawYer-Robotics-roch
roch_control github-SawYer-Robotics-roch_robot
roomblock_bringup github-tork-a-roomblock
safe_teleop_pr2 github-SharedAutonomyToolkit-shared_autonomy_manipulation
safe_teleop_stage github-SharedAutonomyToolkit-shared_autonomy_manipulation
spur_bringup github-tork-a-spur
warthog_control github-warthog-cpr-warthog
jog_arm github-UTNuclearRoboticsPublic-jog_arm
magni_teleop github-UbiquityRobotics-magni_robot
svenzva_joy github-SvenzvaRobotics-svenzva_ros
talos_bringup github-pal-robotics-talos_robot
fetch_bringup github-fetchrobotics-fetch_robots
freight_bringup github-fetchrobotics-fetch_robots

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy at answers.ros.org

Package Summary

Tags No category tags.
Version 2.0.0
License BSD
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/ros2/joystick_drivers.git
VCS Type git
VCS Version ardent
Last Updated 2017-12-08
Dev Status DEVELOPED
Released RELEASED

Package Description

ROS2 driver for a generic Linux joystick. Will contain a MacOS and Windows version later. The joy package contains joy_node, a node that interfaces a generic Linux joystick to ROS2. This node publishes a "Joy" message, which contains the current state of each one of the joystick's buttons and axes.

Additional Links

Maintainers

  • Mikael Arguedas

Authors

  • Morgan Quigley
  • Brian Gerkey
  • Kevin Watts
  • Blaise Gassend
  • Jonathan Bohren
README
No README found. No README in repository either.
CHANGELOG

Could not convert RST to MD: No such file or directory - pandoc

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 at answers.ros.org

Package Summary

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

Repository Summary

Checkout URI https://github.com/ros2/joystick_drivers.git
VCS Type git
VCS Version hydro-devel
Last Updated 2014-07-01
Dev Status DEVELOPED
Released UNRELEASED

Package Description

ROS driver for a generic Linux joystick. The joy package contains joy_node, a node that interfaces a generic Linux joystick to ROS. This node publishes a "Joy" message, which contains the current state of each one of the joystick's buttons and axes.

Additional Links

Maintainers

  • Jonathan Bohren

Authors

  • Morgan Quigley
  • Brian Gerkey
  • Kevin Watts
  • Blaise Gassend
README
No README found. No README in repository either.
CHANGELOG
No CHANGELOG found.

Wiki Tutorials

See ROS Wiki Tutorials for more details.

Source Tutorials

Not currently indexed.

Package Dependencies

System Dependencies

Name
joystick

Dependant Packages

Name Repo Deps
ackermann_hks github-jack-oquin-ackermann_teleop
cob_bringup github-ipa320-cob_robots
corobot_joystick github-morgancormier-corobot
corobot_pantilt github-morgancormier-corobot
demo_pioneer github-lagadic-demo_pioneer
grizzly_teleop github-g-grizzly
hector_quadrotor_teleop github-tu-darmstadt-ros-pkg-hector_quadrotor
husky_teleop github-husky-husky_teleop
joystick_drivers github-ros-drivers-joystick_drivers
joystick_drivers github-ros2-joystick_drivers
jsk_baxter_startup github-jsk-ros-pkg-jsk_robot
jsk_fetch_startup github-jsk-ros-pkg-jsk_robot
jsk_pepper_startup github-jsk-ros-pkg-jsk_robot
jsk_pr2_startup github-jsk-ros-pkg-jsk_robot
kingfisher_teleop github-kf-kingfisher
maggie_teleop github-UC3MSocialRobots-maggie_navigation
nao_teleop github-ros-naoqi-nao_extras
pmb2_bringup github-pal-robotics-pmb2_robot
pr2_bringup github-PR2-pr2_robot
pr2_bringup github-pr2-pr2_robot
reemc_bringup github-pal-robotics-reemc_robot
rovio_ctrl github-WPI-RAIL-rovio
b21_teleop github-DLu-rwi_ros
tedusar_cartesian_arm_teleop github-RoboCupTeam-TUGraz-tedusar_manipulation
turtlebot_teleop github-turtlebot-turtlebot_apps
universal_teleop github-lrse-ros-universal-teleop
wheeled_robin_teleop github-robinJKU-wheeled_robin_apps
schunk_lwa4p github-ipa320-schunk_robots
schunk_lwa4p_extended github-ipa320-schunk_robots
safe_teleop_pr2 github-SharedAutonomyToolkit-shared_autonomy_manipulation
safe_teleop_stage github-SharedAutonomyToolkit-shared_autonomy_manipulation
uuv_vehicle_teleop github-uuvsimulator-uuv_simulator

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged joy at answers.ros.org