Get SN Information
Menu: supportGetSnInfo
Flutter Example:
/// Get SN event code
getSnInfo(
evtBase: _VBusEvtBase.base_app_get,
evtType: _VBusEvtType.app_get_sn_info)
/// Get SN
libManager.send(evt: CmdEvtType.getSnInfo, json: jsonEncode(json));
JSON fields received by the App:
Field Name | Field Type | Field Description |
---|---|---|
len | int | Length of SN string |
sn | char [] | SN serial number string, maximum length of 17 bytes |
Example:
{
"len": 11,
"sn": "as1d65sa2qs"
}