Caute,zacinam skusat programovat raspberry pi a chcel som spravit logovanie teplomeru.
Ale nefunguje mi to ako by som chcel :-(. ked zaskrtnem tlacitko tak sa mi spusti normalne cyklus ale on ide stale a neda sa vypnut, lebo sa mi neda ani stlacit tlacitko.
mozno je to cele zle mozete ma nasmerovat k riesenu
dakujem
mam takyto kod:
from tkinter import *
import time
def mAuto():
print ("stav %d" % (stav.get()))
if stav.get()==1:
while(True):
print ("cyklus")
time.sleep(3)
if stav.get() == 0:
print ("je 0")
master = Tk()
Label(master, text="teplomer").grid(row=0, sticky=W)
stav = IntVar()
Checkbutton(master, text='Spusti automaticke meranie',variable=stav, command=mAuto).grid(row=4, sticky=W, pady=4)
master.mainloop()