PHP code example of rpi / pigpio

1. Go to this page and download the library: Download rpi/pigpio library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

rpi / pigpio example snippets




use Serafim\FFILoader\Loader;
use Rpi\Pigpio\Library;

$loader = new Loader();
$ffi = $loader->load(new Library())->ffi;

$ffi->gpioInitialise();

$ffi->gpioWrite(14, 1);

$ffi->gpioTerminate();