The services of xarm_api is the interface encapsulation of C++ SDK, which may be a single interface call or multiple interface calls. Note: The service path prefix (xarm/) used by rosservice is related to the startup parameters. The default xarm series is xarm/, and the Lite series is ufactory/. The following example uses xarm/, the actual use is modified according to the actual situation.
# pose: [x(mm), y(mm), z(mm), roll(rad), pitch(rad), yaw(rad)]
# mvvelo: speed (mm/s)
# mvacc: acceleration (mm/s^2)
# coord: motion coordinate system indicator, base (0) or tool(1) coordinate
# relative: indicator of given target is relative (1) or not (0, absolute)
rosservice call /xarm/move_line_aa ${pose} ${mvvelo} ${mvacc} 0 ${coord} ${relative}
move_servo_cart_aa
SDK API:
set_servo_cartesian_aa
rosservice:
# pose: [x(mm), y(mm), z(mm), roll(rad), pitch(rad), yaw(rad)]
# mvvelo: speed (mm/s)
# mvacc: acceleration (mm/s^2)
# coord: motion coordinate system indicator, base (0) or tool(1) coordinate
# relative: indicator of given target is relative (1) or not (0, absolute)
rosservice call /xarm/move_servo_cart_aa ${pose} ${mvvelo} ${mvacc} 0 ${coord} ${relative}
velo_move_joint
SDK API:
vc_set_joint_velocity
rosservice:
# velocities: [joint1-velo(rad/s), ..., joint${dof}-velo(rad/s)]
# jnt_sync: whether all joints accelerate and decelerate synchronously, 1 for yes, 0 for no
rosservice call /xarm/velo_move_joint ${velocities} ${jnt_sync} 0
velo_move_line
SDK API:
vc_set_cartesian_velocity
rosservice:
# velocities: [velo-x(mm/s), velo-y(mm/s), velo-z(mm/s), velo-roll(rad/s), velo-pitch(rad/s), velo-yaw(rad/s)]
# coord: whether motion is in tool coordinate(1) or not(0)
rosservice call /xarm/velo_move_joint ${velocities} 0 ${coord}
velo_move_joint_timed
SDK API:
vc_set_joint_velocity
rosservice:
# velocities: [joint1-velo(rad/s), ..., joint${dof}-velo(rad/s)]
# is_sync: whether all joints accelerate and decelerate synchronously, 1 for yes, 0 for no
# duration: the maximum duration of the speed, over this time will automatically set the speed to 0
rosservice call /xarm/velo_move_joint_timed ${velocities} ${is_sync} 0 ${duration}
velo_move_line_timed
SDK API:
vc_set_cartesian_velocity
rosservice:
# velocities: [velo-x(mm/s), velo-y(mm/s), velo-z(mm/s), velo-roll(rad/s), velo-pitch(rad/s), velo-yaw(rad/s)]
# is_tool_coord: whether motion is in tool coordinate(1) or not(0)
# duration: the maximum duration of the speed, over this time will automatically set the speed to 0
rosservice call /xarm/velo_move_line_timed ${velocities} 0 ${is_tool_coord} {duration}
# app_code
# 0: non-force mode
# 1: impendance control
# 2: force control
rosservice call /xarm/ft_sensor_app_set ${app_code}
ft_sensor_set_zero
SDK API:
ft_sensor_set_zero
rosservice:
rosservice call /xarm/ft_sensor_set_zero
ft_sensor_cali_load
SDK API:
ft_sensor_cali_load
save_conf
rosservice:
# data: iden load result
# association_setting_tcp_load: association setting tcp load or not
rosservice call /xarm/ft_sensor_cali_load ${data} ${association_setting_tcp_load}
# send_data: modbus data
# respond_len: the length of the response modbus data
rosservice call /xarm/getset_tgpio_modbus_data ${send_data} ${respond_len}
get_tgpio_modbus_baudrate
SDK API:
get_tgpio_modbus_baudrate
rosservice:
rosservice call /xarm/get_tgpio_modbus_baudrate
set_tgpio_modbus_timeout
SDK API:
set_tgpio_modbus_timeout
rosservice:
# timeout_ms: timeout(ms)
# is_transparent_transmission: is transparent transmission or not
rosservice call /xarm/set_tgpio_modbus_timeout ${timeout_ms} ${is_transparent_transmission}
getset_tgpio_modbus_data
SDK API:
getset_tgpio_modbus_data
rosservice:
# send_data: modbus data
# respond_len: the length of the response modbus data
# host_id: host id, 9: END RS485, 10: Controller RS485
# is_transparent_transmission: is transparent transmission or not
# use_503_port: whether to use port 503 for communication
rosservice call /xarm/getset_tgpio_modbus_data ${send_data} ${respond_len} ${host_id} ${is_transparent_transmission} ${use_503_port}
Get
get_servo_angle
SDK API:
get_servo_angle
rosservice:
rosservice call /xarm/get_servo_angle
get_position_rpy
SDK API:
get_position
rosservice:
rosservice call /xarm/get_position_rpy
get_position_axis_angle
SDK API:
get_position_aa
rosservice:
rosservice call /xarm/get_position_axis_angle
Set
set_tcp_offset
SDK API:
set_tcp_offset
save_conf
rosservice
# x/y/z: mm
# roll/pitch/yaw: rad
rosservice call /xarm/set_tcp_offset ${x} ${y} ${z} ${roll} ${pitch} ${yaw}
set_load
SDK API:
set_tcp_load
save_conf
rosservice
# mass: kg
# xc: x center of mass (mm)
# yc: y center of mass (mm)
# zc: z center of mass (mm)
rosservice call /xarm/set_load ${mass} ${xc} ${yc} ${zc}