Set end to find phone
Function sheet: setOverFindPhone
Flutter Example:
/// Stop looking for the phone
setOverFindPhone(
evtBase: _VBusEvtBase.base_app_set,
evtType: _VBusEvtType.app_set_over_fing_phone),
/// Stop looking for the phone
libManager.send(evt: CmdEvtType.setOverFindPhone, json: jsonEncode(json));
json fields delivered by App: | Field Name | Field Type | Field Description | | ------ | -------- | -------- | | states | int | 1: End |
Example:
{
"states" :1
}
json fields received by App :
| Field Name | Field Type | Field Description |
|---|---|---|
| status | int | 0: success, not 0 failure |
Example:
{
"status" :0
}