Search code examples
c#compact-frameworkbarcode-scannermotorola

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?


Solution

  • Try this:

    Symbol.Barcode.Reader reader = new Symbol.Barcode.Reader();
    
    // Other initialization 
    
    reader.Parameters.Feedback.Success.BeepTime = 0;