laxamar / gpiosysv
A library for accessing the GPIO pins on a Raspberry Pi without root for clients using SysV message queue and client/server
Requires
- php: ^7.4||^8.0
- ext-pcntl: *
- ext-sysvmsg: *
Requires (Dev)
- phpunit/phpunit: ^9.3
- dev-master
- 1.4.2
- 1.4.1
- v1.4
- v1.3.1
- v1.3
- v1.2.8
- v1.2.7
- v1.2.6
- v1.2.5
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2
- v1.1.1
- v1.1
- v1.0.2
- v1.0.1
- v1.0
- v0.9.2
- v0.9.1
- v0.9
- v0.8.9.9
- v0.8.9.8
- v0.8.9.7
- v0.8.9.6
- v0.8.9.5
- v0.8.9
- v0.8.8
- v0.8.7
- v0.8.6
- v0.8.5
- v0.8
- v0.7
- v0.6.7.1
- v0.6.7
- v0.6.6
- v0.6.5
- v0.6
- v0.5
- 0.4.0
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- 0.2.2
- v0.2.1
- v0.2.0
- v0.1.2
- v0.1.1
- v0.1.0
- dev-SystemD
- dev-SysV
- dev-rewind-fix
- dev-first-interrupt
This package is auto-updated.
Last update: 2025-03-14 22:49:22 UTC
README
A userland (non-root) library for low level access to the GPIO pins on a Raspberry Pi. These pins can be used to control outputs (LEDs, motors, valves, pumps) or read inputs (sensors).
Adapted by laxamar
From AndrewCarterUK
Installing
This release has two components. A server that can be installed via git or composer. A client that uses composer to install and run.
Client (with server as a service with manual installation)
Using composer:
composer require laxamar/gpiosysv
Or:
php composer.phar require laxamar/gpiosysv
The server code is installed in the vendors/laxamar/gpiosysv
directory of composer under the service
directory and can be installed as below
Server
The server can be downloaded as by git
sudo install_systemd.sh
will install the necessary files in /usr/local/GPIOSysV and install the systemd service
Examples
Setting Output Pins
use Amar\GPIOSysV\GPIOSysVClt; // Create a GPIO object $gpio_obj = GPIOSysVClt::getInstance(); // Set the value of the pin high (turn it on) $success = $gpio_obj->setPinHigh(18); $success = $gpio_obj->setPinLow(18); // Set a series on PINs using BCD $gpio->setPinsBinary($board, CS_PINs); for ($dec = 0; $dec < 8; $dec++) { // echo "Decimal $dec"; $gpio->strobeBinary($dec, LED_PINs, FLASH_PIN, 1, 0, $frequency, true, $error); }
Input Pin
use Amar\GPIOSysV\GPIOSysVClt; // Create a GPIO object $gpio_obj = GPIOSysVClt::getInstance(); // Set the value of the pin high (turn it on) $value = $gpio_obj->getPin(4);
Further Reading
SitePoint published a tutorial about powering Raspberry Pi projects with PHP which used this library and shows a push button example with a wiring diagram.
More Resources
PiPHP maintains a resource directory for PHP programming on the Raspberry Pi.