[Tkinter-discuss] Newbie question - displaying data

2009-10-19 Thread MickSulley
Hi, I am new to TKinter and struggling somewhat. I have a Python program that reads a number of temperatures from sensors in tanks and pipework, that is working fine. I now want to display those temperatures, ideally a simple diagram of the pipework with boxes displaying the values. I don't ne

Re: [Tkinter-discuss] Newbie question - displaying data

2009-10-19 Thread Lion Kimbro
This sounds like a great use for **the canvas widget.** 1. Draw layout with canvas lines and rectangles. 2. Draw text representing sensor readings onto canvas. 3. Refresh display by reconfiguring text, once a second. The great thing about canvas is that -- once you've got text place