forked from ros-industrial/abb_robot_driver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathex1_rws_only.launch
22 lines (18 loc) · 1.13 KB
/
ex1_rws_only.launch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<launch>
<arg name="robot_ip" doc="The robot controller's IP address"/>
<!-- Enable DEBUG output for all ABB nodes -->
<arg name="debug" default="false"/>
<env if="$(arg debug)" name="ROSCONSOLE_CONFIG_FILE" value="$(find abb_robot_bringup_examples)/config/rosconsole.conf"/>
<!-- ============================================================================================================= -->
<!-- Robot Web Services (RWS) related components. -->
<!-- ============================================================================================================= -->
<!-- RWS state publisher (i.e. general states about the robot controller) -->
<include file="$(find abb_rws_state_publisher)/launch/rws_state_publisher.launch">
<arg name="robot_ip" value="$(arg robot_ip)"/>
</include>
<!-- RWS service provider (i.a. starting/stopping the robot controller's RAPID execution) -->
<include file="$(find abb_rws_service_provider)/launch/rws_service_provider.launch">
<arg name="robot_ip" value="$(arg robot_ip)"/>
</include>
</launch>