Skip to content

Commit

Permalink
update readme (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
raybjork authored Feb 6, 2025
1 parent 4efe7e1 commit 45a0c95
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,24 @@ The following attributes are available for `viam:universal-robots` arms:
| Name | Type | Inclusion | Description |
| ---- | ---- | --------- | ----------- |
| `host` | string | **Required** | The IP address of the robot arm, specified as a string. |
| `speed_degs_per_sec` | float | **Required** | The maximum speed of the arm joints specified. |
| `speed_degs_per_sec` | float | **Required** | The maximum speed of the arm joints. |
| `acceleration_degs_per_sec2` | float | **Required** | The maximum acceleration of the arm joints. |

### Example configuration:

```
{
"components": [
{
"name": "myURArm",
"attributes": {
"host": "10.1.10.84",
"speed_degs_per_sec": 60,
},
"namespace": "rdk",
"type": "arm",
"model": "viam:arm:universal-robots"
"name": "myURArm",
"attributes": {
"host": "10.1.10.84",
"speed_degs_per_sec": 120,
"acceleration_degs_per_sec2": 8
},
"namespace": "rdk",
"type": "arm",
"model": "viam:arm:universal-robots"
}
]
}
Expand Down

0 comments on commit 45a0c95

Please sign in to comment.