-
Notifications
You must be signed in to change notification settings - Fork 0
/
APIv2.py
364 lines (274 loc) · 9.71 KB
/
APIv2.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
import serial
import time
import MySQLdb
import os
import logging
import threading
# --------- AYARLAR --------- #
timeForControl = 3 #Isı ve Koordinat kontrollerinin zaman aralığı
# --------- ------- --------- #
logging.basicConfig(filename='kayitlar.log',level=logging.DEBUG)
arduino = serial.Serial('/dev/ttyUSB0', 115200, timeout=.1)
time.sleep(1)
print("")
print("----------------------------------------")
print("-- Printer API Basariyla Calistirildi.")
print("-- Developed by Ranork")
print("-- ")
print("-- PID: " + str(os.getpid()))
print("----------------------------------------")
print("")
db = MySQLdb.connect("localhost", "pyt", "pytpass", "ARG")
cursor = db.cursor()
now = int(time.time())
print("Database Bağlantısı Yapıldı.")
sql = "Delete From ArdCmd;"
cursor.execute(sql)
db.commit()
print("Bekleyen Komutlar Temizlendi.")
sql = "UPDATE OPT SET OptVal = '" + str(os.getpid()) + "' Where OptID = 'APIProcID';"
cursor.execute(sql)
db.commit()
print("PID Kaydedildi.")
print("")
# No Returns
def commandSend (command):
sendcmd = command + "\n"
sendcmdbyte = bytes(sendcmd, 'utf-8')
arduino.write(sendcmdbyte)
print(">> " + command)
logging.debug(">> " + command)
# Returns String
def readArduino ():
y = True
cevap = ""
while y:
data = arduino.readline()[:-1]
data = data.decode('utf-8')
if data != "":
cevap = data
print("<< " + cevap)
else:
y = False
return cevap
# No Returns
def controlTemp ():
commandSend("M105")
y = True
cevap = ""
counterA = 0
while y:
data = arduino.readline()[:-1]
data = data.decode('utf-8')
counterA += 1
if data != "" and not data.startswith("echo") and not data == "ok" and data.startswith("ok") or "T:" in data and "B:" in data:
cevap = data
print("<< " + cevap)
y = False
elif counterA >= 10:
y = False
if counterA >= 10:
return None
ETempA = cevap.find("T:") + 2
ETempZ = cevap.find("B:") - 1
ETempCurrent, ETempTarget = cevap[ETempA:ETempZ].replace(" ", "").split("/")
BTempA = cevap.find("B:") + 2
BTempZ = cevap.find("@:") - 1
BTempCurrent, BTempTarget = cevap[BTempA:BTempZ].replace(" ", "").split("/")
if str(ETempTarget) == "0.00":
ETempTarget = "Kapali"
if str(BTempTarget) == "0.00":
BTempTarget = "Kapali"
if float(ETempCurrent) < 0:
ETempCurrent = 0
if float(BTempCurrent) < 0:
BTempCurrent = 0
sql = "UPDATE ArdGosterge SET ETemp = '" + str(ETempCurrent) + "', ETar = '" + str(ETempTarget) + \
"', BTemp = '" + str(BTempCurrent) + "', BTar = '" + str(BTempTarget) + "' WHERE ID = 1"
cursor.execute(sql)
db.commit()
# No Returns
def controlCoordinates ():
commandSend("M114")
y = True
cevap = ""
counterA = 0
while y:
data = arduino.readline()[:-1]
data = data.decode('utf-8')
counterA += 1
if data.startswith('X:'):
cevap = data
print("<< " + cevap)
y = False
elif counterA >= 10:
y = False
if counterA >= 10:
return None
Countst = cevap.find("C") - 1
XkoorA = cevap[:Countst].find("X:") + 2
XKoorZ = cevap[:Countst].find("Y:") - 1
Xkoor = cevap[XkoorA:XKoorZ]
YkoorA = cevap[:Countst].find("Y:") + 2
YKoorZ = cevap[:Countst].find("Z:") - 1
Ykoor = cevap[YkoorA:YKoorZ]
ZkoorA = cevap[:Countst].find("Z:") + 2
ZKoorZ = cevap[:Countst].find("E:") - 1
Zkoor = cevap[ZkoorA:ZKoorZ]
sql = "UPDATE ArdGosterge SET Koor_X = '" + str(Xkoor) + "', Koor_Y = '" + str(Ykoor) + "', Koor_Z = '" + \
str(Zkoor) + "' WHERE ID=1;"
cursor.execute(sql)
db.commit()
# No Returns
def sendManuelCommands ():
sql = "SELECT cmd,ID FROM ArdCmd WHERE sended = 0;"
cmd = ""
cmdID = ""
try:
cursor.execute(sql)
results = cursor.fetchall()
for row in results:
cmd = row[0]
cmdID = row[1]
except:
print("SQL ERROR #S02")
if cmd != "":
commandSend(cmd)
print(readArduino())
if cmdID != "":
sql = "UPDATE ArdCmd SET sended = 1 WHERE ID = " + str(cmdID) + ";"
cursor.execute(sql)
db.commit()
# Returns True False
def isPrinting ():
sql = "SELECT OptVal FROM OPT WHERE OptID = 'Printing';"
Printing = ""
try:
cursor.execute(sql)
results = cursor.fetchall()
for row in results:
Printing = row[0]
except:
print("SQL ERROR #S01")
if Printing == "False":
db.commit()
return False
elif Printing == "True":
db.commit()
return True
# Controller Thread
def generalcontroller():
while True:
controlTemp()
controlCoordinates()
time.sleep(timeForControl)
line = 0
while line <= 20:
readArduino()
line += 1
print("")
gencontroller = threading.Thread(target=generalcontroller)
gencontroller.start()
generalLoop = True
while generalLoop:
# Belirli zaman aralıklarıyla ısı ve koordinat kontrolü
# if time.time() - now >= timeForControl:
# controlTemp()
# controlCoordinates()
# now = time.time()
if isPrinting() == False:
sendManuelCommands()
else:
sql = "SELECT OptVal From OPT Where OptID = 'PrintFileLoc'"
PrintFileLoc = ""
try:
cursor.execute(sql)
results = cursor.fetchall()
for row in results:
PrintFileLoc = row[0]
except:
asda = ""
print(">> PRINT JOB STARTING: " + PrintFileLoc)
logging.debug("Print Job Started! -- " + PrintFileLoc)
num_lines = sum(1 for line in open(PrintFileLoc))
sql = "UPDATE OPT SET OptVal = '" + str(num_lines) + "' WHERE OptID = 'PrintLine'"
cursor.execute(sql)
sql = "UPDATE OPT SET OptVal = '20' WHERE OptID = 'PrintedLine'"
cursor.execute(sql)
db.commit()
f = open(PrintFileLoc, 'r')
file = f.readlines()
f.close()
printLoop = True
line = 0
while printLoop:
print(">> " + file[line])
if "Z" in file[line]:
whereisZ = file[line].find("Z")
whereisF = file[line].find("F")
sql = "UPDATE ArdGosterge SET Koor_Z = '" + file[line][whereisZ+1:whereisF-1] + "'"
cursor.execute(sql)
db.commit()
elif "Z" in file[line+1]:
whereisZ = file[line+1].find("Z")
whereisF = file[line+1].find("F")
sql = "UPDATE ArdGosterge SET Koor_Z = '" + file[line+1][whereisZ+1:whereisF-1] + "'"
cursor.execute(sql)
db.commit()
if line >= num_lines - 5:
sql = "UPDATE OPT SET OptVal = 'False' WHERE OptID = 'Printing';"
printLoop = False
cursor.execute(sql)
db.commit()
# Normalin yarısı aralıklarla kontrol yap
if int(time.time()) - now >= timeForControl * 2:
commandSend("M105")
commandSend("M114")
sql = "UPDATE OPT SET OptVal = '" + str(line) + "' WHERE OptID = 'PrintedLine'"
cursor.execute(sql)
db.commit()
now = time.time()
if isPrinting() == False:
printLoop = False
db.commit()
commandSend("G28XY")
else:
if file[line].startswith(";") or file[line] == "" or len(file[line]) <= 3:
line += 1
elif "G1 F" in file[line]:
commandSend(file[line])
print("[ " + str(line) + " ]")
readArduino()
line += 1
else:
commandSend(file[line])
print("[ " + str(line) + " ]")
commandSend(file[line+1])
print("[ " + str(line+1) + " ]")
waitingForResponse = True
while waitingForResponse:
geridonut = readArduino()
if geridonut == "ok":
waitingForResponse = False
readArduino()
elif "T:" in geridonut and "B:" in geridonut:
ETempA = geridonut.find("T:") + 2
ETempZ = geridonut.find("B:") - 1
ETempCurrent, ETempTarget = geridonut[ETempA:ETempZ].replace(" ", "").split("/")
BTempA = geridonut.find("B:") + 2
BTempZ = geridonut.find("@:") - 1
BTempCurrent, BTempTarget = geridonut[BTempA:BTempZ].replace(" ", "").split("/")
if str(ETempTarget) == "0.00":
ETempTarget = "Kapali"
if str(BTempTarget) == "0.00":
BTempTarget = "Kapali"
if float(ETempCurrent) < 0:
ETempCurrent = 0
if float(BTempCurrent) < 0:
BTempCurrent = 0
sql = "UPDATE ArdGosterge SET ETemp = '" + str(ETempCurrent) + "', ETar = '" + str(
ETempTarget) + \
"', BTemp = '" + str(BTempCurrent) + "', BTar = '" + str(BTempTarget) + "' WHERE ID = 1"
cursor.execute(sql)
db.commit()
line += 2