Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Symbol scanner 'beep' on successful scan?

I'm working with a motorolla MC55 which scans and beeps on a successful scan, I need to disable that feature so that it doesn't play any sounds at all on a scan.

Any ideas how I can accomplish this?

like image 305
meds Avatar asked Jun 08 '12 04:06

meds


3 Answers

Scan the following barcodes to enable/disable the beep.

Reference Page

like image 77
asset mgt Avatar answered Oct 16 '22 14:10

asset mgt


Try this:

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

// Other initialization 

reader.Parameters.Feedback.Success.BeepTime = 0;
like image 6
Thorsten Dittmar Avatar answered Oct 16 '22 14:10

Thorsten Dittmar


You may want to just adjust the level of the sound:

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;
like image 2
bryoncline Avatar answered Oct 16 '22 16:10

bryoncline