BayEOS-PHP
 All Data Structures Namespaces Files Functions Variables Pages
BayEOSWriter.php
Go to the documentation of this file.
1 <?php
2 /*
3  * Writer only
4  */
5 require_once 'BayEOSGatewayClient.php';
6 
7 $w = new BayEOSWriter('/tmp/bayeos-device1');
9 while(TRUE){
10  echo "adding frame\n";
11  $w->saveDataFrame(
12  array($count++,
13  300,
14  1.0),0x04,4);
15  sleep(5);
16 }
17 
18 ?>
$count
Definition: BayEOSWriter.php:8
$w
Definition: BayEOSWriter.php:7