Skip to main content

Aila_Beep

Issues a beep & flash event to the kiosk.

Signature

void Aila_Beep(void);

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

config.scanCallback = ^(NSArray<AilaScanObject *> *results) {
if (results.count > 0) {
// Manually trigger beep for feedback
Aila_Beep();
}
};

See Also