Skip to content

Instantly share code, notes, and snippets.

@tstellanova
Last active March 31, 2024 17:45
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tstellanova/8b1fb350a148eace6541b5fbd2c021ca to your computer and use it in GitHub Desktop.
Save tstellanova/8b1fb350a148eace6541b5fbd2c021ca to your computer and use it in GitHub Desktop.
Install pigpiod on Raspberry Pi 3 (RPi3) running raspbian buster

Install pigpio

If you're working with the rpi3's gpio, the pigpio library can be very handy.

sudo apt-get update
sudo apt-get install pigpio 

If you also want to access pigpio from python, install: sudo apt-get install python-pigpio python3-pigpio

Setup pigpiod service to run at boot

  • sudo systemctl enable pigpiod

You can also start pigpiod immediately by doing: sudo systemctl start pigpiod

  • After reboot, verify with: sudo service pigpiod status
@njavilas2015
Copy link

Thanks

@jg3
Copy link

jg3 commented May 18, 2021

Thanks. Works on a RPi4 here, too.

@pluzmedia
Copy link

Will this work on pi zero?

@shadowpho
Copy link

Will this work on pi zero?

It does! Runs perfectly on a pi zero w

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment