RFID help
buckedup169
Posts: 8
i am trying to write a program so when a different id tag passes by the rfid a certain output will go high and low as that card keeps passing. its been about 3 years since i worked with Parallax softwre and am a little rusty if someone could take a look at my program and see if it will work or what needs dont to make it work that would be great
Comments
The Door Program Code you added will never run because the code is not designed for it to ever get to that point. Also, your conditionals will always fail because you're testing different numbers against each other instead of a variable. For example, testing IF 14=1 or something similar will always be false. Actually a second look shows you're not looking at the individual tags anymore. The existing demo as it was written does most of what you needed to do. I would suggest starting with the original code again as you need some of what was removed.
This code does does exactly what you said...when a tag passes the I/O pin assigned to that tag goes high then low each time the tag is passed by the reader. I hope this helps.