ScannerFeedback

interface ScannerFeedback

Interface for configuring feedback behavior for the scanner when executing commands.

This interface allows you to update the individual feedback settings for LED, buzzer, and vibration. The feedback is applied when the scanner executes certain commands, controlling the visual (LED), auditory (buzzer), and tactile (vibration) responses.

Properties

Link copied to clipboard
abstract val buzzer: Boolean

Indicates whether buzzer feedback is enabled.

Link copied to clipboard
abstract val led: Boolean

Indicates whether LED feedback is enabled.

Link copied to clipboard
abstract val vibration: Boolean

Indicates whether vibration feedback is enabled.

Functions

Link copied to clipboard
abstract fun set(led: Boolean? = null, buzzer: Boolean? = null, vibration: Boolean? = null)

Sets the feedback preferences for the scanner.