Skip to main content
版本:v3

mstOnCharaNotification

API_LEVEL 3.0 开始支持,API 兼容性请参考 API_LEVEL

注册 Characteristic Notification 到达回调函数。

类型

function mstOnCharaNotification(callback: Callback): Result

参数

Callback

类型说明
(profile: Profile, uuid: UUID, data: Data, length: Length) => voidCharacteristic Notification 到达回调函数

Profile

类型说明
numberProfile 指针

UUID

类型说明
stringCharacteristic UUID 字符串

Data

类型说明
ArrayBuffer读取到的数据,使用 Uint8Array 视图读取

Length

类型说明
number数据长度

Result

类型说明
boolean函数调用结果,true 表示成功、false 表示失败

代码示例

import { mstOnCharaNotification } from '@zos/ble'

// ...