Displaying up to date input signals with tkinter GUI Displaying up to date input signals with tkinter GUI tkinter tkinter

Displaying up to date input signals with tkinter GUI


Your pseudo code includes a while 1 loop, but your actual code does not. Also, Inc() is never called. I suggest you add the following lines to the end of Inputs():

self.Inc()self.root.after(10, self.Inputs)

You'll also have to make root an instance variable, i.e. include self.root = root in __init__() for this to work.