
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
gpio
Advanced tools
This library provides gpio access via the standard linux sysfs interface
It is intended to mimic RPIO as much as possible for all features, while also supporting additional (and better named) functionality to the same methods.
read(pin) or input(pin)write(pin, value), set(pin, value) or output(pin, value)mode(pin)setup(pin, mode)
mode can currently equal gpio.IN or gpio.OUTGPIOPin class directly to write and read a pinGood for up to 130KHz pin toggle on a Pi 400.
import time
import gpio as GPIO
GPIO.setup(14, GPIO.OUT)
while True:
GPIO.output(14, GPIO.HIGH)
time.sleep(1.0)
GPIO.output(14, GPIO.LOW)
time.sleep(1.0)
Good for up to 160KHz pin toggle on a Pi 400.
This gives you a class instance you can manipulate directly, eliminating the lookup:
import gpio
pin = gpio.GPIOPin(14, gpio.OUT)
while True:
pin.write(14, GPIO.HIGH)
time.sleep(1.0)
pin.write(14, GPIO.LOW)
time.sleep(1.0)
FAQs
gpio access via the standard linux sysfs interface
We found that gpio demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.