aprbrother / ab-ble-gateway
AB BLE网关的SDK
dev-master
2020-05-08 06:17 UTC
This package is not auto-updated.
Last update: 2024-09-29 02:49:40 UTC
README
AB BLE网关的PHP SDK
安装
- 安装composer
- 运行
composer require aprbrother/ab-ble-gateway=dev-master
对于BLE网关V4,您还应该安装msgpack扩展
pecl install msgpack
用法
网关V4
$parser = new AprBrother\PacketParser4();
$meta = $parser->parse($content);
$rawData = $meta['devices'];
$data = [];
unset($meta['devices']);
foreach($rawData as $v) {
$data[] = $parser->parse($v);
}
网关V2或V3
$parser = new AprBrother\PacketParser();
list($meta, $data) = $parser->parse($content);