Configure a ur5e Arm
Configure a ur5e
arm to add a Universal Robots UR5e to your robot:
Navigate to the Config tab of your robot’s page in the Viam app.
Click on the Components subtab and click Create component.
Select the arm
type, then select the ur5e
model.
Enter a name for your arm and click Create.
Edit and fill in the attributes as applicable.
{
"components": [
{
"model": "ur5e",
"name": "<your-arm-name>",
"type": "arm",
"attributes": {
"speed_degs_per_sec": <float>,
"host": "<your-host-address>",
},
"depends_on": []
}
]
}
{
"components": [
{
"depends_on": [],
"model": "pi",
"name": "local",
"type": "board",
"attributes": {}
},
{
"name": "my-arm",
"type": "arm",
"model": "ur5e",
"attributes": {
"speed_degs_per_sec": 1,
"host": "10.1.10.82"
},
"depends_on": []
}
]
}
The following attributes are available for ur5e
arms:
Attribute | Type | Inclusion | Description |
---|---|---|---|
speed_degs_per_sec | float | Required | Desired maximum speed of joint movement in degrees/sec. Range: [.1, 1] |
host | string | Required | The IP address of the arm’s system on your network. Find this when setting up your UR5e. |
Have questions, or want to meet other people working on robots? Join our Community Discord.
Was this page helpful?
Glad to hear it! If you have any other feedback please let us know:
We're sorry about that. To help us improve, please tell us what we can do better:
Thank you!