RFID Issues.... HELP !!!!!


Closed Thread
Results 1 to 20 of 20

Hybrid View

  1. #1
    Join Date
    May 2012
    Location
    Merseyside, UK
    Posts
    237


    Did you find this post helpful? Yes | No

    Default Re: RFID Issues.... HELP !!!!!

    Hi Steve.

    Has to see full 10 digits.... the X on the last one is my checksum.... just to see what happens if Number not in eprom

    Four doors

    Four different keys

    one key for each door !!
    Last edited by andybarrett1; - 1st September 2014 at 21:53. Reason: clarification

  2. #2
    Join Date
    Jun 2009
    Location
    Sc*nthorpe, UK
    Posts
    333


    Did you find this post helpful? Yes | No

    Default Re: RFID Issues.... HELP !!!!!

    Quote Originally Posted by andybarrett1 View Post
    Hi Steve.

    Has to see full 10 digits.... the X on the last one is my checksum.... just to see what happens if Number not in eprom

    Four doors

    Four different keys

    one key for each door !!
    But this line

    IF (char = buf(idx)) THEN loc1

    unlocks loc1 when char = buff(idx)

    if you scan any card the first character is 1
    the first data character is 1 at buff(0)
    therefore they match and loc1 opens
    which it should not do obviously.

  3. #3
    Join Date
    May 2012
    Location
    Merseyside, UK
    Posts
    237


    Did you find this post helpful? Yes | No

    Default Re: RFID Issues.... HELP !!!!!

    Ah.....

    OK

    Rethink needed then :-)

  4. #4
    Join Date
    Jun 2009
    Location
    Sc*nthorpe, UK
    Posts
    333


    Did you find this post helpful? Yes | No

    Default Re: RFID Issues.... HELP !!!!!

    What you need to do is

    For each id check each character and if one does not match jump out. If all match unlock door.

    FOR idx = 0 TO 9 ' scan bytes in tag
    READ (((tagNum-1) * 10) + idx), char ' get tag data from table
    IF (char != buf(idx)) THEN goto nextTag
    Next

    high PortB.4
    PAUSE 1000
    LOW PortB.4
    PAUSE 1000
    GOTO Main

    nextTag:

    I think!

  5. #5
    Join Date
    May 2012
    Location
    Merseyside, UK
    Posts
    237


    Did you find this post helpful? Yes | No

    Default Re: RFID Issues.... HELP !!!!!

    Ok ....

    Food for thought... I got to get kit ready for tomorrow...Off to Newcastle .. change from Scunny.

    Queen Anne looking like November turn on.... Bonfire Night !!!

    Thanks for help

Similar Threads

  1. RFID example.
    By StevenLim in forum General
    Replies: 2
    Last Post: - 8th February 2011, 09:08
  2. RFID with PIC
    By sswcharlie in forum General
    Replies: 0
    Last Post: - 30th August 2008, 08:41
  3. RFID Implant
    By sayzer in forum Off Topic
    Replies: 0
    Last Post: - 8th May 2007, 11:23
  4. Rfid Reader
    By thaivu in forum Serial
    Replies: 5
    Last Post: - 9th November 2006, 06:52
  5. Rfid?
    By toalan in forum Off Topic
    Replies: 0
    Last Post: - 11th February 2005, 23:37

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts