Get Firmware Red Dot Reminder Switch Status
Menu: TODO
Flutter Example:
/// Get unread app reminder switch event number
getUnreadAppReminder(
evtBase: _VBusEvtBase.base_app_get,
evtType: _VBusEvtType.app_get_unread_app_onoff
),
/// Get unread app reminder switch
libManager.send(evt: CmdEvtType.getUnreadAppReminder, json: jsonEncode(json));
JSON Fields Received by the App:
Field Name | Field Type | Field Description |
---|---|---|
on_off | int | Switch status 1: On 0: Off -1:Not Support |
Example:
{
"on_off":0
}