The .gif above illustrates the output of a simple Python script on a Raspberry Pi Zero W where the HX711 chip was operating at 80Hz. In this example, each time the .weight function is called the ...
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 ...