-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4.Scripts.py
40 lines (28 loc) · 1.16 KB
/
4.Scripts.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Create a robot instance
from underautomation.universal_robots.connect_parameters import ConnectParameters
from underautomation.universal_robots.ur import UR
robot = UR()
# Setup connection to th robot
param = ConnectParameters("192.168.0.1")
# Enable primary interface to get variable values
param.primary_interface.enable = True
# Enable SFTP file access
param.ssh.enable_sftp = True
# Connect to the robot
robot.connect(param)
##
# Ask robot to execute a movej
robot.primary_interface.script.send("movej([-1.5,-1.5,-2,-0.5,1.8,0], a=1.4, v=1.05, t=0, r=0)")
# Enumerates files and folder
items = robot.sftp.list_directory("/home/ur/ursim-current/programs/")
# Download program file prg.urp to your local disk
robot.sftp.download_file("/home/ur/ursim-current/programs/prg.urp", "C:\\temp\\prg.urp")
# Send a local file to the robot
robot.sftp.upload_file("C:\\temp\\prg.urp", "/home/ur/ursim-current/programs/prg.urp")
# Manipulate files and directories
robot.sftp.rename_file("/home/ur/prg.urp", "/home/ur/prg2.urp")
robot.sftp.delete("/home/ur/prg.urp")
exists = robot.sftp.exists("/home/ur/prg.urp")
robot.sftp.write_all_text("/home/ur/file.txt", "Hello robot !")
# ...
##