Set Find Phone
Menu: getFindPhone
Flutter Example:
/// Set Find Phone
setFindPhone(
evtBase: _VBusEvtBase.base_app_set,
evtType: _VBusEvtType.app_set_find_phone),
/// Set Do Not Disturb Mode
libManager.send(evt: CmdEvtType.setNotDisturb, json: jsonEncode(json));
JSON Fields Sent by the App:
Field Name | Field Type | Field Description |
---|---|---|
on_off | int | 1: Turn on, 0: Turn off |
Example:
{
"on_off": 1
}
JSON Fields Received by the App:
Field Name | Field Type | Field Description |
---|---|---|
status_code | int | 0: Success, non-zero: Error |
Example:
{
"status_code": 0
}