element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Design Challenges
  • Challenges & Projects
  • More
Design Challenges
Forum RDM3600 RFID COMPONENT
  • Forum
  • Documents
  • Polls
  • Files
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 29 replies
  • Subscribers 8 subscribers
  • Views 3337 views
  • Users 0 members are here
Related

RDM3600 RFID COMPONENT

Former Member
Former Member over 10 years ago

I have been using the Arduino platform for a while now(about 6 months) and I tried to hook up the RDM3600 RFID reader to my Arduino Uno and it seems like the reader does not communicate with the board. I present a card, but the serial interface does not display a serial number or anything. I am following this tutorial:

 

http://tronixstuff.com/2013/11/19/arduino-tutorials-chapter-15-rfid/

 

I modified the code to get an indication that the setup was complete:

 

#include <SoftwareSerial.h>

 

SoftwareSerial RFID(2, 3);

 

int i;

 

void setup()

{

  RFID.begin(9600);

  Serial.begin(9600);

  Serial.println("ready");

}

 

void loop()

{

  if (RFID.available() > 0)

  {

    i=RFID.read();

    Serial.print(i, DEC);

    Serial.println(" next");

  }

}

 

 

 

Does anyone have any idea why I don't get any communication from the RDM3600 when I present a RFID tag.

  • Sign in to reply
  • Cancel

Top Replies

  • kgenskowsky
    kgenskowsky over 10 years ago +1
    Hi There, You can always use a RS232 converter to connect the module to a PC serial port and check that the module is working.
  • ellardpostma
    ellardpostma over 9 years ago in reply to gadget.iom +1
    Just followed what you stated and the module worked fine. Maybe it made a difference that I took the circuit apart and hooked everything up again. Tried three completely different tags and all worked.…
Parents
  • gadget.iom
    0 gadget.iom over 10 years ago

    These issues are often causes by the simple things. image

    Have you tried swapping the TX/RX pins around?

     

    Can you take a photo or sketch out your connections between the RFID reader and the Arduino.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to gadget.iom

    Here is a picture. Just power, ground, and a jumper to pin 3 on the Arduino Uno and the antenna that came with the RDM3600. I modified the code to change the RX and TX pins to 3 and 4:

     

    #include <SoftwareSerial.h>

     

    SoftwareSerial RFID(3, 4);

     

    int i;

     

    void setup()

    {

      RFID.begin(9600);

      Serial.begin(9600);

      Serial.println("ready");

    }

     

    void loop()

    {

      if (RFID.available() > 0)

      {

        i=RFID.read();

        Serial.print(i, DEC);

        Serial.println(" next");

         }

      }

    image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to gadget.iom

    Thank you

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to Former Member

    When I link pin 3 and pin 0 I can send a value via the serial monitor that appears on the the monitor. What does this mean?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • gadget.iom
    0 gadget.iom over 10 years ago in reply to Former Member

    Ok. Have spent some time playing with this...Try changing your SoftwareSerial pins from 3&4 to 10&11. Connect your RFID reader to pin 10.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • gadget.iom
    0 gadget.iom over 10 years ago in reply to gadget.iom

    It is likely due the limitations outlined on this page: Arduino - SoftwareSerial

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to gadget.iom

    Still no luck...

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • gadget.iom
    0 gadget.iom over 10 years ago in reply to Former Member

    Ok. I tested the code on an Arduino Leonardo, With a USB-232Serial(TTL) adaptor connected to pin 10. When I copied you code over and changed 3,4 to 10,11 in the SoftwareSerial declaration I received the ascii code number followed by the word "next".

     

    For example pressing 1 resulted in "49 next". I used a cable like this http://uk.farnell.com/ftdi/ttl-232r-3v3/cable-usb-to-ttl-level-serial/dp/1329311 and a separate Serial Terminal program to send the data to the Arduino.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • gadget.iom
    0 gadget.iom over 10 years ago in reply to gadget.iom

    Here is the code I was using:

     

    #include <SoftwareSerial.h>
    
    SoftwareSerial RFID(10, 11);
    
    int i;
    
    void setup() {
      RFID.begin(9600);
      Serial.begin(9600);
      Serial.println("ready");
    }
    
    void loop() {
      if (RFID.available() > 0) {
        i=RFID.read();
        Serial.print(i, DEC);
        Serial.println(" next");
      }
    }

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to gadget.iom

    I think my problem is I'm using RFID tags that operate at a higher frequency than the 125kHz that the reader uses.

     

    I ordered some new tags, I will keep you posted.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • gadget.iom
    0 gadget.iom over 10 years ago in reply to Former Member

    Are you trying to use Mifare tags? If so they operate on 13.56MHz.

    I've just purchased one of these modules, so I should have a better idea whats going on in a couple of days.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 10 years ago in reply to gadget.iom

    I was using a WMATA SmartTrip card and some tags I found on Amazon:

     

    http://www.nxp.com/products/identification_and_security/smart_label_and_tag_ics/ntag/series/NTAG213_215_216.html

     

    I chose the RDM3600 because I can modify the antenna to increase the read range.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Reply
  • Former Member
    0 Former Member over 10 years ago in reply to gadget.iom

    I was using a WMATA SmartTrip card and some tags I found on Amazon:

     

    http://www.nxp.com/products/identification_and_security/smart_label_and_tag_ics/ntag/series/NTAG213_215_216.html

     

    I chose the RDM3600 because I can modify the antenna to increase the read range.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube