Skip to content

nmssilva/kinova-ros

 
 

Repository files navigation

Disclaimer: This fork was made just to add small changes and will not have a purpose to add a pull-request or to add updates to this project. I needed this package for a project and some updates in this repository kept giving me errors. The changes I've made cleared those errors for me and I'll be using it like this for my work.

Table of Contents

Important

kinova-driver release 1.2.1.

For quicker bug-fixes and updates a beta version of the branch has been added. Use this if you would like to use the latest code. To contribute fixes please add pull requests to this beta branch.

The previous ROS release, which mainly developed for jaco arm will be named as jaco-ros and the previous master branch is renamed as jaco-ros-master branch. Users can keep both jaco-ros and new release kinova-ros as two parallel stacks. However, further updates and support will only be available on "kinova-ros".

=======

New in release 1.2.1

A few bug fixes:

Specific to 7 dof robot:

  • PID controller parameters for the 7 dof robot with spherical wrist (before, the Gazebo model was unstable when launched)
  • addition of an is7dof argument in kinova_gazebo/launch/robot_launch.launch and kinova_control/launch/kinova_control.launch to load joint_7_position_controller in addition to other position_controllers when launching the gazebo model with use_trajectory_controller set to false and a 7 dof robot. This argument has to be set to true for a 7 dof robot.
  • correction in kinova_control/launch/j2s7s300.perspective (rqt tool was publishing to wrong topic)

Specific to MICO robot:

  • correction in kinova_control/launch/m1n6s200.perspective (rqt tool was publishing to wrong topic)

For all robots:

  • fix in home_arm service (before, was not working when robot was connected through Ethernet)
  • commented out the COM parameters all set to zero in kinova_bringup/launch/config/robot_parameters.yaml, or else the robot does not compensate gravity accurately when switched to admittance or torque mode. These COM parameters can be commented out if the user wants to change the default COM parameters, but by default, we take for granted that the user wants to use the parameters already implemented in the robot.
  • change the order conditions are checked in the kinova_joint_angles_action.cpp, kinova_tool_pose_action.cpp and kinova_fingers_action.cpp to ensure that the robot does not accept new goals after having been stopped (emergency stop). See issue #92 for more details.

New in release 1.2.0

  • Gazebo support
  • MoveIt! support
  • Restructured URDF files
  • Support for 7 dof robot
  • Support for Ethernet
  • Torque control through publisher/subscriber
  • Force control through publisher/subscriber
  • Torque control parameters
  • Speed limit for actionlib Cartesian/Joint control
  • Parameterized base_frame for tf_generator
  • Finger models are now updated in RViz
  • Ring models added to URDF
  • New demo file - gravity_compensated_mode.py
  • Test/demo file - TestSrv.py
  • New services
    • SetTorqueControlParameters
    • SetZerotorque
    • SetNullSpaceModeState
    • AddPoseToCartesianTrajectory
    • ClearTrajectories
    • SetTorqueControlMode

Kinova-ROS

The kinova-ros stack provides a ROS interface for the Kinova Robotics JACO, JACO2 and MICO robotic manipulator arms, and it is built to support further kinova products as well. Besides wide support of Kinova products, there are many bug fixes, improvements and new features as well. The stack is developed above the Kinova C++ API functions, which communicate with the DSP inside robot base.

Supported versions

The recommended configuration is ROS Indigo with 64 bit Ubuntu 14.04.

The package may work with other configurations as well, but it has only been tested for the one recommended above.

Gazebo

New in release 1.2.0

The wiki page for Gazebo is available here

MoveIt!

New in release 1.2.0

The wiki page for MoveIt! is available here

file system

  • kinova_bringup: launch file to start kinova_driver and apply some configurations

  • kinova_driver: most essential files to run kinova-ros stack. Under the include folder, Kinova C++ API headers are defined in ../indlude/kinova, and ROS package header files are in kinova_driver folder. kinova_api source file is a wrap of Kinova C++ API, and kinova_comm builds up the fundamental functions. Some advanced accesses regarding to force/torque control are only provided in kinova_api. Most parameters and topics are created in kinova_arm. A general architecture from low level up could be: DSP --> communicate --> Kinova C++ API --> wrapped --> kinova_api --> kinova_comm --> {kinova_arm; kinova_fingers_action; kinova_joint_angles_action; ...} --> kinova_arm_driver. It is not recommended to modify kinova_comm and any level below it.

  • kinova_demo: python scripts for actionlibs in joint space and cartesian space.

  • kinova_msgs: all the messages, servers and actionlib format are defined here.

  • kinova_description: robot urdf models and meshes are stored here. display_kinova_robot.launch can be run without having a robot.

  • kinova_docs: kinova_comm reference html files generated by doxygen. The comments are based on the reference of Kinova C++ API, and some additional information is provided. The documents of Kinova C++ API are automatically installed while installing Kinova SDK from the Kinova website "http://www.kinovarobotics.com/service-robotics/products/software/"

Installation

To make kinova-ros part of your workspace, follow these steps (assuming your workspace is setup following the standard conventions):

cd ~/catkin_ws/src
git clone https://github.com/Kinovarobotics/kinova-ros.git kinova-ros
cd ~/catkin_ws
catkin_make

To access the arm via usb copy the udev rule file 10-kinova-arm.rules from ~/catkin_ws/src/kinova-ros/kinova_driver/udev to /etc/udev/rules.d/:

sudo cp kinova_driver/udev/10-kinova-arm.rules /etc/udev/rules.d/

How to use the stack

Launch driver

kinova_robot.launch in kinova_bringup folder launches the essential drivers and configurations for kinova robots. kinova_robot.launch has three arguments:

kinova_robotType specifies which robot type is used. For better supporting wider range of robot configurations, robot type is defined by a char[8], in the format of: [{j|m|r|c}{1|2}{s|n}{4|6|7}{s|a}{2|3}{0}{0}].

  • Robot category {j|m|r|c} refers to jaco, mico, roco and customized
  • version is {1|2} for now
  • wrist type {s|n} can be spherical or non-spherical
  • Degree of Freedom is possible to be {4|6|7}
  • robot mode {s|a} can be in service or assistive
  • robot hand {2|3} may equipped with 2 fingers or 3 fingers gripper.
  • The last two positions are undifined and reserved for further features.

eg: j2n6s300 (default value) refers to jaco v2 6DOF service 3 fingers. Please be aware that not all options are valided for different robot types.

new in release 1.2.0

To avoid redundancy urdf for assistive models has been deleted. Please use the service 's' option instead. For Mico 1 and 2 use the tag 'm1' for both. For Jaco 1 and 2 use the tag 'j2' for both.

kinova_robotName and kinova_robotSerial

new in release 1.2.0

To allow multiple robots under a ros master, kinova_robotName and kinova_robotSerial were added. For applications like moveIt! set kinova_robotName to your prefix for the robot in the URDF. For example you can launch two jaco robots by using the following -

roslaunch kinova_bringup kinova_robot.launch kinova_robotType:=j2n6s300 kinova_robotName:=left kinova_robotSerial:=PJ00000001030703130
roslaunch kinova_bringup kinova_robot.launch kinova_robotType:=j2n6s300 kinova_robotName:=right kinova_robotSerial:=PJ00000001030703133

These parameters are optional and can be dropped off when only one robot is connected.

use_urdf specifies whether the kinematic solution is provided by the URDF model. This is recommended and is the default option.

When use_urdf:=true (default value), the kinematic solution is automatically solved by the URDF model. The robot can be virtually presented in Rviz and the frames in Rviz are located at each of the joints. To visulize the robot in Rviz, run $ rosrun rviz rviz, and select root as the world frame. The robot model will synchronize the motion with the real robot.

If use_urdf:=false, the kinematic solution is the same as the DSP code inside the robot. Node kinova_tf_updater will be activated to publish frames, and the frames are defined according the classic D-H convention(frame may not located at joints). Even you are not able to visualize the robot properly in Rviz, you would be able to observe the D-H frames in Rviz.

eg: roslaunch kinova_bringup kinova_robot.launch kinova_robotType:=m1n4s200 use_urdf:=true

If the robot is not able to move after boot, please try to home the arm by either pressing home button on the joystick or calling rosservice in the ROS service commands below.

Joint position control

Joint position control can be realized by calling KinovaComm::setJointAngles() in customized node, or you may simply call the node joints_action_client.py in the kinova_demo package. Help information is availabe with -h option. The joint position can be commanded by {degree | radian}, relative or absolute value by option -r. The following code will drive the 4th joint of a 4DOF mico robot to rotate +10 degree (not to 10 degree), and print additional information about the joint position.

eg: rosrun kinova_demo joints_action_client.py -v -r m1n4s200 degree -- 0 0 0 10

Joint position can be observed by echoing two topics: /'${kinova_robotType}_driver'/out/joint_angles (in degree) and /'${kinova_robotType}_driver'/out/state/position (in radians including finger information)

eg: rostopic echo -c /m1n4s200_driver/out/joint_state will print out joint names, velocity and effort information. However, the effort is a place holder for further verstion.

Another way to control joint position is to use interactive markers in Rviz. Please follow the steps below to active interactive control:

  • launch the drivers: roslaunch kinova_bringup kinova_robot.launch kinova_robotType:=m1n4s200

  • start the node of interactive conrol: rosrun kinova_driver kinova_interactive_control m1n4s200

  • open Rviz: rosrun rviz rviz

  • On left plane of Rviz, Add InteractiveMarkers, click on the right of Updated Topic of the added interactive marker, and select the topic /m1n4s200_interactive_control_Joint/update

  • Now a ring should appear at each joint location, and you can move the robot by dragging the rings.

Cartesian position control

Cartesian position control can be realized by calling KinovaComm::setCartesianPosition() in customized node. Alternatively, you may simply call the node pose_action_client.py in the kinova_demo package. Help information is availabe with the -h option. The unit of position command can be specified by {mq | mdeg | mrad}, which refers to meter&Quaternion, meter&degree and meter&radian. The unit of position is always meter, and the unit of orientation is different. Degree and radian are in relation to Euler Angles in XYZ order. Please be aware that the length of parameters are different when using Quaternion and Euler Angles. With the option -v on, positions in other unit formats are printed for convenience. The following code will drive a mico robot to move along +x axis for 1cm and rotate the hand for +10 degree along hand axis. The last second 10 will be ignored since a 4DOF robot cannot rotate along the y axis.

eg: rosrun kinova_demo pose_action_client.py -v -r m1n4s200 mdeg -- 0.01 0 0 0 10 10

The Cartesian coordinate of robot root frame is defined by the following rules:

  • origin is the intersection point of the bottom plane of the base and cylinder center line.
  • +x axis is directing to the left when facing the base panel (where power switch and cable socket locate).
  • +y axis is towards to user when facing the base panel.
  • +z axis is upwards when robot is standing on a flat surface.

The current Cartesian position is published via topic: /'${kinova_robotType}_driver'/out/tool_pose In addition, the wrench of end-effector is published via topic: /'${kinova_robotType}_driver'/out/tool_wrench

Another way to control Cartesian position is to use interactive markers in Rviz. Please follow the steps below to active interactive control:

  • launch the drivers: roslaunch kinova_bringup kinova_robot.launch kinova_robotType:=m1n4a200

  • start the node of interactive conrol: rosrun kinova_driver kinova_interactive_control m1n4a200

  • open Rviz: rosrun rviz rviz

  • On left plane of Rviz, Add InteractiveMarkers, click on the right of Updated Topic of added interactive marker, and select the topic /m1n4s200_interactive_control_Cart/update

  • Now a cubic with 3 axis (translation) and 3 rings(rotation) should appear at the end-effector, and you can move the robot by dragging the axis or rings.

New in release 1.2.0

Executing multiple Cartesian waypoints without stopping
The action client executes one goal at a time. In case the user wants to give multiple waypoints to the robot without stopping at every waypoint, the service AddPoseToCartesianTrajectories can be used. This service adds the commanded poses to a buffer that that maintained by the robot. The robot executes the poses in this buffer in the order that they are added, without stopping between poses.

The service ClearTrajectories can be used to clear the trajectory buffer in the base.

Finger position control

Cartesian position control can be realized by calling KinovaComm::setFingerPositions() in customized node. Alternatively, you may simply call the node fingers_action_client.py in the kinova_demo package. Help information is availabe with the -h option. The unit of finger command can be by {turn | mm | percent}, which refers to turn of the motor, milimeter and percentage. The finger is essentially controlled by turn, and the rest units are propotional to turn for convenience. The value 0 indicates fully open, while finger_maxTurn represents fully closed. The value of finger_maxTurn may vary due to many factors. A proper reference value for a finger turn will be 0 (fully-open) to 6400 (fully-close) If necessary, please modify this variable in the code. With the option -v on, positions in other unit format are printed for convenience. The following code fully closes the fingers.

eg: rosrun kinova_demo fingers_action_client.py m1n4s200 percent -- 100 100

The finger position is published via topic: /'${kinova_robotType}_driver'/out/finger_position

Velocity Control for joint space and Cartesian space

The user has access to both joint velocity and Cartesian velocity (angular velocity and linear velocity). The joint velocity control can be realized by publishing to topic /'${kinova_robotType}_driver'/in/joint_velocity. The following command can move the 4th joint of a mico robot at a rate of approximate 10 degree/second. Please be aware that the publishing rate does affect the speed of motion.

eg: rostopic pub -r 100 /m1n4s200_driver/in/joint_velocity kinova_msgs/JointVelocity "{joint1: 0.0, joint2: 0.0, joint3: 0.0, joint4: 10.0}"

For Cartesian linear velocity, the unit is meter/second. Definition of angular velocity "Omega" is based on the skew-symmetric matrices "S = R*R^(-1)", where "R" is the rotation matrix. angular velocity vector "Omega = [S(3,2); S(1,3); S(2,1)]". The unit is radian/second. An example is given below:

eg: rostopic pub -r 100 /m1n4s200_driver/in/cartesian_velocity kinova_msgs/PoseVelocity "{twist_linear_x: 0.0, twist_linear_y: 0.0, twist_linear_z: 0.0, twist_angular_x: 0.0, twist_angular_y: 0.0, twist_angular_z: 10.0}"

The motion will stop once the publish on the topic is finished. Please be cautious when using velocity control as it is a continuous motion unless you stop it.

** Note on publish frequency ** The joint velocity is set to publish at a frequency of 100Hz, due to the DSP inside the robot which loops each 10ms. Higher frequency will not have any influence on the speed. However, it will fill up a buffer (size of 2000) and the robot may continue to move a bit even after it stops receiving velocity topics. For a frequency lower than 100Hz, the robot will not able to achieve the requested velocity.

Therefore, the publishing rate at 100Hz is not an optional argument, but a requirement.

ROS service commands

Users can home the robot by the command below. It takes no argument and brings the robot to pre-defined home position. The command supports customized home position that users can define by using the SDK or JacoSoft as well. /'${kinova_robotType}_driver'/in/home_arm

Users can also enable and disable the ROS motion command via rosservice: /'${kinova_robotType}_driver'/in/start and /'${kinova_robotType}_driver'/in/stop. When stop is called, robot commands from ROS will not drive the robot until start is called. However, the joystick still has the control during this phase.

Cartesian Admittance mode

This lets the user control the robot by manually (by hand). The admittance force control can be actived by the command: rosservice call /'${kinova_robotType}_driver'/in/start_force_control and disabled by rosservice call /'${kinova_robotType}_driver'/in/stop_force_control. The user can move the robot by applying force/torque to the end-effector/joints. When there is a Cartesian/joint position command, the result motion will be a combination of both force and position commands.

Re-calibrate torque sensors

New in release 1.2.0

Over time it is possible that the torque sensors develop offsets in reporting absolute torque. For this they need to be re-calibrated. The calibration process is very simple -

  1. Move the robot to candle like pose (all joints 180 deg, robot links points straight up). This configuration ensures zero torques at joints.
  2. Call the service 'rosservice call /'${kinova_robotType}_driver'/in/set_zero_torques'

Support for 7 dof spherical wrist robot

New in release 1.2.0

Support for the 7 dof robot has been added in this new release. All of the previous control methods can be used on a 7 dof Kinova robot.

Inverse Kinematics for 7 dof robot

The inverse kinematics of the 7 dof robot results in infinite possible solutions for a give pose command. The choice of the best solution (redundancy resolution) is done in the base of the robot considering criteria such as joint limits, closeness to singularities.

Move robot in Null space

To see the full set of solutions, a new fuction is introduced in KinovaAPI - StartRedundantJointNullSpaceMotion(). When in this mode the Kinova joystick can be used to move the robot in null space while keeping the end-effector maintaining its pose.

The mode can be activated by calling the service SetNullSpaceModeState - ${kinova_robotType}_driver /in/set_null_space_mode_state Pass 1 to service to enable and 0 to disable.

Torque control

New in release 1.2.0

Torque control has been made more accessible. Now you can publish torque/force commands just like joint/cartesian velocity. To do this you need to :

  1. Optional - Set torque parameters
    Usually default parameters should work for most applications. But if you need to change some torque parameters, you can set parameters (listed at the end of page) and then call the service -
    SetTorqueControlParameters ${kinova_robotType}_driver/in/set_torque_control_parameters

  2. Switch to torque control from position control
    You can do this using the service - SetTorqueControlMode ${kinova_robotType}_driver'/in/set_torque_control_mode

  3. Publish torque commands rostopic pub -r 100 /j2n6s300_driver/in/joint_torque kinova_msgs/JointTorque "{joint1: 0.0, joint2: 0.0, joint3: 0.0, joint4: 0.0, joint5: 0.0, joint6: 1.0}"

Gravity compensation

Gravity compensation is done by default in the robot's base. This means that if the robot is commanded zero torques the robot does not fall under gravity. This case (zero commanded torque) can be refered to as gravity compensated mode. The robot can be moved around freely by manually pushing its joints. You can try out this mode by using the command (for a j2s7300)

rosrun kinova_demo gravity_compensated_mode.py j2s7300 

This command moves the robot to a candle-like pose, sets torques to zero, and then starts torque control mode. It publishes torque commands as [0,0,0,0,0,0], so the robot can be moved by pushing on individual joints.

It is posible to publish torque with or without gravity compensation by setting the parameter -

publish_torque_with_gravity_compensation: false
Torque inactivity

If not torque command is sent after a given time (250ms by default), the controller will take an action: (0): The robot will return in position mode (1): The torque commands will be set to zero. By default, option (1) is set for Kinova classic robots (Jaco2 and Mico) while option (0) is set for generic mode.

Ethernet connection

New in release 1.2.0

Note - Although this release supports Ethernet connection, this feature is only limited to test clients. Kinova will notify all users when Ethernet support is released for all customers.

Support for Ethernet connection has been added. All functionalities available in USB are available in Ethernet. To use ethernet follow these steps

  1. Setup a static IP address for your ethernet network say - 192.168.100.100
  2. With the robot connected to your PC via USB open kinova's Develepment Center
  3. Open tab General/Ethernet - Set robot IP Address to something like - 192.168.100.xxx
  4. Make sure MAC address is not all zero. If so contact support@kinova.ca
  5. Press 'Update' and restart robot
  6. In a terminal ping your robot's IP, your robot is setup for ethernet

To connect to robot via ethernet in ROS just set these parameters in robot_parameters.yaml -

connection_type: ethernet  
local_machine_IP: [your PC network IP]  
subnet_mask: [your network subnet mask]  

Parameters

New in release 1.2.0

General parameters
  • serial_number: PJ00000001030703130 Leave commented out if you want to control the first robot found connected.
  • jointSpeedLimitParameter1: 10 Joint speed limit for joints 1, 2, 3 in deg/s
  • jointSpeedLimitParameter2: 20
    Joint speed limit for joints 4, 5, 6 in deg/s
  • payload: [0, 0, 0, 0] payload: [COM COMx COMy COMz] in [kg m m m]
  • connection_type: USB ethernet or USB
Ethernet connection parameters
ethernet: {
	local_machine_IP: 192.168.100.21,  
	subnet_mask: 255.255.255.0,  
	local_cmd_port: 25000,  
	local_broadcast_port: 25025  
}
Torque control parameters

Comment these out to use default values.

torque_parameters:

  • publish_torque_with_gravity_compensation: false
  • torque_min: [1, 0, 0, 0, 0, 0, 0]
  • torque_max: [50, 0, 0, 0, 0, 0, 0]
    If one torque min/max value is sepecified, all min/max values need to be specified
  • safety_factor: 1
    Decides velocity threshold at which robot switches torque to position control (between 0 and 1)
  • com_parameters: [0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0] COM parameters, order [m1,m2,...,m7,x1,x2,...,x7,y1,y2,...y7,z1,z2,...z7]

rqt GUI for robot status

ROS provides a flexible GUI tool to interact with nodes/robots - rqt. You can use this tool to see topics published by the node - robot position, velocity, torque, etc. You can also launch services like AddPoseToCartesianTrajectory.

Monitoring topics

  • Launch rqt by typing the command rqt
  • In the plugin tab, select Topics/Topics monitor
  • Select any messages to see published position/torque etc. values

Other plugins in rqt can similarly be used for quick interation with the robot.

New in this release

New in release 1.2.0

  • MoveIt! support
  • Restructured URDF files
  • Support for 7 dof robot
  • Support for Ethernet
  • Torque control through publisher/subscriber
  • Force control through publisher/subscriber
  • Torque control parameters
  • Speed limit for actionlib Cartesian/Joint control
  • Parameterized base_frame for tf_generator
  • Finger models are now updated in RViz
  • Ring models added to URDF
  • New demo file - gravity_compensated_mode.py
  • Test/demo file - TestSrv.py
  • New services
    • SetTorqueControlParameters
    • SetZerotorque
    • SetNullSpaceModeState
    • AddPoseToCartesianTrajectory
    • ClearTrajectories
    • SetTorqueControlMode

Comparison to JACO-ROS

  • Migrate from jaco to kinova in the scope of: file names, class names, function names, data type, node, topic, etc.
  • Apply kinova_RobotType for widely support
  • Re-define JointAngles for consistence
  • Updated API version with new features
  • Create transform between different Euler Angle definitions in DSP and ROS
  • Criteron check when if reach the goal
  • URDF models for all robotTypes
  • Interactive for joint control
  • New message for KinovaPose
  • More options for actionlibs arguments, etc.
  • Relative motion control
  • Kinematic solution to be consistant with robot base code.
  • Fix joint offset bug for joint2 and joint6
  • Fix joint velocity control and position velocity control

Notes and Limitations

  1. Force/torque control is only for advanced users. Please use caution when using force/torque control api functions.

  2. The joint_state topic currently reports only the arm position and velocity. Effort is a placeholder for future compatibility. Depending on your firmware version velocity values can be wrong.

  3. When updating the firmware on the arm (e.g., using Jacosoft) the serial number will be set to "Not set" which will cause multiple arms to be unusable. The solution is to make sure that the serial number is reset after updating the arm firmware.

  4. Some virtualization software products are known to work well with this package, while others do not. The issue appears to be related to proper handover of access to the USB port to the API. Parallels and VMWare are able to do this properly, while VirtualBox causes the API to fail with a "1015" error.

  5. Previously, files under kinova-ros/kinova_driver/lib/i386-linux-gnu had a bug which required users on 32-bit systems to manually copy them into devel or install to work. This package has not been tested with 32-bit systems and this workaround may still be required. 64-bit versions seem to be unaffected.

Report a Bug

Any bugs, issues or suggestions may be sent to ros@kinovarobotics.com.

About

Official ROS packages for Kinova robotic arms

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 88.7%
  • HTML 6.9%
  • C 1.4%
  • Python 1.2%
  • JavaScript 0.8%
  • CSS 0.6%
  • Other 0.4%