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 3367 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
  • kgenskowsky
    0 kgenskowsky over 10 years ago

    Paul is correct,   I have developed electronics for a bunch of years and a  generic recommendation i add a Serial port to all my projects as it is the easiest way to debug some times of firmwares.

     

    Regarding extending NFC,  be aware that extending the range on NFC devices is not a small task as the system is designed to be near field communication for security reasons.  We would not like some one reading and tampering with the data on the cards when taking public transportation image . Having said that I remember a proyect on Mifare cards that extended the range for some 1k cards. How much range you want to accomplish? 

    • 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 kgenskowsky

    I actually work for a public transportation fair collection devise manufacturing company as a mechanical engineer. The company I work for designed and developed a lot of the NFC technologies using in public transport.  I am participating in a hackathone this weekend and my team has proposed an assembly that reads RFID tags on a person as they walk through a door way without the person having to remove the tags from there pocket, wallet, etc...

     

    I have done a little research and have found that antenna diameter has a lot to do with the read range. I was hoping to increase the diameter of the RDM3600 antenna and maybe get a 10" (25.4cm) range so we could mount it on a door frame and read tags in a persons pocket as they walk through the door.

     

    It's just a proof of concept, and if it goes anywhere the real scientist would take over developing the product. But I need something that works to present to the judges.

    • 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 kgenskowsky

    I actually work for a public transportation fair collection devise manufacturing company as a mechanical engineer. The company I work for designed and developed a lot of the NFC technologies using in public transport.  I am participating in a hackathone this weekend and my team has proposed an assembly that reads RFID tags on a person as they walk through a door way without the person having to remove the tags from there pocket, wallet, etc...

     

    I have done a little research and have found that antenna diameter has a lot to do with the read range. I was hoping to increase the diameter of the RDM3600 antenna and maybe get a 10" (25.4cm) range so we could mount it on a door frame and read tags in a persons pocket as they walk through the door.

     

    It's just a proof of concept, and if it goes anywhere the real scientist would take over developing the product. But I need something that works to present to the judges.

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

    Mmm, Interesting.

    The main problem is that as you extend the range you will require more and more power to send to the antenna (Remember in passive devices the signal is used to convert to power and to send data so as you get farther and farther away card will get less power.). Just changing the size will not give you extend range. You will be able to get to 10cm as the standard is delivered maybe 15cm with a direct chip connection to a bigger antenna.

    So check on active antennas to extend further away.

     

    For this application i would recommend using different card technology and readers. I know they exist haven't research much to recommend one.

     

     

    Also as you extend the ranges the times will get longer between data transfer and I know some NFC protocols and chips have embedded security to disable longer than 10 cm communications.

     

    I founded a project that might be of help. I had on my old researches.

    http://www.eng.tau.ac.il/~yash/kw-usenix06/

     

    It could work if you convert the doorway in a complete antenna. So the tag will path thru the center of the field, Still the power might be to big and you might and end deleting Hard disks and any other magnetic data device so be careful when testing.

     

     

    Hope this helps.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
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