Skip to content

Commit 3a5becf

Browse files
committed
update ur control ReadMe
1 parent 891266a commit 3a5becf

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/pyURControl/ReadMe.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,20 @@ Contains 1 class:
44
controlling the robot behavior.
55

66
## Functions
7-
7+
- init(ip) - initializes the robot connection
8+
- power_on() - powers on the robot
9+
- brake_release() - releases the robot brakes
10+
- set_tcp(tcp) - sets the tool center point
11+
- set_payload(mass, cog, inertia) - sets the payload
12+
- move_joint_with_pose(joints, a=1.4, v=1.05) - moves the robot to the specified joint position
13+
- move_linear_pose(pose, a=1.2, v=0.25) - moves the robot to the specified pose
814

915
## Implementation
1016
```python
17+
from pyURControl import ur_control
18+
```
1119

20+
## Usage
21+
```python
22+
ur_control.init("ROBOT_IP")
1223
```

0 commit comments

Comments
 (0)