-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed ur_bringup and related tests
* added e-series
- Loading branch information
Ludovic Delval
committed
Sep 16, 2019
1 parent
0026d0e
commit eb25fdd
Showing
7 changed files
with
85 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 19 additions & 7 deletions
26
...p/launch/ur3_bringup_joint_limited.launch → ur_bringup/launch/ur3e_bringup.launch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,36 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
Universal robot ur3 launch. Wraps ur3_bringup.launch. Uses the 'limited' | ||
joint range [-PI, PI] on all joints. | ||
Universal robot ur3 launch. Loads ur3 robot description (see ur_common.launch | ||
for more info) | ||
Usage: | ||
ur3_bringup_joint_limited.launch robot_ip:=<value> | ||
ur3_bringup.launch robot_ip:=<value> | ||
--> | ||
<launch> | ||
|
||
<!-- robot_ip: IP-address of the robot's socket-messaging server --> | ||
<arg name="robot_ip" doc="IP of the controller" /> | ||
<arg name="reverse_port" default="50001" doc="Port on which controller listens for position values passed to servoj thread from the driver" /> | ||
<arg name="min_payload" default="0.0" doc="lower payload bound for the robot" /> | ||
<arg name="max_payload" default="3.0" doc="upper payload bound for the robot" /> | ||
|
||
<include file="$(find ur_bringup)/launch/ur3_bringup.launch"> | ||
<!-- robot model parameters files--> | ||
<arg name="joints_limits_params" default="$(find ur_description)/config/ur3e/joints_limits_parameters.yaml"/> | ||
<arg name="physical_params" default="$(find ur_description)/config/ur3e/physical_parameters.yaml"/> | ||
|
||
<!-- robot model --> | ||
<include file="$(find ur_description)/launch/ur3e_upload.launch"> | ||
<arg name="joints_limits_params" value="$(arg joints_limits_params)"/> | ||
<arg name="physical_params" value="$(arg physical_params)"/> | ||
</include> | ||
|
||
<!-- ur common --> | ||
<include file="$(find ur_bringup)/launch/ur_common.launch"> | ||
<arg name="robot_ip" value="$(arg robot_ip)"/> | ||
<arg name="reverse_port" value="$(arg reverse_port)"/> | ||
<arg name="limited" value="true"/> | ||
<arg name="min_payload" value="$(arg min_payload)"/> | ||
<arg name="max_payload" value="$(arg max_payload)"/> | ||
</include> | ||
|
||
|
||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 19 additions & 7 deletions
26
...p/launch/ur5_bringup_joint_limited.launch → ur_bringup/launch/ur5e_bringup.launch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,36 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
Universal robot ur5 launch. Wraps ur5_bringup.launch. Uses the 'limited' | ||
joint range [-PI, PI] on all joints. | ||
Universal robot ur5 launch. Loads ur5 robot description (see ur_common.launch | ||
for more info) | ||
Usage: | ||
ur5_bringup_joint_limited.launch robot_ip:=<value> | ||
ur5_bringup.launch robot_ip:=<value> | ||
--> | ||
<launch> | ||
|
||
<!-- robot_ip: IP-address of the robot's socket-messaging server --> | ||
<arg name="robot_ip" doc="IP of the controller" /> | ||
<arg name="reverse_port" default="50001" doc="Port on which controller listens for position values passed to servoj thread from the driver" /> | ||
<arg name="min_payload" default="0.0" doc="lower payload bound for the robot" /> | ||
<arg name="max_payload" default="10.0" doc="upper payload bound for the robot" /> | ||
|
||
<include file="$(find ur_bringup)/launch/ur5_bringup.launch"> | ||
<!-- robot model parameters files--> | ||
<arg name="joints_limits_params" default="$(find ur_description)/config/ur5e/joints_limits_parameters.yaml"/> | ||
<arg name="physical_params" default="$(find ur_description)/config/ur5e/physical_parameters.yaml"/> | ||
|
||
<!-- robot model --> | ||
<include file="$(find ur_description)/launch/ur5e_upload.launch"> | ||
<arg name="joints_limits_params" value="$(arg joints_limits_params)"/> | ||
<arg name="physical_params" value="$(arg physical_params)"/> | ||
</include> | ||
|
||
<!-- ur common --> | ||
<include file="$(find ur_bringup)/launch/ur_common.launch"> | ||
<arg name="robot_ip" value="$(arg robot_ip)"/> | ||
<arg name="reverse_port" value="$(arg reverse_port)"/> | ||
<arg name="limited" value="true"/> | ||
<arg name="min_payload" value="$(arg min_payload)"/> | ||
<arg name="max_payload" value="$(arg max_payload)"/> | ||
</include> | ||
|
||
|
||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters