touchCNC/cnc.py

540 lines
21 KiB
Python
Raw Normal View History

2021-08-28 18:48:23 +02:00
import serial
import time
from tkinter import *
import serial.tools.list_ports
from tkinter import filedialog as fd
2021-09-06 19:06:05 +02:00
import os
2021-09-02 20:39:49 +02:00
import threading
2021-08-28 18:48:23 +02:00
grbl = 0
i = 10
GCODE = 0
2021-09-11 19:58:59 +02:00
countbuf = 0
writebuffer_byPass = []
writebuffer = []
readbuffer = []
2021-08-28 18:48:23 +02:00
AXIS = 'X'
2021-09-04 22:09:18 +02:00
states = {'M3':'0', 'M8':'0', 'M6':'0', 'G10': '0'} #Spindle, Coolant, Toolchange
2021-10-16 23:12:35 +02:00
dict_GCODE = {'G':'0',
'X':'0',
'Y':'0',
'Z':'0',
'I':'0',
'J':'0',
'F':'0'
}
2021-09-04 22:09:18 +02:00
#GUI Main
buttonsize_x = 5
buttonsize_y = 3
increments = 0
BORDER = 2
2021-09-02 20:39:49 +02:00
freetosend = 1
2021-08-28 18:48:23 +02:00
#GUI Color Scheme
attention = 'red'
loaded = 'green'
cooling = 'blue'
toolchange = 'yellow'
2021-09-04 22:09:18 +02:00
standard = '#17223B'
feed = '#283B67'
2021-08-28 18:48:23 +02:00
def grblConnect2():
global grbl
#Serial Connection
locations=['/dev/ttyACM0','/dev/ttyUSB0','/dev/ttyUSB1','/dev/ttyACM1','/dev/ttyACM2','/dev/ttyACM3',
'/dev/ttyS0','/dev/ttyS1','/dev/ttyS2','/dev/ttyS3']
for device in locations:
try:
#print([comport.device for comport in serial.tools.list_ports.comports()])
print ("Trying...",device)
2021-09-14 11:13:21 +02:00
grbl = serial.Serial(port= device, baudrate= 115200, timeout =.5) #dsrdtr= True)
2021-08-28 18:48:23 +02:00
#grbl.open()
#print(grbl.readline())
grbl.write(str.encode("\r\n\r\n"))
time.sleep(2) # Wait for grbl to initialize
grbl.flushInput() # Flush startup text in serial input
connect_ser.config(bg= loaded)
2021-08-28 18:48:23 +02:00
#print("connected")
break
except:
#print ("Failed to connect on",device)
grbl = 0
# Stream g-code to grbl
2021-09-11 19:58:59 +02:00
#Stream GCODE from -https://onehossshay.wordpress.com/2011/08/26/grbl-a-simple-python-interface/-
2021-08-28 18:48:23 +02:00
2021-09-11 19:58:59 +02:00
def jogWrite(AXIS, CMD, scale): #Schreiben von manuellen Positionierungsbefehlen
global freetosend
2021-08-28 18:48:23 +02:00
DECIMAL = [0.1,1,10,100]
scale = increments.get()
MOVE = int(CMD) * DECIMAL[scale -1]
2021-09-12 14:50:47 +02:00
grbl_command = ('$J=G91' + 'G21' + AXIS + str(MOVE)+ 'F1000')
#print(grbl_command) $J=G91G21X10F185
2021-09-11 19:58:59 +02:00
if freetosend == 1:
byPass(grbl_command+'\n')
else:
for button in blkbuttons:
switchButtonState(button)
def switchButtonState(button): #Umschalter für Knopfstatus
if button["state"] == DISABLED:
button["state"] = NORMAL
else:
button["state"] = DISABLED
2021-08-28 18:48:23 +02:00
2021-09-11 19:58:59 +02:00
def directWrite(CMD): #Direktes schreiben eines Befehls
global freetosend
2021-09-12 14:50:47 +02:00
#print(freetosend)
2021-09-11 19:58:59 +02:00
grbl_command = CMD
if freetosend == 0:
now_bufferGRBL(grbl_command + '\n')
else:
2021-09-12 14:50:47 +02:00
byPass(grbl_command + '\n')
2021-09-02 20:39:49 +02:00
def latchWrite(CMD):
global states
2021-09-11 19:58:59 +02:00
global freetosend
if states[CMD] == '0':
states[CMD] = '1'
if CMD == 'M3':
2021-09-04 22:09:18 +02:00
spindle.config(bg= attention) #A31621
if CMD == 'M6':
tool.config(bg = toolchange)#E0CA3C
2021-09-04 22:09:18 +02:00
if CMD == 'G10':
2021-09-05 21:12:38 +02:00
zero_all.config(bg = loaded)
else:
states[CMD] ='0'
if CMD == 'M3':
spindle.config(bg=loaded)#A2D729
if CMD == 'M6':
tool.config(bg='grey')
2021-09-04 22:09:18 +02:00
#if CMD == 'G10':
# zero_all.config(bg= attention)
if CMD == 'M3':
2021-09-02 20:39:49 +02:00
if states['M3'] == '1':
2021-09-04 22:09:18 +02:00
grbl_command = 'M3 S1000'
else:
2021-09-02 20:39:49 +02:00
grbl_command = 'M3 S0'
2021-09-04 22:09:18 +02:00
elif CMD == 'M8':
if states['M8'] == '1':
grbl_command = (CMD)
coolant.config(bg = cooling)#1F7A8C
else:
2021-09-04 22:09:18 +02:00
grbl_command = 'M9'
coolant.config(bg ='grey')
2021-09-04 22:09:18 +02:00
elif CMD == 'G10':
grbl_command = 'G10 P0 L20 X0 Y0 Z0'
else:
grbl_command = (CMD)
#grbl_command = (CMD * int(states[CMD]) )
2021-09-11 19:58:59 +02:00
#print(grbl_command)
2021-09-04 22:09:18 +02:00
#print(states)
2021-09-11 19:58:59 +02:00
if freetosend == 0:
now_bufferGRBL(grbl_command + '\n')
else:
byPass(grbl_command + '\n')
print(grbl_command)
2021-09-11 19:58:59 +02:00
def terminalWrite(): #Holt Zeichenstring von Editfeld und sendet es
2021-08-28 18:48:23 +02:00
grbl_command = terminal.get()
#print(grbl_command)
2021-09-11 19:58:59 +02:00
if freetosend == 0:
now_bufferGRBL(grbl_command + '\n')
else:
byPass(grbl_command+'\n')
2021-08-28 18:48:23 +02:00
2021-09-11 19:58:59 +02:00
def infoScreen(data): #Anzeigecanvas für GRBL Rückmeldungen
2021-08-28 18:48:23 +02:00
global i
terminalFrame = Frame(terminal_recv, bg = 'white')
terminal_recv.create_window(10,i, window = terminalFrame, anchor = 'nw')
Label(terminalFrame, text = data, font = ('Calibri',10), bg ='white', fg ='black').pack()
i += 22
if i >=400:
i=10
terminal_recv.delete("all")
2021-10-16 23:12:35 +02:00
def openGCODE(): #Dialog zur Gcode Auswahl und öffnen der Datei als GCODE Objekt
2021-08-28 18:48:23 +02:00
global GCODE
filetypes = (('GCODE', '*.nc'),('All files', '*.*'))
2021-09-08 11:45:49 +02:00
GCODE = fd.askopenfile(title='Open a file', initialdir='/home/thomas/Nextcloud/CAM/', filetypes=filetypes)
2021-08-28 18:48:23 +02:00
if GCODE != 0:
fopen.config(bg= loaded)
2021-10-16 23:12:35 +02:00
draw_GCODE(extract_GCODE())
2021-08-28 18:48:23 +02:00
else:
fopen.config(bg = 'grey')
2021-10-16 23:12:35 +02:00
2021-08-28 18:48:23 +02:00
2021-10-16 23:12:35 +02:00
#build_xy = findEnvelope() #Aufruf PLatz im Bauraum
#mill_table.create_rectangle(build_xy[0],build_xy[1], fill = 'blue', stipple = 'gray75') # Zeichnen des Objekts im Bauraum
def extract_GCODE(): #Aufschlüsseln der enthaltenen Koordinaten in ein per Schlüssel zugängiges Dictionary
global dict_GCODE
list_dict_GCODE = []
for line in GCODE:
l = line.split() #Elemente trennen und in Liste konvertieren
for i in range(0,len(l)):
#print (l)
if 'G' in l[i]:
dict_GCODE['G'] = l[i].replace('G','') #Wert einfügen und gleichzeitig G CODE befehl entfernen
if 'X' in l[i]:
dict_GCODE['X'] = l[i].replace('X','')
if 'Y' in l[i]:
dict_GCODE['Y'] = l[i] .replace('Y','')
if 'Z' in l[i]:
dict_GCODE['Z'] = l[i].replace('Z','')
if 'I' in l[i] and not 'ZMIN':
dict_GCODE['I'] = l[i].replace('I','')
if 'J' in l[i]:
dict_GCODE['J'] = l[i].replace('J','')
if 'F' in l[i] and not 'Fusion':
dict_GCODE['F'] = l[i].replace('F','')
2021-08-28 18:48:23 +02:00
2021-10-16 23:12:35 +02:00
#print(dict_GCODE)
list_dict_GCODE.append(dict_GCODE.copy()) #Copy notwendig da es sich nur um einen "Pointer" handelt der immer auf die zuletzt aktualisierte dict Zeile zeigt.
print(list_dict_GCODE)
2021-10-16 23:12:35 +02:00
return list_dict_GCODE
def draw_GCODE(glist): #Zeichnen des GCodes zur Beurteilung des Bauraums
for i in range(0,len(glist)-1):
x_y_current = 50 + float(glist[i]['X']), 350 - float(glist[i]['Y'])
x_y_next = 50 + float(glist[i+1]['X']), 350 - float(glist[i+1]['Y'])
mill_table.create_line(x_y_current, x_y_next)
2021-08-28 18:48:23 +02:00
2021-09-02 20:39:49 +02:00
def grblWrite():
2021-08-28 18:48:23 +02:00
#print("write1")
2021-09-11 19:58:59 +02:00
global writebuffer
2021-09-02 20:39:49 +02:00
2021-09-11 19:58:59 +02:00
GCODE.seek(0)
2021-09-02 20:39:49 +02:00
for line in GCODE:
2021-08-28 18:48:23 +02:00
#print("write")
2021-10-16 23:12:35 +02:00
l = line.strip() # Strip all EOL characters for streaming
grbl_command = l
2021-09-11 19:58:59 +02:00
#print("GCODE",grbl_command)
bufferGRBL(grbl_command + '\n')
sendGRBL()
2021-09-02 20:39:49 +02:00
GCODE.close()
2021-10-16 23:12:35 +02:00
for button in blkbuttons: #Ausgrauen blockierter Knöpfe während Fräsen. "Umschalter"
2021-09-11 19:58:59 +02:00
switchButtonState(button)
2021-09-02 20:39:49 +02:00
fopen.config(bg = 'grey')
2021-10-16 23:12:35 +02:00
def timedPositionRequest():# >Im Falle das kein GCODE gestremed wird< Abfragen der Momentanen Position nach 1000ms sendet über den "byPass" channel der den GCode Stream nicht beeinflusst
2021-09-11 19:58:59 +02:00
if grbl != 0 and freetosend == 1:
grbl_command = '?'
byPass(grbl_command)
root.after(1000, timedPositionRequest)
def bufferGRBL(grbl_command):
global writebuffer
writebuffer.append(grbl_command)
#print (len(writebuffer))
def now_bufferGRBL(grbl_command):
global writebuffer
writebuffer.insert(1,grbl_command)
#print (len(writebuffer))
def byPass(grbl_command):
global writebuffer_byPass
2021-09-12 14:50:47 +02:00
#print (grbl_command)
2021-09-11 19:58:59 +02:00
if grbl_command == '?':
grbl.write(str.encode(grbl_command)) # Send g-code block to grbl
grbl_out = grbl.readline().strip()
else:
2021-09-12 14:50:47 +02:00
#print(grbl_command)
2021-09-11 19:58:59 +02:00
writebuffer_byPass.append(grbl_command)
grbl.write(str.encode(writebuffer_byPass[0])) # Send g-code block to grbl
grbl_out = grbl.readline().strip()
2021-09-12 14:50:47 +02:00
#print(writebuffer_byPass)
2021-09-11 19:58:59 +02:00
del writebuffer_byPass[0]
displayPosition_request(grbl_out)
2021-09-02 20:39:49 +02:00
infoScreen(grbl_out)
2021-09-12 14:50:47 +02:00
#print(grbl_out)
def debugWrite(grbl_command):
grbl.write(str.encode(grbl_command)) # Send g-code block to grbl
grbl_out = grbl.readline().strip()
displayPosition_request(grbl_out)
infoScreen(grbl_out)
2021-09-11 19:58:59 +02:00
print(grbl_out)
def sendGRBL():
global writebuffer
global freetosend
2021-09-02 20:39:49 +02:00
2021-09-11 19:58:59 +02:00
while len(writebuffer) >0:
freetosend = 0
#print ("current",writebuffer[0])
#print (writebuffer)
grbl.write(str.encode(writebuffer[0])) # Send g-code block to grbl
#grbl.timeout = None
readbuffer.append(grbl.readline().strip()) # Wait for grbl response with carriage return
del writebuffer[0]
if len(readbuffer) == 5:
writebuffer.insert(2,'?')
displayPosition()
infoScreen(readbuffer[0])
readbuffer.clear()
freetosend = 1
2021-09-02 20:39:49 +02:00
2021-09-11 19:58:59 +02:00
def displayPosition_request(grbl_pos):
if grbl != 0 :
try:
position = str(grbl_pos)
#print (readbuffer)
position = position.replace('Idle|', ',')
position = position.replace('Run|', ',')
position = position.replace('WPos:', '')
position = position.replace('MPos:', '')
position = position.replace('>', ',')
position = position.replace('|', ',')
position.strip()
coordinates_list = position.split(',')
#print(coordinates_list)
2021-09-05 21:12:38 +02:00
show_ctrl_x.config(text = coordinates_list[1])
show_ctrl_y.config(text = coordinates_list[2])
show_ctrl_z.config(text = coordinates_list[3])
2021-09-04 22:09:18 +02:00
2021-10-16 23:12:35 +02:00
mill_table.create_line(coordinates_list[1],coordinates_list[2],coordinates_list[1],coordinates_list[2]+50, arrow = FIRST )
2021-09-05 21:12:38 +02:00
#show_ctrl_x_w.config(text = coordinates_list[4])
#show_ctrl_y_w.config(text = coordinates_list[5])
#show_ctrl_z_w.config(text = coordinates_list[6])
2021-09-11 19:58:59 +02:00
2021-09-05 21:12:38 +02:00
except:
2021-09-11 19:58:59 +02:00
pass
#print("Listerror")
else:
print("Serial Busy")
#root.after(1000,displayPosition)
def displayPosition():
global readbuffer
if grbl != 0 :
try:
position = str(readbuffer[2])
#print (readbuffer)
position = position.replace('Idle|', ',')
position = position.replace('Run|', ',')
position = position.replace('WPos:', '')
position = position.replace('MPos:', '')
position = position.replace('>', ',')
position = position.replace('|', ',')
position.strip()
coordinates_list = position.split(',')
#print(coordinates_list)
show_ctrl_x.config(text = coordinates_list[1])
show_ctrl_y.config(text = coordinates_list[2])
show_ctrl_z.config(text = coordinates_list[3])
2021-10-16 23:12:35 +02:00
mill_table.create_line(coordinates_list[1],coordinates_list[2],coordinates_list[1]+10,coordinates_list[2]+20 )
mill_table.create_line(coordinates_list[1],coordinates_list[2],coordinates_list[1]-10,coordinates_list[2]+20 )
mill_table.create_line(coordinates_list[1]-10,coordinates_list[2]+20,coordinates_list[1]+10,coordinates_list[2]+20 )
2021-09-11 19:58:59 +02:00
#show_ctrl_x_w.config(text = coordinates_list[4])
#show_ctrl_y_w.config(text = coordinates_list[5])
#show_ctrl_z_w.config(text = coordinates_list[6])
except:
pass
#print("Listerror")
2021-09-05 21:12:38 +02:00
else:
print("Serial Busy")
2021-09-11 19:58:59 +02:00
#root.after(1000,displayPosition)
def grblClose():
# Close file and serial port
#f.close()
try:
grbl.close()
print("closed")
connect_ser.config(bg='grey')
except:
print("Connection still open")
2021-08-28 18:48:23 +02:00
root = Tk()
root.title('touchCNC')
root.geometry('1024x600+0+0')
root.resizable(False,False)#17203b
2021-09-06 19:06:05 +02:00
root.attributes('-fullscreen', True)
root.tk_setPalette(background='#11192C', foreground='white',activeBackground='#283867', activeForeground='white' )
2021-08-31 19:32:58 +02:00
2021-08-28 18:48:23 +02:00
increments = IntVar()
movement = Frame(root, relief = 'ridge', bd = BORDER)
2021-09-04 22:09:18 +02:00
left = Button(root, text="-X", width = buttonsize_x, height = buttonsize_y, command = lambda:jogWrite('X', '-1', increments),bd = BORDER, bg = standard)
right = Button(root, text="+X",width = buttonsize_x, height = buttonsize_y,command = lambda:jogWrite('X', '1', increments),bd = BORDER, bg = standard)
up = Button(root, text="+Y", width = buttonsize_x, height = buttonsize_y,command = lambda:jogWrite('Y', '1', increments),bd = BORDER, bg = standard)
down = Button(root, text="-Y",width = buttonsize_x, height = buttonsize_y,command = lambda:jogWrite('Y', '-1', increments),bd = BORDER, bg = standard)
z_up = Button(root, text="+Z",width = buttonsize_x, height = buttonsize_y,command = lambda:jogWrite('Z', '1', increments) ,bd = BORDER, bg = standard)
z_down = Button(root, text="-Z",width = buttonsize_x, height = buttonsize_y,command = lambda:jogWrite('Z', '-1', increments),bd = BORDER, bg = standard)
zero_x = Button(root, text="zero X",width = buttonsize_x, height = 1, command = lambda:directWrite('G10 P0 L20 X0'),bd = BORDER)
2021-09-12 14:50:47 +02:00
zero_y = Button(root, text="zero Y",width = buttonsize_x, height = 1, command = lambda:directWrite('G10 P0 L20 Y0'),bd = BORDER)
zero_z = Button(root, text="zero Z",width = buttonsize_x, height = 1, command = lambda:directWrite('G10 P0 L20 Z0'),bd = BORDER)
2021-09-04 22:09:18 +02:00
zero_all=Button(root, text="zeroAll",width = buttonsize_x, height = 3, command = lambda:latchWrite('G10'),bd = BORDER, bg= 'magenta')
setzero =Button(root, text="SetPOS",width = buttonsize_x, height = buttonsize_y, command = lambda:directWrite('G28.1'),bd = BORDER)
gozero =Button(root, text="GoPOS",width = buttonsize_x, height = buttonsize_y, command = lambda:directWrite('G28'),bd = BORDER)
connect_ser = Button(root, text="Cnnct",width = buttonsize_x, height = buttonsize_y, command = grblConnect2, bg = 'grey',bd = BORDER)
2021-09-02 20:39:49 +02:00
discon_ser = Button(root, text="Dsconct",width = buttonsize_x, height = buttonsize_y, command = lambda:grblClose(),bd = BORDER)
unlock = Button(root, text="Unlock",width = buttonsize_x, height = buttonsize_y, command = lambda:directWrite('$X'),bd = BORDER)
start = Button(root, text="START",width = buttonsize_x, height = buttonsize_y, bg = attention, command = lambda: threading.Thread(target = grblWrite).start(),bd = BORDER)
stop = Button(root, text="STOP",width = buttonsize_x, height = buttonsize_y,bd = BORDER, command = lambda: directWrite('') )
pause = Button(root, text="PAUSE",width = buttonsize_x, height = buttonsize_y, bg = cooling,bd = BORDER,command = lambda: directWrite('!') )
2021-09-04 22:09:18 +02:00
resume = Button(root, text="RESUME",width = buttonsize_x, height = buttonsize_y,bd = BORDER,command = lambda: directWrite('~'))
2021-09-06 19:06:05 +02:00
fopen = Button(root, text="GCODE",width = buttonsize_x , height = buttonsize_y, bg = 'grey',fg = 'black', command = openGCODE,bd = BORDER)
2021-08-28 18:48:23 +02:00
2021-09-04 22:09:18 +02:00
spindle = Button(root, text="Spindle",width = buttonsize_x, height = buttonsize_y,command = lambda:latchWrite('M3'))
2021-09-02 20:39:49 +02:00
coolant = Button(root, text="Coolant",width = buttonsize_x, height = buttonsize_y,command = lambda:latchWrite('M8') )
tool = Button(root, text="Tool",width = buttonsize_x, height = buttonsize_y,command = lambda:latchWrite('M6') )
2021-09-11 19:58:59 +02:00
macro = Button(root, text="Macro1",width = buttonsize_x, height = buttonsize_y,command = lambda:directWrite(' G91 G0 X10 Y10 Z50 F1000') )
2021-08-28 18:48:23 +02:00
2021-09-04 22:09:18 +02:00
inc1 = Button(root, text="Inc 1%",width = buttonsize_x, height = buttonsize_y,command = lambda:directWrite(''),bg= feed)
inc10 = Button(root,text="Inc 10%",width = buttonsize_x, height = buttonsize_y,command = lambda:directWrite(''),bg= feed )
dec1 = Button(root, text="Dec 1%",width = buttonsize_x, height = buttonsize_y,command = lambda:directWrite(''),bg= feed )
dec10 = Button(root,text="Dec 10%",width = buttonsize_x, height = buttonsize_y,command = lambda:directWrite(''),bg= feed )
2021-09-06 19:06:05 +02:00
reset = Button(root,text="<RESET",width = buttonsize_x, height = buttonsize_y,command = lambda:directWrite(''),bg= 'grey' )
reboot= Button(root,text="REBOOT",width = buttonsize_x, height = buttonsize_y,command = lambda: os.system('reboot'),bg= 'grey' )
2021-09-04 22:09:18 +02:00
2021-08-28 18:48:23 +02:00
step_incr1 = Radiobutton(root, text= '0,1', value = 1 , variable = increments,width = buttonsize_x, height = buttonsize_y, indicatoron = 0 )
step_incr2 = Radiobutton(root, text= '1', value = 2 , variable = increments,width = buttonsize_x, height = buttonsize_y, indicatoron = 0 )
step_incr3 = Radiobutton(root, text= '10', value = 3 , variable = increments,width = buttonsize_x, height = buttonsize_y, indicatoron = 0 )
step_incr4 = Radiobutton(root, text= '100', value = 4 , variable = increments,width = buttonsize_x, height = buttonsize_y, indicatoron = 0 )
step_incr2.select()
terminal = Entry(root, width =8, text="GCODE")
2021-09-02 20:39:49 +02:00
terminal_send = Button(root, text="SEND",width = buttonsize_x, height = buttonsize_y, bd= 3, command = lambda: terminalWrite())
2021-08-28 18:48:23 +02:00
terminal_recv = Canvas(root, width = 200, height =400, bg = 'white')
show_ctrl_x_label = Label(root,text = "X")
show_ctrl_y_label = Label(root,text = "Y")
show_ctrl_z_label = Label(root,text = "Z")
2021-08-31 19:32:58 +02:00
show_ctrl_x =Label(root, text = "X_POS", width = 8, height = 2, bg ='white', relief = SUNKEN, fg= 'black')
show_ctrl_y =Label(root, text = "Y_POS", width = 8, height = 2, bg ='white', relief = SUNKEN, fg= 'black')
show_ctrl_z =Label(root, text = "Z_POS", width = 8, height = 2, bg ='white', relief = SUNKEN, fg= 'black')
2021-09-04 22:09:18 +02:00
show_ctrl_x_w =Label(root, text = "X_POS_W", width = 8, height = 2, bg ='white', relief = SUNKEN, fg= 'black')
show_ctrl_y_w =Label(root, text = "Y_POS_W", width = 8, height = 2, bg ='white', relief = SUNKEN, fg= 'black')
show_ctrl_z_w =Label(root, text = "Z_POS_W", width = 8, height = 2, bg ='white', relief = SUNKEN, fg= 'black')
2021-09-04 22:09:18 +02:00
#feed_control = Scale(root, orient = HORIZONTAL, length = 400, label = "Feedrate",tickinterval = 20)
2021-08-28 18:48:23 +02:00
#Milling Area and Gcode preview with grid generation
mill_table= Canvas(root, width= 400, height = 400, bg = 'grey')
mill_table.create_rectangle(50,50,350,350, fill ='white')
mill_table.create_text(200,25,text = 'Fräsbereich 300mm x 300mm')
for x in range(50,350,50):
mill_table.create_text(x,400- x, text = x-50)
for x in range(0,400,50):
for y in range(0,400,50):
gitter_x = mill_table.create_line(x,0,x,400)
gitter_y = mill_table.create_line(0,y,400,y)
movement.grid(row = 0, column = 0, columnspan = 3, rowspan = 1)
2021-08-28 18:48:23 +02:00
left.grid(row=1, column=0, padx=3, pady=2)
right.grid(row=1, column=2,padx=3, pady=2)
up.grid(row=0, column=1, padx=3, pady=10)
down.grid(row=1, column=1,padx=3, pady=2)
z_up.grid(row=0, column=3,padx=10, pady=10)
z_down.grid(row=1, column=3,padx=10, pady=2)
step_incr2.select()
step_incr1.grid(row=2, column=0,padx=3, pady=10)
step_incr2.grid(row=2, column=1,padx=3, pady=10)
step_incr3.grid(row=2, column=2,padx=3, pady=10)
step_incr4.grid(row=2, column=3,padx=3, pady=10)
show_ctrl_x_label.grid(row=3, column=0,padx=3, pady=10)
show_ctrl_y_label.grid(row=4, column=0,padx=3, pady=10)
show_ctrl_z_label.grid(row=5, column=0,padx=3, pady=10)
2021-08-28 18:48:23 +02:00
show_ctrl_x.grid(row=3, column=1,padx=0, pady=0, columnspan =1)
show_ctrl_y.grid(row=4, column=1,padx=0, pady=0, columnspan =1)
show_ctrl_z.grid(row=5, column=1,padx=0, pady=0, columnspan =1)
2021-08-28 18:48:23 +02:00
show_ctrl_x_w.grid(row=3, column=2,padx=0, pady=0, columnspan =1)
show_ctrl_y_w.grid(row=4, column=2,padx=0, pady=0, columnspan =1)
show_ctrl_z_w.grid(row=5, column=2,padx=0, pady=0, columnspan =1)
2021-09-04 22:09:18 +02:00
zero_x.grid(row=3, column=3)
zero_y.grid(row=4, column=3)
zero_z.grid(row=5, column=3)
2021-08-28 18:48:23 +02:00
zero_all.grid(row=6, column=3,padx=10, pady=10)
2021-09-04 22:09:18 +02:00
setzero.grid(row=6, column=0,padx=10, pady=10)
gozero.grid(row=6, column=1,padx=10, pady=10)
2021-08-28 18:48:23 +02:00
connect_ser.grid(row=7, column=0,padx=10, pady=10)
discon_ser.grid(row=7, column=1,padx=10, pady=10)
unlock.grid(row=8, column=1,padx=10, pady=10)
2021-08-28 18:48:23 +02:00
start.grid(row=7, column=2,padx=10, pady=10)
stop.grid(row=7, column=3,padx=10, pady=10)
pause.grid(row=8, column=2,padx=10, pady=10)
resume.grid(row=8, column=3,padx=10, pady=10)
2021-08-28 18:48:23 +02:00
fopen.grid(row=8, column=0,padx=10, pady=10)
spindle.grid(row=7, column=4,padx=1, pady=10)
coolant.grid(row=7, column=5,padx=1, pady=10)
tool.grid(row=7, column=6,padx=1, pady=10)
macro.grid(row=7, column=7,padx=1, pady=10)
2021-09-04 22:09:18 +02:00
dec10.grid(row=8, column=4,padx=1, pady=10)
dec1.grid(row=8, column=5,padx=1, pady=10)
inc1.grid(row=8, column=6,padx=1, pady=10)
inc10.grid(row=8, column=7,padx=1, pady=10)
reset.grid(row=8, column=8,padx=1, pady=10)
2021-09-06 19:06:05 +02:00
reboot.grid(row=8, column=9,padx=1, pady=10)
2021-09-04 22:09:18 +02:00
2021-08-28 18:48:23 +02:00
terminal.grid(row = 7, column = 8, padx =2, pady =10)
terminal_send.grid(row = 7, column = 9, padx =2, pady =10)
terminal_recv.grid(row = 0, column = 8, padx =10, pady =10,rowspan = 7, columnspan =2)
2021-09-04 22:09:18 +02:00
#feed_control.grid(row = 8, column = 4, columnspan =4)
2021-08-28 18:48:23 +02:00
mill_table.grid(row=0, column=4,padx=10, pady=10,columnspan = 4, rowspan = 7)
2021-09-11 19:58:59 +02:00
2021-09-12 14:50:47 +02:00
#sendGRBL()
2021-09-11 19:58:59 +02:00
#BlockedButtons
blkbuttons = (up,down,left,right,z_up,z_down, zero_x, zero_y, zero_z, zero_all, setzero, gozero, spindle)
timedPositionRequest()
2021-09-02 20:39:49 +02:00
2021-08-28 18:48:23 +02:00
root.mainloop()