Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ This repository allows controlling the Base, Arm and Gripper of the Omron Mobile

For supported features and limitations, see the individual repositories on the features supported by the MoMa.

## Device Configuration

The robot expects the remote PC to be configured with the following IP address to connect to the robot,

IP Address : 192.168.1.50
Subnet Mask : 255.255.255.0

## Setup

Create a workspace
Expand Down Expand Up @@ -42,6 +49,7 @@ finally build by
cd ..
colcon build
```

**or save time and use devcontainer**

## Usage
Expand All @@ -60,11 +68,18 @@ source install/setup.bash
ros2 launch moma_ros ld250_tm12x.launch.py use_rviz:=true
```

### Start the system with arm in simulation mode
### Start the system without Nav2 or Moveit to evaluate the Hardware connection

```bash
source install/setup.bash
ros2 launch moma_ros ld250_tm12x.launch.py use_nav2:=false use_moveit:=false
```

### Start the system without Nav2 to control just the Arm and Gripper using RVIZ

```bash
source install/setup.bash
ros2 launch moma_ros ld250_tm12x.launch.py tm_use_simulation:=true
ros2 launch moma_ros ld250_tm12x.launch.py use_nav2:=false use_rviz:=true
```

## Docker
Expand Down
2 changes: 1 addition & 1 deletion moma_description/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ endif()
find_package(ament_cmake REQUIRED)

install(
DIRECTORY meshes urdf xacro
DIRECTORY meshes xacro
DESTINATION share/${PROJECT_NAME}
)

Expand Down
Loading
Loading