Skip to content

Commit

Permalink
Docs/bringup (#291)
Browse files Browse the repository at this point in the history
* add source doc
  • Loading branch information
Juphex authored Oct 11, 2023
1 parent 1283786 commit ae8f435
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions marimbabot_bringup/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# TAMS Master Project 2022/2023 - Bringup

This package contains the launch files for the bringup of the robot.
The launch process is described in the top level [README](../README.md).

## Launch Files

### marimbabot_ur5_bringup.launch
This file is already configured to work with our setup.
However, the following parameters and code parts may be of interest.

When using a wifi connection to the mallet, one can set the ip address and port here:

```xml
<group if="$(eval mallet_holder_type=='flex_double')">
<!--> ... <-->
<group if="$(arg mallet_joint_wifi)">
<node name="mallet_hardware_control_node" pkg="marimbabot_hardware" type="mallet_hardware_control_node_wifi" output="screen">
<!-- Setting device parameter -->
<param name="address" value="192.168.42.1"/>
<param name="port" value="8888"/>
</node>
</group>
<!--> ... <-->
</group>

```

The robot ip address can be set here:
```xml
<include file="$(find ur_robot_driver)/launch/ur_control.launch">
<!-- Other arguments -->
<arg name="robot_ip" value="192.168.1.12"/>
<!-- Other arguments -->
</include>

```

### marimbabot_bringup.launch
Launches the bringup of the robot. It launches the following packages:

- marimbabot_vision
- marimbabot_speech
- marimbabot_behavior
- marimbabot_audio
- marimbabot_planning

0 comments on commit ae8f435

Please sign in to comment.