AIC1000, a compact industrial AI camera built around the Raspberry Pi CM0 and designed for machine vision and industrial automation applications, such as quality inspection, object detection, and ...
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 ...