20 lines
323 B
PHP
20 lines
323 B
PHP
<?php
|
|
|
|
use Menking\Meshcore\Environment;
|
|
use Menking\Meshcore\Meshcore;
|
|
|
|
require(__DIR__ . '/../vendor/autoload.php');
|
|
|
|
if( !isset($argv[1]) ) die("{$argv[0]} <port>\n");
|
|
|
|
Environment::configure($argv[1]);
|
|
|
|
$mc = Meshcore::getInstance();
|
|
|
|
$mc->appStart("app_get_contacts");
|
|
|
|
$resp = $mc->getDeviceInfo();
|
|
|
|
print_r($resp);
|
|
|