2023-12-22 16:30:35 +01:00
|
|
|
import logging
|
2023-12-03 21:04:30 +01:00
|
|
|
import time
|
2023-12-21 16:34:46 +01:00
|
|
|
from tkinter import Button, Label, Variable, IntVar, Canvas, Frame, Listbox, Entry, Radiobutton, Tk, constants, LEFT
|
2023-12-03 21:04:30 +01:00
|
|
|
from tkinter import filedialog as fd
|
|
|
|
import os
|
|
|
|
from gerbil.gerbil import Gerbil
|
|
|
|
|
|
|
|
class touchCNC:
|
|
|
|
def __init__(self, root):
|
|
|
|
self.root = root
|
|
|
|
|
|
|
|
# GUI Main
|
2023-12-22 16:30:35 +01:00
|
|
|
self.stick_var = None
|
|
|
|
self.stick_var_disp = 'NSWE'
|
2023-12-03 21:04:30 +01:00
|
|
|
self.buttonsize_x = 5
|
|
|
|
self.buttonsize_y = 3
|
2023-12-21 16:02:15 +01:00
|
|
|
self.buttonsize_y_s = 1
|
2023-12-22 16:30:35 +01:00
|
|
|
self.pady_var = 3
|
2023-12-21 16:02:15 +01:00
|
|
|
self.file_list = []
|
|
|
|
self.list_items = Variable(value=self.file_list)
|
2023-12-03 21:04:30 +01:00
|
|
|
self.increments = 0
|
|
|
|
self.BORDER = 2
|
2023-12-22 16:30:35 +01:00
|
|
|
self.feedspeed = None
|
2023-12-28 20:38:53 +01:00
|
|
|
self.states = {'M3': '0', 'M8': '0', 'M6': '0', 'G10': '0', '32' :'0'} # self.spindle, Coolant, Toolchange
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
self.dict_GCODE = {'G': '0',
|
|
|
|
'X': '0',
|
|
|
|
'Y': '0',
|
|
|
|
'Z': '0',
|
|
|
|
'I': '0',
|
|
|
|
'J': '0',
|
|
|
|
'F': '0'
|
|
|
|
}
|
|
|
|
|
|
|
|
# GUI Color Scheme
|
2023-12-21 16:02:15 +01:00
|
|
|
self.attention = '#ED217C'
|
|
|
|
self.special = '#EC058E'
|
|
|
|
self.loaded = '#90E39A'
|
|
|
|
self.cooling = '#86BBD8'
|
|
|
|
self.toolchange = '#ADE25D'
|
|
|
|
self.secondary = '#B9A44C'
|
|
|
|
self.standard = '#6DB1BF' #F5F5F5'
|
|
|
|
self.feed = self.secondary
|
|
|
|
self.transport = '#FA7921'
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-28 20:38:53 +01:00
|
|
|
# Classic Scheme
|
|
|
|
attention = 'red'
|
|
|
|
loaded = 'green'
|
|
|
|
cooling = 'blue'
|
|
|
|
toolchange = 'yellow'
|
|
|
|
standard = '#17223B'
|
|
|
|
feed = '#283B67'
|
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
self.increments = IntVar()
|
2023-12-21 16:02:15 +01:00
|
|
|
self.movement = Frame(root, relief='ridge', bd=self.BORDER, padx=10, pady=10)
|
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
self.left = Button(root, text="-X", width=self.buttonsize_x, height=self.buttonsize_y,
|
|
|
|
command=lambda: self.jogWrite('X', '-1', self.increments), bd=self.BORDER, bg=self.standard)
|
|
|
|
self.right = Button(root, text="+X", width=self.buttonsize_x, height=self.buttonsize_y,
|
|
|
|
command=lambda: self.jogWrite('X', '1', self.increments), bd=self.BORDER, bg=self.standard)
|
|
|
|
self.up = Button(root, text="+Y", width=self.buttonsize_x, height=self.buttonsize_y,
|
|
|
|
command=lambda: self.jogWrite('Y', '1', self.increments), bd=self.BORDER, bg=self.standard)
|
|
|
|
self.down = Button(root, text="-Y", width=self.buttonsize_x, height=self.buttonsize_y,
|
|
|
|
command=lambda: self.jogWrite('Y', '-1', self.increments), bd=self.BORDER, bg=self.standard)
|
|
|
|
self.z_up = Button(root, text="+Z", width=self.buttonsize_x, height=self.buttonsize_y,
|
|
|
|
command=lambda: self.jogWrite('Z', '1', self.increments), bd=self.BORDER, bg=self.standard)
|
|
|
|
self.z_down = Button(root, text="-Z", width=self.buttonsize_x, height=self.buttonsize_y,
|
|
|
|
command=lambda: self.jogWrite('Z', '-1', self.increments), bd=self.BORDER, bg=self.standard)
|
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
self.zero_x = Button(root, text="zero X", width=self.buttonsize_x, height=self.buttonsize_y_s, command=lambda: self.directWrite('G10 P0 L20 X0'),
|
|
|
|
bd=self.BORDER, bg=self.secondary)
|
|
|
|
self.zero_y = Button(root, text="zero Y", width=self.buttonsize_x, height=self.buttonsize_y_s, command=lambda: self.directWrite('G10 P0 L20 Y0'),
|
|
|
|
bd=self.BORDER, bg=self.secondary)
|
|
|
|
self.zero_z = Button(root, text="zero Z", width=self.buttonsize_x, height=self.buttonsize_y_s, command=lambda: self.directWrite('G10 P0 L20 Z0'),
|
|
|
|
bd=self.BORDER, bg=self.secondary)
|
|
|
|
self.zero_all = Button(root, text="zeroAll", width=self.buttonsize_x, height=self.buttonsize_y_s, command=lambda: self.latchWrite('G10'),
|
|
|
|
bd=self.BORDER, bg=self.special)
|
|
|
|
|
|
|
|
self.setzero = Button(root, text="SetPOS", width=self.buttonsize_x, height=self.buttonsize_y_s,
|
|
|
|
command=lambda: self.directWrite('G28.1'), bd=self.BORDER, bg= self.standard)
|
|
|
|
self.gozero = Button(root, text="GoPOS", width=self.buttonsize_x, height=self.buttonsize_y_s, command=lambda: self.directWrite('G28'),
|
2023-12-09 22:05:10 +01:00
|
|
|
bd=self.BORDER , bg= self.attention)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
self.connect_ser = Button(root, text="Cnnct", width=self.buttonsize_x, height=self.buttonsize_y,
|
2023-12-21 16:02:15 +01:00
|
|
|
command=self.grblConnect2, bg=self.standard, bd=self.BORDER)
|
2023-12-03 21:04:30 +01:00
|
|
|
self.discon_ser = Button(root, text="Dsconct", width=self.buttonsize_x, height=self.buttonsize_y, command= self.grblClose,
|
2023-12-21 16:02:15 +01:00
|
|
|
bd=self.BORDER, bg=self.standard)
|
|
|
|
self.unlock = Button(root, text="Unlock", width=self.buttonsize_x, height=1, command=self.grblUnlock,
|
2023-12-03 21:04:30 +01:00
|
|
|
bd=self.BORDER)
|
|
|
|
self.start = Button(root, text="START", width=self.buttonsize_x, height=self.buttonsize_y, bg=self.attention,
|
|
|
|
command=self.grblWrite, bd=self.BORDER)
|
2023-12-09 22:05:10 +01:00
|
|
|
self.stop = Button(root, text="STOP", width=self.buttonsize_x, height=self.buttonsize_y, bd=self.BORDER, bg=self.transport,
|
2023-12-03 21:04:30 +01:00
|
|
|
command=self.grblStop)
|
2023-12-09 22:05:10 +01:00
|
|
|
self.pause = Button(root, text="PAUSE", width=self.buttonsize_x, height=self.buttonsize_y, bd=self.BORDER, bg=self.transport,
|
2023-12-03 21:04:30 +01:00
|
|
|
command=self.grblPause)
|
2023-12-09 22:05:10 +01:00
|
|
|
self.resume = Button(root, text="RESUME", width=self.buttonsize_x, height=self.buttonsize_y, bd=self.BORDER, bg=self.transport,
|
|
|
|
command=self.grblResume)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
self.fopen = Button(root, text="OPEN", width=self.buttonsize_x, height=self.buttonsize_y, bg=self.standard, fg='black',
|
2023-12-03 21:04:30 +01:00
|
|
|
command=self.openGCODE, bd=self.BORDER)
|
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
self.fopendir = Button(root, text="DIR", width=self.buttonsize_x, height=self.buttonsize_y, bg=self.standard,
|
|
|
|
fg='black',
|
|
|
|
command=self.openDir, bd=self.BORDER)
|
|
|
|
|
|
|
|
|
2023-12-09 22:05:10 +01:00
|
|
|
self.spindle = Button(root, text="Spindle", width=self.buttonsize_x, height=self.buttonsize_y, bg=self.standard,
|
2023-12-03 21:04:30 +01:00
|
|
|
command=lambda: self.latchWrite('M3'))
|
2023-12-09 22:05:10 +01:00
|
|
|
self.coolant = Button(root, text="Coolant", width=self.buttonsize_x, height=self.buttonsize_y, bg=self.standard,
|
2023-12-03 21:04:30 +01:00
|
|
|
command=lambda: self.latchWrite('M8'))
|
2023-12-22 16:30:35 +01:00
|
|
|
self.tool = Button(root, text="Tool", width=self.buttonsize_x, height=self.buttonsize_y, bg=self.standard, command=lambda: self.directWrite('G10'))
|
2023-12-21 16:34:46 +01:00
|
|
|
self.macro = Button(root, text="Laser", width=self.buttonsize_x, height=self.buttonsize_y, bg=self.standard,
|
|
|
|
command=lambda: self.latchWrite('32')) #self.directWrite(' G91 G0 X10 Y10 Z50 F1000'))
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
self.inc1 = Button(root, text="Inc 1%", width=self.buttonsize_x, height=self.buttonsize_y, command=lambda: self.feed_over_write(1),
|
2023-12-03 21:04:30 +01:00
|
|
|
bg=self.feed)
|
2023-12-22 16:30:35 +01:00
|
|
|
self.inc10 = Button(root, text="Inc 10%", width=self.buttonsize_x, height=self.buttonsize_y, command=lambda: self.feed_over_write(10),
|
2023-12-03 21:04:30 +01:00
|
|
|
bg=self.feed)
|
2023-12-22 16:30:35 +01:00
|
|
|
self.dec1 = Button(root, text="Dec 1%", width=self.buttonsize_x, height=self.buttonsize_y, command=lambda: self.feed_over_write(-1),
|
2023-12-03 21:04:30 +01:00
|
|
|
bg=self.feed)
|
2023-12-22 16:30:35 +01:00
|
|
|
self.dec10 = Button(root, text="Dec 10%", width=self.buttonsize_x, height=self.buttonsize_y, command=lambda: self.feed_over_write(-10),
|
2023-12-03 21:04:30 +01:00
|
|
|
bg=self.feed)
|
2023-12-22 16:30:35 +01:00
|
|
|
self.reset = Button(root, text="<RESET", width=self.buttonsize_x, height=self.buttonsize_y, command=lambda: self.feed_over_write(0),
|
2023-12-21 16:02:15 +01:00
|
|
|
bg=self.secondary)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
self.reboot = Button(root, text="REBOOT", width=self.buttonsize_x, height=self.buttonsize_y,
|
2023-12-21 16:02:15 +01:00
|
|
|
command=lambda: os.system('reboot'), bg=self.secondary)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
self.step_incr1 = Radiobutton(root, text='0,1', value=1, variable=self.increments, width=self.buttonsize_x,
|
2023-12-21 16:02:15 +01:00
|
|
|
height=self.buttonsize_y, indicatoron=0, bg=self.secondary)
|
2023-12-03 21:04:30 +01:00
|
|
|
self.step_incr2 = Radiobutton(root, text='1', value=2, variable=self.increments, width=self.buttonsize_x, height=self.buttonsize_y,
|
2023-12-21 16:02:15 +01:00
|
|
|
indicatoron=0, bg=self.secondary)
|
2023-12-03 21:04:30 +01:00
|
|
|
self.step_incr3 = Radiobutton(root, text='10', value=3, variable=self.increments, width=self.buttonsize_x, height=self.buttonsize_y,
|
2023-12-21 16:02:15 +01:00
|
|
|
indicatoron=0, bg=self.secondary)
|
2023-12-03 21:04:30 +01:00
|
|
|
self.step_incr4 = Radiobutton(root, text='100', value=4, variable=self.increments, width=self.buttonsize_x,
|
2023-12-21 16:02:15 +01:00
|
|
|
height=self.buttonsize_y, indicatoron=0, bg=self.secondary)
|
2023-12-03 21:04:30 +01:00
|
|
|
self.step_incr2.select()
|
|
|
|
|
2023-12-21 16:34:46 +01:00
|
|
|
self.files = Listbox(root, bg='white', fg='black',font=("Arial", 16))
|
2023-12-21 16:02:15 +01:00
|
|
|
self.terminal = Entry(root, text="GCODE", fg= 'white')
|
2023-12-22 16:30:35 +01:00
|
|
|
self.terminal_send = Button(root, text="SEND", bd=3,command=lambda: self.directWrite(self.terminal.get()))
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
self.terminal_recv = Label(root, bg='white', fg='black', text="Message Type")
|
2023-12-21 16:34:46 +01:00
|
|
|
self.terminal_recv_content = Label(root, bg='white', fg='black', width= 35, wraplength=200, anchor=constants.W, justify=LEFT)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
self.terminal_recv_progress = Label(root, bg='white', fg='black', text="Progress")
|
|
|
|
self.terminal_recv_feed = Label(root, bg='white', fg='black', text="Feed")
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
self.show_ctrl_x_label = Label(root, text="X", fg= 'lightgrey')
|
|
|
|
self.show_ctrl_y_label = Label(root, text="Y", fg= 'lightgrey')
|
|
|
|
self.show_ctrl_z_label = Label(root, text="Z", fg= 'lightgrey')
|
|
|
|
self.show_ctrl_x = Label(root, text="X_POS", width=8, height=2, bg='white', relief=constants.SUNKEN, fg='black')
|
|
|
|
self.show_ctrl_y = Label(root, text="Y_POS", width=8, height=2, bg='white', relief=constants.SUNKEN, fg='black')
|
|
|
|
self.show_ctrl_z = Label(root, text="Z_POS", width=8, height=2, bg='white', relief=constants.SUNKEN, fg='black')
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
self.show_ctrl_x_w = Label(root, text="X_POS_W", width=8, height=2, bg='white', relief=constants.SUNKEN, fg='black')
|
|
|
|
self.show_ctrl_y_w = Label(root, text="Y_POS_W", width=8, height=2, bg='white', relief=constants.SUNKEN, fg='black')
|
|
|
|
self.show_ctrl_z_w = Label(root, text="Z_POS_W", width=8, height=2, bg='white', relief=constants.SUNKEN, fg='black')
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
# self.feed_control = Scale(root, orient = HORIZONTAL, length = 400, label = "self.feedrate",tickinterval = 20)
|
|
|
|
# Milling Area and Gcode preview with grid generation
|
|
|
|
self.mill_table = Canvas(root, bg='grey')
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
self.mill_table.create_rectangle(50, 50, 350, 350, fill='white')
|
|
|
|
self.mill_table.create_text(200, 25, text='Fräsbereich 300mm x 300mm')
|
|
|
|
|
|
|
|
for x in range(50, 350, 50):
|
|
|
|
self.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 = self.mill_table.create_line(x, 0, x, 400)
|
|
|
|
gitter_y = self.mill_table.create_line(0, y, 400, y)
|
|
|
|
|
|
|
|
self.movement.grid(row=0, column=0, columnspan=3, rowspan=1)
|
2023-12-22 16:30:35 +01:00
|
|
|
self.left.grid(row=1, column=0, padx=3, pady=2, sticky=self.stick_var)
|
|
|
|
self.right.grid(row=1, column=2, padx=3, pady=2, sticky=self.stick_var)
|
|
|
|
self.up.grid(row=0, column=1, padx=3, pady=self.pady_var , sticky=self.stick_var)
|
|
|
|
self.down.grid(row=1, column=1, padx=3, pady=2, sticky=self.stick_var)
|
|
|
|
self.z_up.grid(row=0, column=3, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.z_down.grid(row=1, column=3, padx=10, pady=2, sticky=self.stick_var)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
self.step_incr2.select()
|
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
self.step_incr1.grid(row=2, column=0, padx=3, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.step_incr2.grid(row=2, column=1, padx=3, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.step_incr3.grid(row=2, column=2, padx=3, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.step_incr4.grid(row=2, column=3, padx=3, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
|
|
|
|
self.show_ctrl_x_label.grid(row=3, column=0, padx=3, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.show_ctrl_y_label.grid(row=4, column=0, padx=3, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.show_ctrl_z_label.grid(row=5, column=0, padx=3, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
|
|
|
|
self.show_ctrl_x.grid(row=3, column=1, padx=0, pady=0, columnspan=1, sticky=self.stick_var)
|
|
|
|
self.show_ctrl_y.grid(row=4, column=1, padx=0, pady=0, columnspan=1, sticky=self.stick_var)
|
|
|
|
self.show_ctrl_z.grid(row=5, column=1, padx=0, pady=0, columnspan=1, sticky=self.stick_var)
|
|
|
|
self.show_ctrl_z.grid(row=5, column=1, padx=0, pady=0, columnspan=1, sticky=self.stick_var)
|
|
|
|
|
|
|
|
self.show_ctrl_x_w.grid(row=3, column=2, padx=0, pady=0, columnspan=1, sticky=self.stick_var)
|
|
|
|
self.show_ctrl_y_w.grid(row=4, column=2, padx=0, pady=0, columnspan=1, sticky=self.stick_var)
|
|
|
|
self.show_ctrl_z_w.grid(row=5, column=2, padx=0, pady=0, columnspan=1, sticky=self.stick_var)
|
|
|
|
|
|
|
|
self.zero_x.grid(row=3, column=3, sticky=self.stick_var)
|
|
|
|
self.zero_y.grid(row=4, column=3, sticky=self.stick_var)
|
|
|
|
self.zero_z.grid(row=5, column=3, sticky=self.stick_var)
|
|
|
|
self.zero_all.grid(row=6, column=3, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
|
|
|
|
self.setzero.grid(row=6, column=0, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.gozero.grid(row=6, column=1, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
|
|
|
|
self.connect_ser.grid(row=7, column=0, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.discon_ser.grid(row=7, column=1, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.unlock.grid(row=8, column=9, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.start.grid(row=7, column=2, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.stop.grid(row=7, column=3, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.pause.grid(row=8, column=2, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.resume.grid(row=8, column=3, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.fopen.grid(row=8, column=0, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.fopendir.grid(row=8, column=1, padx=10, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
|
|
|
|
self.spindle.grid(row=7, column=4, padx=1, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.coolant.grid(row=7, column=5, padx=1, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.tool.grid(row=7, column=6, padx=1, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.macro.grid(row=7, column=7, padx=1, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
|
|
|
|
self.dec10.grid(row=8, column=4, padx=1, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.dec1.grid(row=8, column=5, padx=1, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.inc1.grid(row=8, column=6, padx=1, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
self.inc10.grid(row=8, column=7, padx=1, pady=self.pady_var, sticky=self.stick_var)
|
|
|
|
|
|
|
|
self.reset.grid(row=8, column=8, padx=10, pady=self.pady_var, sticky='W')
|
|
|
|
self.reboot.grid(row=8, column=9, padx=10, pady=self.pady_var)
|
|
|
|
|
|
|
|
self.terminal.grid(row=7, column=8, padx=10, pady=self.pady_var, sticky='W')
|
2023-12-21 16:02:15 +01:00
|
|
|
self.terminal_send.grid(row=7, column=9, padx=2, pady=self.pady_var)
|
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
self.files.grid(row=0, column=8, padx=10, pady=self.pady_var, rowspan=3, columnspan=2, sticky=self.stick_var_disp)
|
|
|
|
#self.terminal_recv.grid(row=3, column=8, padx=10, pady=self.pady_var, columnspan=2, sticky=self.stick_var)
|
|
|
|
self.terminal_recv_content.grid(row=3, column=8, padx=10, pady=self.pady_var,rowspan=2, columnspan=2, sticky=self.stick_var_disp)
|
|
|
|
self.terminal_recv_progress.grid(row=5, column=8, padx=10, pady=self.pady_var, columnspan=2, sticky=self.stick_var_disp)
|
|
|
|
self.terminal_recv_feed.grid(row=6, column=8, padx=10, pady=self.pady_var, columnspan=2, sticky=self.stick_var_disp)
|
|
|
|
self.mill_table.grid(row=0, column=4, padx=10, pady=self.pady_var, columnspan=4, rowspan=7, sticky=self.stick_var_disp)
|
2023-12-09 19:10:31 +01:00
|
|
|
self.cursor_id = None
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
# BlockedButtons
|
|
|
|
self.blkbuttons = (self.up, self.down, self.left, self.right, self.z_up, self.z_down, self.zero_x, self.zero_y,
|
|
|
|
self.zero_z, self.zero_all, self.setzero, self.gozero, self.spindle)
|
|
|
|
# Initialize the counter
|
2023-12-09 22:05:10 +01:00
|
|
|
self.table = DrawonTable(self.mill_table)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
def on_zero_position(self, label, pos):
|
2023-12-21 16:02:15 +01:00
|
|
|
#print("Updated", pos)
|
2023-12-03 21:04:30 +01:00
|
|
|
label.config(text=pos)
|
|
|
|
|
|
|
|
def gui_callback(self, eventstring, *data):
|
|
|
|
args = []
|
2023-12-21 16:02:15 +01:00
|
|
|
#print(data)
|
2023-12-03 21:04:30 +01:00
|
|
|
for d in data:
|
|
|
|
args.append(str(d))
|
2023-12-21 16:02:15 +01:00
|
|
|
#print("GUI CALLBACK: event={} data={}".format(eventstring.ljust(30), ", ".join(args)))
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
if eventstring == "on_stateupdate":
|
2023-12-21 16:02:15 +01:00
|
|
|
#print("stateupdate", data)
|
2023-12-09 19:10:31 +01:00
|
|
|
self.on_zero_position(self.show_ctrl_x, data[2][0])
|
|
|
|
self.on_zero_position(self.show_ctrl_y, data[2][1])
|
|
|
|
self.on_zero_position(self.show_ctrl_z, data[2][2])
|
|
|
|
|
|
|
|
pos = [data[2][0], data[2][1]]
|
|
|
|
#self.table.drawgridTable()
|
|
|
|
self.table.setPos(pos)
|
|
|
|
|
|
|
|
self.table.deleteCursor(self.cursor_id)
|
|
|
|
self.cursor_id = self.table.drawToolCursor()
|
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
elif eventstring == "on_hash_stateupdate":
|
|
|
|
#print("args", type(data[0]))
|
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
self.displayWorkPosition(data[0]["G28"])
|
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
elif eventstring == "on_progress_percent":
|
|
|
|
self.terminal_recv_progress.config(text=f"Job completion: {data[0]} %")
|
|
|
|
|
|
|
|
elif eventstring == "on_feed_change":
|
|
|
|
self.terminal_recv_feed.config(text=f"Feed: {data[0]} mm/min")
|
2023-12-22 16:30:35 +01:00
|
|
|
self.feedspeed = data[0]
|
2023-12-09 19:10:31 +01:00
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
elif eventstring == "on_rx_buffer_percent":
|
|
|
|
pass
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
elif eventstring == "on_gcode_parser_stateupdate":
|
|
|
|
if len(data) > 9:
|
|
|
|
self.feedspeed = data[10]
|
|
|
|
|
|
|
|
elif eventstring == "on_read":
|
|
|
|
if data[0] == '$32=1':
|
|
|
|
self.macro.config(background=self.attention)
|
|
|
|
|
|
|
|
elif data[0] == '$32=0':
|
|
|
|
self.macro.config(background=self.loaded)
|
|
|
|
|
|
|
|
#elif eventstring == "on_processed_command":
|
|
|
|
# pass
|
2023-12-21 16:02:15 +01:00
|
|
|
|
|
|
|
elif eventstring == "on_line_sent":
|
|
|
|
pass
|
|
|
|
|
|
|
|
else:
|
|
|
|
self.terminal_recv.config(text=eventstring)
|
|
|
|
self.terminal_recv_content.config(text=data)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
import time
|
|
|
|
import logging
|
|
|
|
|
|
|
|
def grblConnect2(self, baudrate=115200, max_retries=5, retry_interval=3):
|
|
|
|
retry_count = 0
|
|
|
|
locations = ['/dev/ttyUSB0', '/dev/ttyACM0', '/dev/ttyUSB1', '/dev/ttyACM1', '/dev/ttyACM2', '/dev/ttyACM3',
|
|
|
|
'/dev/ttyS0', '/dev/ttyS1', '/dev/ttyS2', '/dev/ttyS3']
|
|
|
|
|
|
|
|
# Configure logging
|
|
|
|
logging.basicConfig(level=logging.DEBUG)
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
if not grbl.connected:
|
|
|
|
for device in locations:
|
|
|
|
if retry_count < max_retries:
|
|
|
|
try:
|
|
|
|
logger.info(f"Attempting to connect to {device}")
|
|
|
|
grbl.cnect(path=device, baudrate=baudrate)
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
logger.error(f"Failed to connect to {device}: {e}")
|
|
|
|
self.terminal_recv_content.config(text=f"Failed to connect to {device}: {e}")
|
|
|
|
retry_count += 1
|
|
|
|
time.sleep(retry_interval)
|
|
|
|
|
|
|
|
logger.warning(f"Failed to connect after {max_retries} attempts.")
|
|
|
|
|
|
|
|
finally:
|
|
|
|
time.sleep(3)
|
|
|
|
grbl.setup_logging()
|
|
|
|
self.connect_ser.config(bg=self.loaded)
|
|
|
|
#rbl.request_settings()
|
|
|
|
logger.info(f"Connection successful to {device}")
|
|
|
|
self.terminal_recv_content.config(text=f"Connection successful to {device}")
|
|
|
|
grbl.connected = True
|
|
|
|
grbl.poll_start()
|
|
|
|
self.terminal_recv_content.config(text=f"State: {grbl.connected}")
|
|
|
|
#grbl.set_feed_override(True)
|
2023-12-09 22:05:10 +01:00
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
def grblClose(self):
|
|
|
|
grbl.softreset()
|
2023-12-28 20:38:53 +01:00
|
|
|
print(grbl.connected)
|
2023-12-22 16:30:35 +01:00
|
|
|
grbl.disconnect()
|
|
|
|
self.connect_ser.config(bg=self.secondary)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
def displayWorkPosition(self, pos: list):
|
2023-12-09 22:05:10 +01:00
|
|
|
#print("update", pos)
|
2023-12-03 21:04:30 +01:00
|
|
|
self.show_ctrl_x_w.config(text = pos[0])
|
|
|
|
self.show_ctrl_y_w.config(text = pos[1])
|
|
|
|
self.show_ctrl_z_w.config(text = pos[2])
|
|
|
|
#self.root.after(1000, self.getPosition)
|
|
|
|
|
|
|
|
def jogWrite(self, axis, cmd, scale):
|
|
|
|
DECIMAL = [0.1, 1, 10, 100]
|
|
|
|
scale = self.increments.get()
|
|
|
|
MOVE = int(cmd) * DECIMAL[scale - 1]
|
|
|
|
grbl_command = ('$J=G91' + 'G21' + axis + str(MOVE) + 'F1000')
|
|
|
|
# print(grbl_command) $J=G91G21X10F185
|
|
|
|
|
|
|
|
grbl.send_immediately(grbl_command)
|
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
def directWrite(self, cmd):
|
2023-12-03 21:04:30 +01:00
|
|
|
grbl.send_immediately(cmd)
|
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
def feed_over_write(self, change: int):
|
2023-12-22 20:53:46 +01:00
|
|
|
pass
|
2023-12-22 16:30:35 +01:00
|
|
|
new_feed = self.feedspeed / 100 * change
|
|
|
|
print(new_feed)
|
|
|
|
grbl.request_feed(new_feed)
|
|
|
|
|
2023-12-09 22:05:10 +01:00
|
|
|
def latchWrite(self, CMD):
|
2023-12-03 21:04:30 +01:00
|
|
|
if self.states[CMD] == '0':
|
|
|
|
self.states[CMD] = '1'
|
2023-12-09 22:05:10 +01:00
|
|
|
self.update_button_color(CMD, True)
|
2023-12-03 21:04:30 +01:00
|
|
|
else:
|
|
|
|
self.states[CMD] = '0'
|
2023-12-09 22:05:10 +01:00
|
|
|
self.update_button_color(CMD, False)
|
|
|
|
|
|
|
|
grbl_command = self.get_grbl_command(CMD)
|
|
|
|
grbl.send_immediately(grbl_command)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-09 22:05:10 +01:00
|
|
|
def update_button_color(self, CMD, is_active):
|
2023-12-03 21:04:30 +01:00
|
|
|
if CMD == 'M3':
|
2023-12-09 22:05:10 +01:00
|
|
|
self.spindle.config(bg=self.attention if is_active else self.loaded)
|
2023-12-21 16:34:46 +01:00
|
|
|
|
2023-12-09 22:05:10 +01:00
|
|
|
elif CMD == 'M6':
|
|
|
|
self.tool.config(bg=self.toolchange if is_active else self.standard)
|
2023-12-21 16:34:46 +01:00
|
|
|
|
2023-12-09 22:05:10 +01:00
|
|
|
elif CMD == 'G10':
|
|
|
|
self.zero_all.config(bg=self.loaded if is_active else self.attention)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-21 16:34:46 +01:00
|
|
|
elif CMD == '32':
|
|
|
|
self.macro.config(bg=self.loaded if is_active else self.attention)
|
|
|
|
|
|
|
|
elif CMD == 'M8':
|
2023-12-09 22:05:10 +01:00
|
|
|
self.coolant.config(bg=self.cooling if is_active else self.standard)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-09 22:05:10 +01:00
|
|
|
def get_grbl_command(self, CMD):
|
|
|
|
if CMD == 'M3':
|
2023-12-22 16:30:35 +01:00
|
|
|
return 'M3 S1000' if self.states['M3'] == '1' else 'M5'
|
2023-12-21 16:34:46 +01:00
|
|
|
|
2023-12-09 22:05:10 +01:00
|
|
|
elif CMD == 'M8':
|
|
|
|
return CMD if self.states[CMD] == '1' else 'M9'
|
2023-12-21 16:34:46 +01:00
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
elif CMD == 'G10':
|
2023-12-09 22:05:10 +01:00
|
|
|
return 'G10 P0 L20 X0 Y0 Z0'
|
2023-12-21 16:34:46 +01:00
|
|
|
|
|
|
|
elif CMD == '32':
|
|
|
|
return '$32=0' if self.states['32'] == '1' else '$32=1'
|
2023-12-03 21:04:30 +01:00
|
|
|
else:
|
2023-12-09 22:05:10 +01:00
|
|
|
return CMD
|
|
|
|
def overrideCMD(self, cmd):
|
2023-12-03 21:04:30 +01:00
|
|
|
pass
|
|
|
|
#grbl.
|
|
|
|
|
|
|
|
def openGCODE(self):
|
|
|
|
filetypes = (('GCODE', '*.nc'), ('All files', '*.*'))
|
2023-12-21 16:02:15 +01:00
|
|
|
if not self.file_list:
|
2023-12-22 20:53:46 +01:00
|
|
|
GCODE = fd.askopenfilename(title='Open a file', initialdir='/home/', filetypes=filetypes)
|
2023-12-21 16:02:15 +01:00
|
|
|
else:
|
|
|
|
GCODE = self.load_gcode_from_listbox()
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
if GCODE:
|
2023-12-22 16:30:35 +01:00
|
|
|
grbl.abort()
|
|
|
|
grbl.job_new()
|
2023-12-03 21:04:30 +01:00
|
|
|
self.fopen.config(bg=self.loaded)
|
|
|
|
extracted = self.extract_GCODE(GCODE)
|
2023-12-09 22:05:10 +01:00
|
|
|
draw = DrawonTable(self.mill_table)
|
2023-12-09 19:10:31 +01:00
|
|
|
draw.drawgridTable()
|
|
|
|
draw.setGCODE(extracted)
|
2023-12-21 16:02:15 +01:00
|
|
|
draw.draw_GCODE(extracted)
|
2023-12-09 19:10:31 +01:00
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
grbl.load_file(GCODE)
|
|
|
|
|
|
|
|
else:
|
2023-12-21 16:02:15 +01:00
|
|
|
self.fopen.config(bg=self.secondary)
|
|
|
|
|
2023-12-22 20:53:46 +01:00
|
|
|
def get_filenames(self, base_path):
|
2023-12-21 16:02:15 +01:00
|
|
|
filenames = []
|
2023-12-22 20:53:46 +01:00
|
|
|
full_path_list = []
|
2023-12-21 16:02:15 +01:00
|
|
|
|
|
|
|
# Use os.listdir to get the list of files and directories in the base path
|
|
|
|
entries = os.listdir(base_path)
|
|
|
|
|
|
|
|
if entries:
|
|
|
|
for entry in entries:
|
|
|
|
# Use os.path.join to create the full path of the entry
|
|
|
|
full_path = os.path.join(base_path, entry)
|
|
|
|
|
|
|
|
# Check if the entry is a file (not a directory)
|
|
|
|
if os.path.isfile(full_path):
|
2023-12-22 20:53:46 +01:00
|
|
|
filenames.append(full_path)
|
|
|
|
print(filenames)
|
2023-12-21 16:02:15 +01:00
|
|
|
else:
|
|
|
|
filenames = ["Such Empty"]
|
|
|
|
|
|
|
|
return filenames
|
|
|
|
|
|
|
|
def openDir(self):
|
|
|
|
self.file_list = []
|
2023-12-22 20:53:46 +01:00
|
|
|
self.path_list = []
|
|
|
|
directory = fd.askdirectory(title='Open a Folder', initialdir='/home/')
|
2023-12-21 16:02:15 +01:00
|
|
|
allowed_extensions = {'nc', 'GCODE'} # Use a set for efficient membership testing
|
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
if directory:
|
2023-12-22 20:53:46 +01:00
|
|
|
path = self.get_filenames(directory)
|
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
self.files.delete(0, constants.END)
|
2023-12-22 20:53:46 +01:00
|
|
|
for file in path:
|
2023-12-22 16:30:35 +01:00
|
|
|
# Check if the file has an allowed extension
|
|
|
|
if any(file.lower().endswith(ext) for ext in allowed_extensions):
|
2023-12-22 20:53:46 +01:00
|
|
|
self.path_list.append(file)
|
|
|
|
file = file.split('/')[-1]
|
2023-12-22 16:30:35 +01:00
|
|
|
self.file_list.append(file)
|
|
|
|
self.files.insert("end", file) # Add the filename to the Listbox
|
|
|
|
else:
|
|
|
|
print("Please select Folder")
|
|
|
|
self.terminal_recv_content.config(text="Please select Folder")
|
2023-12-21 16:02:15 +01:00
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
#print(self.file_list)
|
2023-12-21 16:02:15 +01:00
|
|
|
def load_gcode_from_listbox(self):
|
2023-12-22 20:53:46 +01:00
|
|
|
"""Loads selected file path from the listbox selection for passing it to the loaded indirectly"""
|
2023-12-21 16:02:15 +01:00
|
|
|
selected_indices = self.files.curselection()
|
|
|
|
if selected_indices:
|
|
|
|
selected_index = selected_indices[0]
|
2023-12-22 20:53:46 +01:00
|
|
|
selected_item = self.path_list[selected_index]
|
2023-12-21 16:02:15 +01:00
|
|
|
print("Selected item:", selected_item)
|
|
|
|
else:
|
|
|
|
print("No item selected")
|
|
|
|
|
|
|
|
return selected_item
|
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
def grblWrite(self):
|
|
|
|
grbl.job_run()
|
2023-12-09 22:05:10 +01:00
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
def grblStop(self):
|
2023-12-09 22:05:10 +01:00
|
|
|
grbl.job_halt()
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
def grblPause(self):
|
|
|
|
grbl.hold()
|
2023-12-09 22:05:10 +01:00
|
|
|
self.pause.config(bg='red')
|
|
|
|
def grblResume(self):
|
|
|
|
grbl.resume()
|
|
|
|
self.pause.config(bg=self.transport)
|
|
|
|
def grblUnlock(self):
|
|
|
|
grbl.killalarm()
|
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
def extract_GCODE(self, gcode_path: str): # Aufschlüsseln der enthaltenen Koordinaten in ein per Schlüssel zugängiges Dictionary
|
2023-12-22 20:53:46 +01:00
|
|
|
print(gcode_path)
|
2023-12-03 21:04:30 +01:00
|
|
|
with open(gcode_path, 'r') as gcode:
|
2023-12-22 20:53:46 +01:00
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
list_dict_GCODE = []
|
|
|
|
for line in gcode:
|
2023-12-21 16:02:15 +01:00
|
|
|
lines = line.split() # Elemente trennen und in Liste konvertieren
|
|
|
|
for command in lines:
|
2023-12-03 21:04:30 +01:00
|
|
|
# print (l)
|
2023-12-21 16:02:15 +01:00
|
|
|
if 'G' in command:
|
|
|
|
self.dict_GCODE['G'] = command.replace('G',
|
2023-12-03 21:04:30 +01:00
|
|
|
'') # Wert einfügen und gleichzeitig G CODE befehl entfernen
|
2023-12-21 16:02:15 +01:00
|
|
|
if 'X' in command:
|
|
|
|
self.dict_GCODE['X'] = command.replace('X', '')
|
|
|
|
if 'Y' in command:
|
|
|
|
self.dict_GCODE['Y'] = command.replace('Y', '')
|
|
|
|
if 'Z' in command:
|
|
|
|
self.dict_GCODE['Z'] = command.replace('Z', '')
|
|
|
|
if 'I' in command and not 'ZMIN':
|
|
|
|
self.dict_GCODE['I'] = command.replace('I', '')
|
|
|
|
if 'J' in command:
|
|
|
|
self.dict_GCODE['J'] = command.replace('J', '')
|
|
|
|
if 'F' in command and not 'Fusion':
|
|
|
|
self.dict_GCODE['F'] = command.replace('F', '')
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
# print(dict_GCODE)
|
|
|
|
list_dict_GCODE.append(
|
|
|
|
self.dict_GCODE.copy()) # Copy notwendig da es sich nur um einen "Pointer" handelt der immer auf die zuletzt aktualisierte dict Zeile zeigt.
|
2023-12-09 22:05:10 +01:00
|
|
|
#print(list_dict_GCODE)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
return list_dict_GCODE
|
|
|
|
|
2023-12-22 16:30:35 +01:00
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-09 22:05:10 +01:00
|
|
|
class DrawonTable:
|
2023-12-09 19:10:31 +01:00
|
|
|
def __init__(self, mill_table: object):
|
|
|
|
self.mill_table = mill_table
|
|
|
|
self.gcode: list = None
|
|
|
|
self.cursor_pos = None
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-09 19:10:31 +01:00
|
|
|
def setPos(self,pos):
|
|
|
|
if pos != None:
|
|
|
|
self.cursor_pos = pos
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
def setGCODE(self, gcode: list):
|
2023-12-09 19:10:31 +01:00
|
|
|
if gcode != None:
|
|
|
|
self.gcode = gcode
|
2023-12-03 21:04:30 +01:00
|
|
|
|
2023-12-09 19:10:31 +01:00
|
|
|
def clearTable(self):
|
2023-12-03 21:04:30 +01:00
|
|
|
self.mill_table.delete('all')
|
2023-12-09 19:10:31 +01:00
|
|
|
|
|
|
|
def drawToolCursor(self):
|
2023-12-22 16:30:35 +01:00
|
|
|
id = self.mill_table.create_text(50 + float(self.cursor_pos[0]), 342 - float(self.cursor_pos[1]), text='V', fill = 'red', font=("Arial", 16))
|
2023-12-09 19:10:31 +01:00
|
|
|
|
|
|
|
return id
|
|
|
|
|
|
|
|
def deleteCursor(self, id):
|
|
|
|
if id != None:
|
2023-12-09 22:05:10 +01:00
|
|
|
#print("deleted")
|
2023-12-09 19:10:31 +01:00
|
|
|
self.mill_table.delete(id)
|
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
def draw_GCODE(self, glist): # Zeichnen des GCodes zur Beurteilung des Bauraums
|
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
self.drawgridTable()
|
|
|
|
|
|
|
|
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'])
|
|
|
|
|
|
|
|
self.mill_table.create_line(x_y_current, x_y_next)
|
|
|
|
|
2023-12-21 16:02:15 +01:00
|
|
|
def get_coordinates(self, point):
|
|
|
|
x_str = point.get('X', '0')
|
|
|
|
y_str = point.get('Y', '0')
|
|
|
|
|
|
|
|
x = 50 + float(x_str[1:]) if x_str and x_str[0] == 'X' else 50
|
|
|
|
y = 350 - float(y_str[1:]) if y_str and y_str[0] == 'Y' else 350
|
|
|
|
|
|
|
|
return x, y
|
|
|
|
|
2023-12-09 19:10:31 +01:00
|
|
|
def drawgridTable(self):
|
|
|
|
self.mill_table.delete('all')
|
|
|
|
|
|
|
|
self.mill_table.create_rectangle(50, 50, 350, 350, fill='white')
|
|
|
|
self.mill_table.create_text(200, 25, text='Fräsbereich 300mm x 300mm')
|
|
|
|
|
|
|
|
for x in range(50, 350, 50):
|
|
|
|
self.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 = self.mill_table.create_line(x, 0, x, 400)
|
|
|
|
gitter_y = self.mill_table.create_line(0, y, 400, y)
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
root = Tk()
|
|
|
|
root.title('touchCNC')
|
|
|
|
root.geometry('1024x600+0+0')
|
2023-12-21 16:02:15 +01:00
|
|
|
root.grid_propagate(True)
|
2023-12-03 21:04:30 +01:00
|
|
|
root.resizable(False, False) # 17203b
|
|
|
|
root.attributes('-fullscreen', False)
|
2023-12-21 16:02:15 +01:00
|
|
|
root.tk_setPalette(background='#4B4A67', foreground='black', activeBackground='#F99417',
|
|
|
|
activeForeground='lightgrey')
|
|
|
|
|
2023-12-03 21:04:30 +01:00
|
|
|
|
|
|
|
app = touchCNC(root)
|
|
|
|
grbl = Gerbil(app.gui_callback)
|
|
|
|
grbl.hash_state_requested = True
|
|
|
|
grbl.gcode_parser_state_requested = True
|
|
|
|
|
|
|
|
root.mainloop()
|