pigpio is a Python module for controlling the Raspberry Pi's GPIO pins. It provides both local and remote GPIO control via the pigpio daemon. Current version is 1.78, with infrequent releases.
pip install pigpioVerified import paths — ran on the pinned version, not inferred.
Blink an LED on GPIO 17. Requires pigpio daemon (sudo pigpiod) to be running.
Start the daemon: sudo pigpiod
Use pigpio.pi() without arguments for local connection.
Always use BCM GPIO numbers (e.g., GPIO 17 is physical pin 11).
Run 'sudo pigpiod' to start the daemon.
pip install pigpio
Upgrade to latest pigpio: pip install --upgrade pigpio
No dependency data recorded yet.