dev-master
9999999-dev http://github.com/TiMESPLiNTER/gphpioLibrary to handle GPIO
MIT
The Requires
- php >=5.5.0
The Development Requires
gpio rpi rpi2 raspberrypi
Library to handle GPIO
This library provides a nice OO interface to interact with the GPIO pins of RaspberryPi (2)., (*1)
For RaspberryPi (2) please make sure that the files at /sys/class/gpio
are owned by root:gpio
and that the user which
executes the PHP script using this library is also in the group gpio
. This should be the case anyway as long as you have
already run the raspi-config
tool on installation., (*2)
Else you may need to apply the following changes described here., (*3)
The "Hello world" LED-blink script would look like that:, (*4)
$model = new RPi(); $gpio = new GPIO($model); $pin = 17; if($gpio->isExported($pin) === false) $gpio->export($pin, GPIO::MODE_OUTPUT); echo 'This is a ' , $model->getName() , PHP_EOL; for($i = 0; $i < 10; ++$i) { $gpio->write($pin, 1); echo 'The pin is now: ' , $gpio->read($pin) , PHP_EOL; sleep(1); $gpio->write($pin, 0); echo 'The pin is now: ' , $gpio->read($pin) , PHP_EOL; sleep(1); } $gpio->unexport($pin);
Library to handle GPIO
MIT
gpio rpi rpi2 raspberrypi