
Security News
Oxlint Introduces Type-Aware Linting Preview
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
This gem uses FFI to provide Ruby method bindings for the pigpio C library. This makes the Raspberry Pi GPIO pins usable in Ruby.
NOTE: This is for Ruby on Linux, not for the Raspberry Pi Pico (W).
Install pigpio with:
sudo apt-get install pigpio
Install this gem as root:
sudo gem install pigpio_ffi
Ruby scripts need to be run as root:
sudo ruby my_script.rb
require 'pigpio_ffi'
PiGPIO.gpioInitialise
PiGPIO.gpioSetMode(4, 1)
10.times do
PiGPIO.gpioWrite(4, 1)
sleep 0.5
PiGPIO.gpioWrite(4, 0)
sleep 0.5
end
# This must be called or the script will block forever.
PiGPIO.gpioTerminate
This will blink an LED attached to GPIO 4, every half second, for 10 seconds total.
As much as possible, the class methods of PiGPIO
follow the function names and argument formats of the pigpio C functions. These can be found in its documentation, located here.
Exceptions:
TODO: List methods with different interfaces, and unmapped methods here.
FAQs
Unknown package
We found that pigpio_ffi demonstrated a not healthy version release cadence and project activity because the last version was released 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
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.