Hi,
I'm writing an application in python to read data from a joystick and display it onto a screen with a background image overlay. i used the canvas widget to display the data to my screen.
The problem is, the text keeps updating the entries without clearing the previous entry and hence overwrites on the existing text.
Can anyone please tell me how to continuously refresh text without overwriting text enitries in the TKinter canvas widget?
cv.create_text(450, 200, text='', fill="Green", anchor='nw')
#cv.refresh() ?
time.sleep(0.5)