Turn off beep on RFD8500 sled

J Jeff Mr 2 years 11 months ago
241 1 0

I'm developing an Application where the Zebra RFD8500 Sled scanner communicates with an  Android phone via Bluetooth.

I want to programmatically turn off the beeping sound on the RFD8500 Sled when I scan a barcode, so I can play my own custom sound. I've seen examples on how to initiate the beep sound on the Sled through the "Zebra Scanner SDK for Android developer guide".  And  I understand how to play a sound on an Android phone which would replace the Sled's beep.  But haven't seen anything with regards to a config parameter setting I could set programmatically that would turn off the Sleds' sound altogether.

Any thoughts?

Please register or login to post a reply

1 Replies

J Jeff Mr

After a some more research, I found out how to do this through the following developer guide section 5.2
https://www.zebra.com/content/dam/zebra_new_ia/en-us/manuals/rfid/rfd85…

The only problem now is, the beeper is not turned off when I scan a barcode.  It is turned off when the RFD8500 sled connects and disconnects, but NOT when a barcode is  scanned.
So I'm really back to square one. Because the whole point of this was to silence the beep sound when a barcode is scanned and replace that sound with my own custom sound.

In any event, below is the code to connect to the 8500 sled and turn off the beeping sound up to a point as I mentioned.

You'll need to import the following Java archive library ->  API3_LIB-release.aar
That archive can be found in the following zip file              Zebra_RFID_Mobile_Android_1.2.3.26.zip

The following url has the zip file
Zebra RFID Mobile Application for Android Support & Downloads | Zebra

import com.zebra.rfid.api3.BEEPER_VOLUME;
import com.zebra.rfid.api3.RFIDReader;
import com.zebra.rfid.api3.ReaderDevice;

public static Readers readers;
public static RFIDReader rfidReader;

The specific code gets executed in a Async method when the Sled is found...

private class ProcessAsyncTask extends AsyncTask {
{

@Overrideprotected Boolean doInBackground(Void... voids) {

try {
        readers = new Readers();
       ArrayList availableRFIDReaderList = readers.GetAvailableRFIDReaderList();
       ReaderDevice readerDevice = availableRFIDReaderList.get(0);
        rfidReader = readerDevice.getRFIDReader();

} catch (InvalidUsageException e) {
  e.printStackTrace();
}

try {
        rfidReader.connect();
        rfidReader.Config.setBeeperVolume(BEEPER_VOLUME.QUIET_BEEP);
        rfidReader.Config.saveConfig();

} catch (Exception e) {
  e.printStackTrace();
}
}

}

CONTACT
Can’t find what you’re looking for?