#Traffic HAT ###A quick and easy way to learn the basics of GPIO on a budget. All in a nice HAT. ##AWAITING TRANSLATION ##EN COURS DE TRADUCTION ```python import RPi.GPIO as IO from time import sleep IO.setmode(IO.BCM) #Lights IO.setup(22,IO.OUT) IO.setup(23,IO.OUT) IO.setup(24,IO.OUT) #Buzzer IO.setup(5,IO.OUT) #Button IO.setup(25,IO.IN,pull_up_down=IO.PUD_UP) ```