DEBSOURCES
Skip Quicknav
sources / gpiozero / 2.0.1-0.1 / docs / examples / all_on_2.py
123456789
from gpiozero import TrafficHat from signal import pause th = TrafficHat() th.button.when_pressed = th.on th.button.when_released = th.off pause()