Aila_Beep
Issues a beep & flash event to the kiosk.
Signature
- Objective-C
- Swift
void Aila_Beep(void);
func Aila_Beep()
Description
Manually triggers a beep and flash event on the kiosk, even if automatic beep (see beepMode) is disabled. This is useful for providing feedback in multi-scan mode or custom scanning workflows.
Usage
- Objective-C
- Swift
config.scanCallback = ^(NSArray<AilaScanObject *> *results) {
if (results.count > 0) {
// Manually trigger beep for feedback
Aila_Beep();
}
};
config.scanCallback = { results in
if !results.isEmpty {
// Manually trigger beep for feedback
Aila_Beep()
}
}
See Also
- AilaBeepMode - Automatic beep configuration
- Aila_ResetScan - Reset camera after scan