Set Control for Taking Photos
Menu: bleControlTakePhoto (To be added in the SDK)
Flutter Example:
/// Set Take Picture Event Code
setTakePicture(
evtBase: _VBusEvtBase.base_app_set,
evtType: _VBusEvtType.app_set_take_picture),
/// Set Control for Taking Photos
libManager.send(evt: CmdEvtType.setTakePicture, json: jsonEncode(json));
JSON Fields Sent by the App:
Field Name | Field Type | Field Description |
---|---|---|
on_off | int | 0 for off 1 for on |
Example:
{
"on_off": 0
}