latansamashiro/fingerprint
最新稳定版本:1.0.2
Composer 安装命令:
composer require latansamashiro/fingerprint
包简介
Laravel Package for Fingerprint Solution x100c, x601 etc
README 文档
README
Laravel package for connect and get data from fingerprint Solution X100-C, X304, X302-S, X401, X601, C1
Easy Installation
Install with composer
To install with Composer, simply require the latest version of this package.
composer require latansamashiro/fingerprint
Make sure that the autoload file from Composer is loaded.
composer dump-autoload
How to Use
use Latansamashiro\Fingerprint\FingerPrint;
...
// example
$ip_address = "192.168.1.10";
$commkey = "0";
$port = "4370";
$fp_machine = new FingerPrint($ip_address, $commkey, $port);
// Check Connection to Machine FP (return Boolean)
$is_connect = $fp_machine->connect();
echo $is_connect;
// Get Data from Machine (return Array)
$data = $fp_machine->getData();
print_r($data);
License
MIT
统计信息
- 总下载量: 28
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-03-28