update paths
This commit is contained in:
commit
1cb0379128
|
@ -15,7 +15,7 @@
|
|||
private $value;
|
||||
|
||||
public function __construct($pin){
|
||||
if( !is_int($pin) )
|
||||
if( !preg_match('@^\d+$@', $pin) )
|
||||
throw new Exception("pin must be an integer");
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
/* (2) Set mode to in */
|
||||
$gpio->value = Pin::GPIO_HIGH;
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
/* (2) Set mode to in */
|
||||
$gpio->mode = Pin::GPIO_IN;
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
/* (2) Set mode to in */
|
||||
$gpio->value = Pin::GPIO_LOW;
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
/* (2) Set mode to in */
|
||||
$gpio->mode = Pin::GPIO_OUT;
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue