Skip to main content

beep()

Issues a beep and flash event to the kiosk, even if automatic beep (see beepMode) is disabled.

AilaCordovaPlugin.beep()

Returns

Promise that resolves when the beep completes.

Example

window.addEventListener('rawScanData', (event) => {
console.log('Scanned:', event.scanText);

// Manual beep for user feedback
AilaCordovaPlugin.beep()
.then(() => {
console.log('Beep completed');
});
});