Get HID Information
Function Table: /// TODO
Flutter Example:
/// Get HID Information event number
getHidInfo(
evtBase: _VBusEvtBase.base_app_get,
evtType: _VBusEvtType.app_get_hid_info),
/// Get HID Information
libManager.send(evt: CmdEvtType.getHidInfo, json: jsonEncode(json));
JSON Fields Received by the App:
Field Name | Field Type | Description |
---|---|---|
is_start | int | 0 - Not started, 1 - Started successfully |
Example:
{
"is_start" : 0
}