Get firmware local beep file information
Function table:getSupportGetBleBeepV3
Example
Swift
Cmds.getBleBeep().send { rs in
if case .success(let obj) = rs {
// Success
// obj is IDOBleBeepModel
}else {
// Failure
}
}
Kotlin
Cmds.getBleBeep().send {
if (it.error.code == 0) {
// Success
// it.res is IDOBleBeepModel
}else {
// Failure
}
}