Parallax RFID Reader USB 28340
leo77
Posts: 5
in Accessories
Hello,
I have a Parallax RFID reader USB (ref 28340). After having install softwares (on the parallax website) and connect my RFID Reader USB I can read the ID of my RFID Tag (LOGI TAG 120 Unique) but only on the software RFID READER (available on the website (28340 product page -> additionnal ressources). My problem is that I can't read the ID with Excel. I tried with the PLX-DAQ worksheet but it does not work. The connection is done and the reader read the tag (also the excel document because the light of "R" turn red") but the ID it is not written in any cell.
What can I do to correct it?
Thank you for your help.
I have a Parallax RFID reader USB (ref 28340). After having install softwares (on the parallax website) and connect my RFID Reader USB I can read the ID of my RFID Tag (LOGI TAG 120 Unique) but only on the software RFID READER (available on the website (28340 product page -> additionnal ressources). My problem is that I can't read the ID with Excel. I tried with the PLX-DAQ worksheet but it does not work. The connection is done and the reader read the tag (also the excel document because the light of "R" turn red") but the ID it is not written in any cell.
What can I do to correct it?
Thank you for your help.
Comments
To display RFID numbers in Excel ROWs and COLUMNs you need a Stamp , Prop or PC app as an interface for the RFID reader. PLX-DAQ is packaged with examples for the Parallax controllers.
It is possible to modify the PLX-DAQ VBA code so that it will read the RFID , this has limited use but I suppose it would be possible to time stamp and track tags
Can you show me exactly what I have to do please?
Once you have access to he VBA editor you should see a folder named "Forms" and inside that folder is a form named "frmStampDAQ", when you right click on that form you will have the option to "View Code", select that option. When you are comfortable that you have reached this point then post back and let me know.
My advice would be to make a copy of the original PLX-DAQ while you make these modifications.
After making a copy, what I have to do?
Thank you!
I will post the code below, it is up to you if you want to type it out yourself or copy this code and paste over your existing sub routines.
Don't mess with any other routine, just modify the ones I mentioned.
stamp_DataReady
clearsheet
If that works as it should then post back here and we will add a time stamp
There are lots of time stamp examples out there this is one that I like.
It's a formula that is a circular reference so before you add it to your form you will need to modify Excel options.
Go to Excel Options ----> Formulas and enable the checkbox "Enable iterative calculation" , set the "Maximum iterations" to 1.
Now add this formula to cell B2.
=IF(A2<>"",IF(B2="",NOW(),B2),"")
Drag it down through column B so that it applies to all the cells in that column, finally set column B's format to the time format you want.
The last thing you might find useful is a small click event for the DTR checkbox that will allow toggle of DTR even when connected
It should work, if not I am sure you can work it out.