All Projects → naoki-mizuno → Ds4_driver

naoki-mizuno / Ds4_driver

Licence: mit
DualShock 4 driver for ROS

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Ds4 driver

Create robot
ROS driver for iRobot Create 1 and 2.
Stars: ✭ 137 (+389.29%)
Mutual labels:  ros, driver
Grl
Robotics tools in C++11. Implements soft real time arm drivers for Kuka LBR iiwa plus V-REP, ROS, Constrained Optimization based planning, Hand Eye Calibration and Inverse Kinematics integration.
Stars: ✭ 105 (+275%)
Mutual labels:  ros, driver
roboteq control
⚙️ Driver for Roboteq devices using ros_control
Stars: ✭ 32 (+14.29%)
Mutual labels:  driver, ros
Robotiq
Robotiq packages (http://wiki.ros.org/robotiq)
Stars: ✭ 110 (+292.86%)
Mutual labels:  ros, driver
Ros canopen
CANopen driver framework for ROS (http://wiki.ros.org/ros_canopen)
Stars: ✭ 178 (+535.71%)
Mutual labels:  ros, driver
spinnaker sdk camera driver
Point Grey (FLIR) Spinnaker based camera driver (Blackfly S etc.)
Stars: ✭ 106 (+278.57%)
Mutual labels:  driver, ros
ros-tritech-micron
🔊 Tritech Micron SONAR ROS driver
Stars: ✭ 19 (-32.14%)
Mutual labels:  driver, ros
Yubihsm Go
A Go client for the yubihsm2 binary protocol and connector service
Stars: ✭ 19 (-32.14%)
Mutual labels:  driver
Tianbot racecar
DISCONTINUED - MIGRATED TO TIANRACER - A Low cost Autonomous Driving Car Educational and Competition Kit
Stars: ✭ 26 (-7.14%)
Mutual labels:  ros
Vsphere Modules
This is my Module Collection for VMware vSphere
Stars: ✭ 18 (-35.71%)
Mutual labels:  driver
Fourth robot pkg
4号機(KIT-C4)用リポジトリ
Stars: ✭ 7 (-75%)
Mutual labels:  ros
Upboard ros
ROS nodes for upboard usage
Stars: ✭ 22 (-21.43%)
Mutual labels:  ros
Tabletdriver
TabletDriver Download: http://hwk.fi/TabletDriver/TabletDriverV0.2.3.zip
Stars: ✭ 936 (+3242.86%)
Mutual labels:  driver
Node Ntfs
Windows NT File System (NTFS) file system driver
Stars: ✭ 18 (-35.71%)
Mutual labels:  driver
Cycle Idb
A cycle driver for IndexedDB.
Stars: ✭ 12 (-57.14%)
Mutual labels:  driver
Ros Teensy
🚧 Extension to build code for the teensy boards from catkin
Stars: ✭ 16 (-42.86%)
Mutual labels:  ros
Adfilter
This is a ad filter software using dns based on tdifw
Stars: ✭ 15 (-46.43%)
Mutual labels:  driver
Ros Academy For Beginners
中国大学MOOC《机器人操作系统入门》代码示例 ROS tutorial
Stars: ✭ 861 (+2975%)
Mutual labels:  ros
Hyperplatform
Intel VT-x based hypervisor aiming to provide a thin VM-exit filtering platform on Windows.
Stars: ✭ 925 (+3203.57%)
Mutual labels:  driver
Quickmcl
QuickMCL - Monte Carlo localisation for ROS
Stars: ✭ 24 (-14.29%)
Mutual labels:  ros

ds4_driver

Language grade: Python

DualShock 4 driver for ROS.

Features

  • Get information such as IMU, battery, and touchpad from your DualShock 4.
  • Use feedback such as rumble, LED color, and LED flash via ROS topics.
  • Connect to your controller via Bluetooth.
  • Utility node included to publish velocity commands from inputs

Installation and Usage

This driver depends on ds4drv. Some features of this driver depend on pull requests have not yet been merged upstream. Until they are merged, use naoki-mizuno/ds4drv (devel branch).

$ git clone https://github.com/naoki-mizuno/ds4drv --branch devel
$ cd ds4drv
$ mkdir -p ~/.local/lib/python3.8/site-packages
$ python3 setup.py install --prefix ~/.local
$ sudo cp udev/50-ds4drv.rules /etc/udev/rules.d/
$ sudo udevadm control --reload-rules
$ sudo udevadm trigger

Compile and source this package just like any other ROS package. To run,

$ roslaunch ds4_driver ds4_driver.launch
# Or
$ rosrun ds4_driver ds4_driver_node.py

Disable touchpad input device

Note: You can skip this section if you use the forked version of ds4drv (i.e. naoki-mizuno/ds4drv) because the following line is included in the udev rules by default.

By default the touchpad of the DualShock 4 is recognized as an input device. Because of this, the mouse moves to the location on screen that corresponds to the location touched, making it very hard to track the mouse cursor (and worse, it automatically clicks at that location). If you want to prevent the touchpad from being recognized as an input device, add the following to the udev rules and run the udevadm commands (you will still be able to use the touchpad from this driver):

SUBSYSTEM=="input", ATTRS{name}=="*Wireless Controller Touchpad", RUN+="/bin/rm %E{DEVNAME}", ENV{ID_INPUT_JOYSTICK}=""

Demonstration

Get a glimpse of some of the features of ds4_driver including touchpad, rumble, and LED control:

$ roslaunch ds4_driver demo.launch

Moving the left/right stick controls the rumble. Sliding left and right on the touchpad while pressing circle, triangle, cross buttons controls the brightness of the red, green, blue LED, respectively (you can tell from the color of the button). Pressing the PS button triggers the flashing of the LED.

ds4_driver_node.py

This is the main node that interacts with DualShock 4.

Parameters

  • ~device_addr: hardware address of the device. If unspecified, will use the first device found.
  • ~backend (default: hidraw): what backend to use to connect to the device via Bluetooth. bluetooth is only there for legacy support and has not been tested. Refer to the docs in ds4drv for details.
  • ~use_standard_msgs (default: false): use ROS-standard messages such as sensor_msgs/Joy.
  • ~autorepeat_rate (default: 0 (disabled)): rate in Hz at which a joystick that has a non-changing state will resend the previously sent message. This parameter is only effective when use_standard_msgs is true.
  • ~deadzone (default: 0.1): amount by which the joystick has to move before it is considered to be off-center.
  • ~frame_id: (default: ds4): frame ID to be used for the messages.
  • ~imu_frame_id (default: ds4_imu): frame ID to be used for the IMU messages.

Topics

Published

  • /status (ds4_driver/Status): current state of the device.

Subscribed

  • /set_feedback (ds4_driver/Feedback): feedback for the device such as LED color, rumble, and LED flash.

Note: To disable flash, send message with set_led_flash: true and led_flash_off: 0.

Topics (when use_standard_msgs is true)

Published

  • /raw_report (ds4_driver/Report): raw, uninterpreted report that the device sends.
  • /battery (sensor_msgs/BatteryState): battery state of the device.
  • /joy (sensor_msgs/Joy): joypad state.
  • /imu (sensor_msgs/Imu): IMU state.

Subscribed

  • /set_feedback (sensor_msgs/JoyFeedbackArray): feedback for the device.

ds4_twist_node.py

A node to convert joypad inputs to velocity commands is included in this package. This node is something similar to teleop_twist_joy but is specifically for a DualShock 4.

Parameters

  • ~stamped (default: false): whether to publish Twist or TwistStamped for the output velocity command. For robots such as TurtleBot, Husky, and PR2 /cmd_vel is not stamped (i.e. Twist is used) but stamped velocity commands may be required for some applications.
  • ~inputs: what buttons and axes to use for the value of each velocity vector. Expressions can be used to combine values of multiple keys (see config/twist_6dof.yaml for examples).
  • ~scales: scaling factor for each velocity vector.

Topics

Published

  • /cmd_vel (geometry_msgs/Twist or geometry_msgs/TwistStamped): velocity command.

Subscribed

  • /status (ds4_driver/Status): joypad state.

License

MIT

Author

Naoki Mizuno ([email protected])

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].