You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.4 KiB
49 lines
1.4 KiB
6 years ago
|
import threading
|
||
|
import DobotDllType as dType
|
||
|
|
||
|
CON_STR = {
|
||
|
dType.DobotConnect.DobotConnect_NoError: "DobotConnect_NoError",
|
||
|
dType.DobotConnect.DobotConnect_NotFound: "DobotConnect_NotFound",
|
||
|
dType.DobotConnect.DobotConnect_Occupied: "DobotConnect_Occupied"}
|
||
|
|
||
|
#Load Dll
|
||
|
api = dType.load()
|
||
|
|
||
|
#Connect Dobot
|
||
|
state = dType.ConnectDobot(api, "", 115200)[0]
|
||
|
print("Connect status:",CON_STR[state])
|
||
|
|
||
|
if (state == dType.DobotConnect.DobotConnect_NoError):
|
||
|
|
||
|
#Clean Command Queued
|
||
|
dType.SetQueuedCmdClear(api)
|
||
|
|
||
|
#Async Motion Params Setting
|
||
|
dType.SetHOMEParams(api, 250, 0, 50, 0, isQueued = 1)
|
||
|
dType.SetPTPJointParams(api, 200, 200, 200, 200, 200, 200, 200, 200, isQueued = 1)
|
||
|
dType.SetPTPCommonParams(api, 100, 100, isQueued = 1)
|
||
|
|
||
|
#Async Home
|
||
|
dType.SetHOMECmd(api, temp = 0, isQueued = 1)
|
||
|
|
||
|
#Async PTP Motion
|
||
|
for i in range(0, 5):
|
||
|
if i % 2 == 0:
|
||
|
offset = 50
|
||
|
else:
|
||
|
offset = -50
|
||
|
lastIndex = dType.SetPTPCmd(api, dType.PTPMode.PTPMOVLXYZMode, 200 + offset, offset, offset, offset, isQueued = 1)[0]
|
||
|
|
||
|
#Start to Execute Command Queued
|
||
|
dType.SetQueuedCmdStartExec(api)
|
||
|
|
||
|
#Wait for Executing Last Command
|
||
|
while lastIndex > dType.GetQueuedCmdCurrentIndex(api)[0]:
|
||
|
dType.dSleep(100)
|
||
|
|
||
|
#Stop to Execute Command Queued
|
||
|
dType.SetQueuedCmdStopExec(api)
|
||
|
|
||
|
#Disconnect Dobot
|
||
|
dType.DisconnectDobot(api)
|