
Security News
Feross on Risky Business Weekly Podcast: npm’s Ongoing Supply Chain Attacks
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Use systemd to configure commands to run when a GPIO button is pressed on a Raspberry Pi
systemd-gpio - run commands when a button on a GPIO pin is pressed
Use systemd to configure commands to run when a button attached to a GPIO pin is pressed, released, or held.
To configure a GPIO pin, create a file called /etc/gpio/N, where N is an integer pin number following the gpiozero pin numbering
_ convention. Once you have populated the configuration file, activate the button by running the following command, replacing N with the pin number::
sudo systemctl enable --now gpio@N.service
| GPIO_PULL_UP | GPIO_ACTIVE_STATE | GPIO_BOUNCE_TIME | GPIO_HOLD_TIME | GPIO_HOLD_REPEAT
Button behavior. See the documentation for the corresponding constructor arguments of `gpiozero.Button`_.
| GPIO_WHEN_HELD | GPIO_WHEN_PRESSED | GPIO_WHEN_RELEASED
Commands to run when the button is held, pressed, or released, respectively. See the documentation for the corresponding properties of `gpiozero.Button`_.
/etc/gpio/N
Configuration file for GPIO pin *N*, where *N* corresponds to the `gpiozero pin numbering`_. The file should be in the `systemd EnvironmentFile syntax`_ and may define any of the environment variables listed above.
This project is inspired by https://github.com/ali1234/systemd-gpio. The main difference is that we are using gpiozero_ rather than WiringPi_, because WiringPi is no longer maintained.
The following example configures GPIO 23 so that when it is pressed, it prints a message to all TTYs, and when held, shuts down the machine::
# /etc/gpio/23
GPIO_HOLD_TIME=5
GPIO_WHEN_PRESSED="wall 'Hold the power button for 5 seconds to power off.'"
GPIO_WHEN_HELD=poweroff
To activate the pin, run the following command::
sudo systemctl enable --now gpio@23.service
.. _gpiozero: https://github.com/gpiozero/gpiozero
.. _WiringPi: https://web.archive.org/web/20220405225008/http://wiringpi.com/wiringpi-deprecated/
.. _gpiozero.Button
: https://gpiozero.readthedocs.io/en/latest/api_input.html#gpiozero.Button
.. _gpiozero pin numbering
: https://gpiozero.readthedocs.io/en/latest/recipes.html#pin-numbering
.. _systemd EnvironmentFile syntax
: https://www.freedesktop.org/software/systemd/man/latest/systemd.exec.html#EnvironmentFile=
systemctl(1), systemd.exec(5)
FAQs
Use systemd to configure commands to run when a GPIO button is pressed on a Raspberry Pi
We found that systemd-gpio demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.