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
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