我正在尝试构建一个用于与串行设备通信的 gui。为此,我正在使用 Tkinter。我的问题是,每次我执行脚本时,只执行 estCon 函数和主循环,因此 gui 永远不会启动。如果我将 estCon 函数的定义放在主循环之后,则表示未找到 estCon 函数。
def estCon():
# establish connection
while True:
try:
ser = serial.Serial(port, baud, bytesize)
print('Connected.')
break
except serial.SerialException:
print('waiting for device ' + port + ' to be available.')
time.sleep(3)
starttime = time.time()
outfile = open(filename, 'a')
doprint = True
root = Tk()
estConButton = Button(root, text="Establish serial connection",
command=estCon())
estConButton.pack()
root.mainLoop()