With very little code, you can quickly get going connecting your physical components together: from gpiozero import LED, Button led = LED(2) button = Button(3) button.when_pressed = led.on button.when ...
Component interfaces are provided to allow a frictionless way to get started with physical computing: from gpiozero import LED from time import sleep led = LED(2) while True: led.on() sleep(1) led.off ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results