APP sends the matching result
Flutter Example:
/// APP delivers the pairing result
sendBindResult(
evtBase: _VBusEvtBase.base_app_get,
evtType: _VBusEvtType.app_send_bind_result),
/// APP delivers the pairing result
libManager.send(evt: CmdEvtType.sendBindResult, json: jsonEncode(json));
json fields delivered by App:
Field Name | Field Type | Field Description |
---|---|---|
bind_result | int | 0: success 1: failure |
Example of successful APP delivery pairing:
```json { "bind_result" :0 }