Get reminder settings during exercise
Function table: supportSettingsDuringExercise
Flutter example:
/// Get reminder settings during exercise
getSettingsDuringExercise(
evtBase: _VBusEvtBase.base_app_set,
evtType: _VBusEvtType.vbus_evt_app_get_settings_during_exercise),
/// Get reminder settings during exercise
libManager.send(evt: CmdEvtType.getSettingsDuringExercise, json: jsonEncode(json));
JSON fields received by App:
Field name | Field type | Field description |
---|---|---|
notification_switch | int | Alert tone switch: 0x55 off, 0xAA on |
Example:
{
"notification_switch":0xAA,
}