<= Daha Fazlası İçin Abone Ol
<= Daha Fazlası İçin Abone Ol
from gpiozero import TrafficLights
from guizero import App,Text, PushButton
lights=TrafficLights(17,27,22)
uygulama=App("Trafik ışığı yönetimi", layout="grid")
Text(uygulama,"Trafik ışığı yönetimi", grid=[0, 0])
Text(uygulama,"Kırmızı", grid=[0, 1])
PushButton(uygulama, command=lights.red.on, text="Aç",grid=[1, 1])
PushButton(uygulama, command=lights.red.off, text="Kapat",grid=[2, 1])
Text(uygulama,"Sarı", grid=[0, 2])
PushButton(uygulama, command=lights.yellow.on, text="Aç",grid=[1, 2])
PushButton(uygulama, command=lights.yellow.off, text="Kapat",grid=[2, 2])
Text(uygulama,"Yeşil", grid=[0, 3])
PushButton(uygulama, command=lights.green.on, text="Aç",grid=[1, 3])
PushButton(uygulama, command=lights.green.off, text="Kapat",grid=[2, 3])
uygulama.display()