-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathuArmRobot.py
225 lines (174 loc) · 6.85 KB
/
uArmRobot.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
# uArm Swift Pro - Python Library
# Created by: Richard Garsthagen - [email protected]
# V0.3 - June 2018 - Still under development
#
# Support for the old and new firmware
import serial
import time
import protocol_swiftpro as protocol
import threading
import sys
import math
from math import pi
class robot:
serid = 100
num_of_robots = 0
baud = 115200
serial_timeout = 1
connect_timeout = 1
debug = False
baseThreadCount = threading.activeCount()
delay_after_move = 0.1
version = 0
threads = 0
X = float(200)
Y = float(0)
Z = float(100)
def __init__(self, serialport, version):
self.serialport = serialport
self.connected = False
robot.num_of_robots += 1
self.moving = False
self.pumping = False
self.limit = False
self.version = version
def connect(self):
try:
if (self.debug): print ("trying to connect to: " + self.serialport)
self.ser = serial.Serial(self.serialport, 115200, timeout=1)
time.sleep(self.connect_timeout)
Ready = False
while (not Ready):
line = self.ser.readline()
if (self.debug): print (line)
if line.startswith("@5") and self.version ==0 :
Ready = True
self.connected = True
if (self.debug): print ("Connected!")
return True
if line.startswith("@1") and self.version == 1 :
Ready = True
self.connected = True
if (self.debug): print ("Connected!")
return True
line = self.ser.readline() # Ignore if @6 response is given
if line.startswith("@6 N0 V1"):
self.limit = True
if line.startswith("@6 N0 V0"):
self.limit = False
except Exception as e:
if (self.debug): print ("Error trying to connect to: " + self.serialport + " - " + str(e))
self.connected = False
return False
def disconnect(self):
if self.connected:
if (self.debug): print ("Closing serial connection")
self.connected = False
self.ser.close()
else:
if (self.debug): print ("Disconnected called while not connected")
def sendcmd(self, cmnd, waitresponse):
self.threads = self.threads + 1
if (self.connected):
id = self.serid
self.serid += 1
cmnd = "#{} {}".format(id,cmnd)
cmndString = bytes(cmnd + "\n")
if (self.debug): print ("Serial send: {}".format(cmndString))
self.ser.write(cmndString)
if (waitresponse):
line = self.ser.readline()
if (self.debug): print ("Serial received: {}".format(line))
while line.find("$" + str(id)) == -1:
if line.startswith("@6 N0 V1"):
self.limit = True
if line.startswith("@6 N0 V0"):
self.limit = False
line = self.ser.readline()
if (self.debug): print ("Serial received: {}".format(line))
if (self.debug): print ("Response {}".format(line))
if line.find("X") != -1 and line.find("Y") != -1 and line.find("Z") != -1:
try:
rit, stat, X, Y, Z = line.split(" ")
self.X = float(X[1:])
self.Y = float(Y[1:])
self.Z = float(Z[1:])
except:
if (self.debug): print ("Incorrect coordinate response")
if (self.moving):
self.moving = False
time.sleep(self.delay_after_move)
self.threads = self.threads -1
return line
else:
if (self.debug):
print ("error, trying to send command while not connected")
self.moving = False
self.threads = self.threads -1
def goto(self,x,y,z,speed):
self.moving = True
x = str(round(x, 2))
y = str(round(y, 2))
z = str(round(z, 2))
s = str(round(speed, 2))
if self.version == 0:
cmd = protocol.SET_POSITION.format(x,y,z,s)
if self.version == 1:
cmd = protocol.SET_POSITION_L.format(x,y,z,s)
self.sendcmd(cmd, True)
self.moving = False
def movedown(self,speed):
self.moving = True
z = str(round(-1, 2))
s = str(round(speed, 2))
cmd = protocol.SET_POSITION_RELATIVE.format(0,0,z,s)
self.sendcmd(cmd, True)
self.moving = False
def async_goto(self,x,y,z, speed):
self.moving = True
t = threading.Thread( target=self.goto , args=(x,y,z,speed) )
while self.threads != 0:
time.sleep(0.05)
t.start()
def get_coor(self):
cmd= protocol.GET_COOR
self.sendcmd(cmd, True)
def pump(self, state):
self.pumping = state
cmd = protocol.SET_PUMP.format(int(state))
self.sendcmd(cmd,True)
def mode(self, modeid):
# 0= Normal
# 1= Laser
# 2= 3D Printer
# 3= Universal holder
cmd = protocol.SET_MODE.format(modeid)
self.sendcmd(cmd,True)
def motors_on(self, state):
if state == True:
# Need firmware 4.1.1 or higher!
cmd= protocol.ATTACH_MOTORS
self.sendcmd(cmd, True)
if state == False:
cmd= protocol.DETACH_MOTORS
self.sendcmd(cmd, True)
@staticmethod
def PointsInCircum(r,n):
return [(math.cos(2*pi/n*x)*r,math.sin(2*pi/n*x)*r) for x in xrange(0,n+1)]
def drawCircle(self, centerX, centerY, Radius, Resolution, Speed, DrawingHeight, StartFinishedHeight):
if (Resolution < 4):
#ignore drwaing circle, to low resoution
if (self.debug): print ("Ignoring drwaing circle, to low resolution requested")
return
if (self.debug): print ("Drwaing circle of {} radius in {} steps".format(Radius,Resolution))
offsetx = centerX
offsety = centerY
c = self.PointsInCircum(Radius,Resolution)
bx,by = c[0]
self.goto(offsetx+bx,offsety+by,StartFinishedHeight,Speed)
for p in range(0,Resolution):
x,y = c[p]
self.goto(offsetx+x,offsety+y,DrawingHeight,Speed)
self.goto(offsetx+bx,offsety+by,DrawingHeight,Speed)
time.sleep(0.5)
self.goto(offsetx+bx,offsety+by,StartFinishedHeight,Speed)