Disable "beep" of Symbol scanner on successful scan?

I work with a motorolla MC55, which scans and beeps when a scan is successful. I need to disable this feature so that it does not play any sounds when scanning.

Any ideas how I can do this?

+5
source share
3 answers

Try the following:

Symbol.Barcode.Reader reader = new Symbol.Barcode.Reader();

// Other initialization 

reader.Parameters.Feedback.Success.BeepTime = 0;
+6
source

Scan the following barcodes to enable / disable the beep.

Reference Page

+4
source

:

Symbol.Audio.Device MyDevice = (Symbol.Audio.Device)Symbol.StandardForms.SelectDevice.Select(
    Symbol.Audio.Controller.Title,
    Symbol.Audio.Device.AvailableDevices);
Symbol.Audio.StandardAudio MyAudioDevice = new Symbol.Audio.StandardAudio(MyDevice);

// set the volume of the audio from the settings file.
MyAudioDevice.BeeperVolume = NewLevel;

// set the audio device to nothing
MyAudioDevice.Dispose();
MyAudioDevice = null;
MyDevice = null;
+2

All Articles