Is the BS2 enough for this project?
electromanj
Posts: 270
Hello fellow stampers!
I am about to start a new project and have a few questions before I dive in.
I am an electrical contractor. When I go out to a job·we start grabbing parts from the truck and install them. When the job is done I walk around with some preprinted forms and check off the parts that were used.
I have this RFID reader a couple of BS2s and a memory stick datalogger sitting in front of me.....
I would like to have a RFID card assigned to each part. When someone grabs a part from the truck the run the card past the reader. Maybe a selector switch so you can add a part or remove a part from the list. At the end of the day I print out the list and done.
To get started an audible tone to signal a read. Eventually a lcd readout with a text to voice module.
I would like to start off really basic to get going and then add as I go, (I'm going to lose some more hair on this one I think)!
Is the bs2 enough for this project?
Any sugestions will be greatly appriciated!
Thanks!
·
I am about to start a new project and have a few questions before I dive in.
I am an electrical contractor. When I go out to a job·we start grabbing parts from the truck and install them. When the job is done I walk around with some preprinted forms and check off the parts that were used.
I have this RFID reader a couple of BS2s and a memory stick datalogger sitting in front of me.....
I would like to have a RFID card assigned to each part. When someone grabs a part from the truck the run the card past the reader. Maybe a selector switch so you can add a part or remove a part from the list. At the end of the day I print out the list and done.
To get started an audible tone to signal a read. Eventually a lcd readout with a text to voice module.
I would like to start off really basic to get going and then add as I go, (I'm going to lose some more hair on this one I think)!
Is the bs2 enough for this project?
Any sugestions will be greatly appriciated!
Thanks!
·
Comments
Have fun and feel free to ask if you have any questions that the documentation and code for the items doesn't cover.
Dave X
I would classify myself as a novice, but I think challenges are fun.
If my trusty BS2 is up to the task, I guess that I am too.
It's time to get started.
I am going to start piecing together some code and draw a schematic. Try it out, change some things, try it again, change some things, repeat, repeat, repeat, ask questions, etc...
If anybody has some ideas I would love to hear them.
Thanks in advance for all the help!
Travis.
Dave
Dave
I know I'll get a lot of good suggestions before I start.
So many projects so little time...
One way to this part would be to take the first three or four letter of the name of the part that you are using
·and nane the routine· for·example·· Routine1 = TAPE··......>>>>>· ON tagNum GOSUB TAPE
One more thing I would do is make
List of Tag # and next to the Tag·# the Name of the Part
I am going to help you out a Little with how you get each card to do something different
I hope this helps
Tag_Found:
ON tagNum GOSUB Routine0,· Routine1, Routine2, Routine3····
Routine0:·
······················· ' Your code here
RETURN
Routine1:
························ ' Your code here
RETURN
Routine2:
························· ·' Your code here
RETURN
Routine3:
················· ···· · ' Your code here
RETURN
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
··Thanks for any··that you may have and all of your time finding them
·
·
·
·
Sam
Post Edited (sam_sam_sam) : 6/21/2009 1:22:15 AM GMT
I would use the idea of the lookdown operator, but your own make. You probably couldn't use the lookdown because that would only allow you to use two bytes for an ID, which is pretty limited. Anyway, something like this:
Here are a couple of ideas to think about.
The longest filename you can write to the logger is 11 characters I believe·. This is convenient when working with the RFID as each tag is 10 characters. Rather than store each tag's detail in EEPROM it might be better to create a file on disk giving the filename the tag ID#
Each time the tag is swiped a file with the tag# is created and a value of 1 written to the file.
If the tag has been used more than once during the day then the file value would be read , incremented by 1 and re-written.
I have a few ideas on transfering to a printable report where the tag ID is referenced to a parts description in the PC software, still thinking on that one.
Jeff T.
This is going to be fun!
Guiseppe- I saw that printer before and lost the link. Thanks that would be an awesome addition to this project. A guy could print out the list then and there and double check it. I have about 80 rolls of that size paper sitting idle in a box. The printer would also good for a mobile time clock! Somebody stop me before I get·too carried away!
Post Edited (electromanj) : 6/21/2009 5:20:18 AM GMT
I'd choose the Propeller simply because I have some and enjoy programming it more than the BS2. It's a more down to the hardware type device. However, there's no reason why a BS2 wouldn't work if you put in a little thought.
humanoido