APP gets the phone model of the device BT connected
The function table: getSupportGetV3DeviceBtConnectPhoneModel
Flutter Example:
/// Get the BT connected phone model
getBtConnectPhoneModel(
evtBase: _VBusEvtBase.base_app_get,
evtType: _VBusEvtType.func_v3_get_bt_connect_phone_model
),
/// Get the BT connected phone model
libManager.send(evt: CmdEvtType.getBtConnectPhoneModel, json: jsonEncode(json));
json fields received by App :
Field Name | Field Type | Field Description |
---|---|---|
phone_model | char | Mobile phone model The character string contains a maximum of 250 bytes |
Example:
```json { "phone_model" : "OnePlus 9R" }