Barcode Count Feedback

Defined under the namespace Scandit.Datacapture.Barcode.Count

BarcodeCountFeedback
class BarcodeCountFeedback

Added in version 6.17.0

Determines what feedback (vibration, sound) should be emitted when barcodes are scanned.

The feedback is specified for each BarcodeCount instance separately and can be changed through the feedback property by either modifying an existing instance of this class, or by assigning a new one.

As of now, this class allows to configure the feedback that gets emitted when barcodes are read successfully, through the success property, and a feedback that gets emitted when barcodes are not read successfully, through the failure property.

See documentation on the BarcodeCount.feedback property for usage samples.

default
static get default(): BarcodeCountFeedback

Added in version 6.17.0

Returns a barcode count feedback with default configuration:

  • default beep sound is loaded,

  • beeping for the success event is enabled,

  • vibration for the success event is enabled,

  • beeping for the unrecognized event is enabled,

  • vibration for the unrecognized event is enabled,

  • beeping for the failure event is enabled,

  • vibration for the failure event is enabled.

success
success: Feedback

Added in version 6.17.0

A feedback for a success event.

failure
failure: Feedback

Added in version 6.17.0

A feedback for a failure event.