Set Left/Right Hand
Menu: ////TODO (No corresponding menu found)
Flutter Example:
/// Set Left/Right Hand Event
setHand(
evtBase: _VBusEvtBase.base_app_set,
evtType: _VBusEvtType.app_set_hand),
/// Set Left/Right Hand
libManager.send(evt: CmdEvtType.setHand, json: jsonEncode(json));
JSON Fields Sent by the App:
Field Name | Field Type | Field Description |
---|---|---|
hand | int | 0: Left Hand 1: Right Hand |
Example:
{
"hand": 0
}