I would like to play a sound from the skid before and/or after a successful scan with different tones.
It has a higher pitched speaker or piezo electric device that's easier to hear in our current environment as opposed to using the ipod speaker.
Also, I'm familiar with Linea Pro devices and they can play sounds by calling via their DTDevice playSound method.
Has anyone been able to play sounds on demand via the Honeywell Captuvo devices yet?
Scenario 1: The scanner beeps when I scan anything, then if the item is NOT in inventory, I'd like to play a different tone, from the API, and play a sound like an hi/low/hi/low tone.
This is easily done with the API by Linea Pro using their DTDevice.h playSound method.
I received a solution from Honeywell support. The solution isn't as nice as the LineaPro API because you can't send it a stream of bytes for sound frequency and duration.
Here's the snippet from Tech Support.
"We don’t have any upcoming SDKs that would add the same type of capability to the Captuvo. What I think you could do is send beep commands directly to the Captuvo scanner’s beeper using the SDK pass through mode. The important part is understanding how to use pass through mode. There should be some documentation in the help file, but I can try to explain here. When using pass through mode you can send any firmware command supported by the Captuvo scanner. If you want to make the scanner beep or razz you can send the firmware command [syn]M[cr]bepexe1. for a good read beep and [syn]M[cr]bepexe4. for a RAZZ tone. You could send a string of these commands to change the sound to something unique for various situations."
Here’s a code snippet. The menu commands to send via the pass through function would be as follows: [syn]M[cr]bepexe1. [syn]M[cr]bepexe4.
[syn] is the hex value 16. M is the hex value 4D and [cr] is the hex value 0D.
Here's a brief snippet of my code implementation for alternative sounds. I think there's only two sound pitches that I can find from the Honeywell device.
// 1 = good beep // 4 = razz beep