We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 891266a commit 3a5becfCopy full SHA for 3a5becf
src/pyURControl/ReadMe.md
@@ -4,9 +4,20 @@ Contains 1 class:
4
controlling the robot behavior.
5
6
## Functions
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
14
15
## Implementation
16
```python
17
+from pyURControl import ur_control
18
+```
19
20
+## Usage
21
+```python
22
+ur_control.init("ROBOT_IP")
23
```
0 commit comments