Background:
I am using the Motorola EMDK v2.5 for .NET to get rfid scan data from an MC 919Z handheld scanner. I want to keep on getting the rfid tag data as long as the user hasthe button on the device pressed. As soon as he removes his finger from the button, I want to stop reading RFID data.
eMDK events I am using:
Now Motorola exposed two events:
- StatusNotify : Event that fires on button status (pressed or not) changes.
- ReadNotify : Event that fires for reading rfid tags.
The issue:
The two events seem to pre-empt each other from being triggerred. If the tags are being read, the button status change event doesn't fire. If the button status change event is firing, the tags aren't read.
So, the question is how can I ensure that both events are fired in tandem.
You will need to do a few things (sorry for the VB code, but should be trivial to convert to C#):
Whether you are using
Actions.Inventory.Perform()
orActions.TagAccess.OperationSequence.PerformSequence()
you will need aTriggerInfo
defined and passed on to those methods, instead of the regular no-arguments call. This structure contain the actual trigger events.The main point is that you don't need to call
Perform()
orPerformSequence()
to start the reading each time now, you simply can define a procedure afterForm.Load
that connects to the reader and callsPerform()
with the trigger in it, and it will automagically only activate when the trigger is used. Depending on the way you have coded, I think you can use your current delegate callbacks as they are, if the Read delegate one usesGetReadTags()
(I'm speculating now, because I haven't seen your code).Lastly, in your Status delegate call you can now catch a
Symbol.RFID3.Events.STATUS_EVENT_TYPE.HANDHELD_TRIGGER_EVENT
as the EventData. If you dig further you have inside theeventData.HandheldTriggerEventData.HandheldTriggerEvent
that can beHANDHELD_TRIGGER_EVENT_TYPE.HANDHELD_TRIGGER_PRESSED
orHANDHELD_TRIGGER_EVENT_TYPE.HANDHELD_TRIGGER_RELEASED
. It is worth nothing that you DON'T need to do anything with this event to actually read tags, the trigger and the read will happen anyway even if you do nothing here.Actually, messing with the Event (like stopping or starting the read) might make the trigger throw errors, so unless you have a pressing need (like I had today), go with the TriggerInfo object and leave the Status delegate alone ;)