8

Is it possible to connect more than one antenna to a single RFID reader module in order to pick up two different RFID chips at once?

I would like to create an arduino project like this..

tyblu
  • 8,167
  • 6
  • 40
  • 70

2 Answers2

6

Is it possible to hook 2 antennas up to a RFID reader designed to be connected to a single antenna? Yes, in 2 ways:

  • As BarsMonster suggested, you could alternating between the antennas with a relay or something similar, so only one is connected at a time: As long as one antenna stays on long enough for the complete query-response conversation, it should work fine.
  • Connecting both antennas simultaneously with a matching filter: then it acts just like one larger antenna; with proper matching, it should work fine.

However, perhaps you don't really need "2 antennas":

Is it possible for a single RFID reader to read 2 different RFID chips at once:

  • Yes, most RFID protocols include singulation so that if you put dozens of RFID tags in front of it, and then turn on the RFID reader, it can read the correct serial number from each and every tag. (The singulation protocol tells one tag at a time to transmit its serial number, so it's technically not "at once", but it's quick enough to be practically simultaneous for most purposes).
davidcary
  • 17,426
  • 11
  • 66
  • 115
  • Are there any resources you know off the top of your head that explain how to construct a relay to control the antennas? Would a MOSFET work for antennas on the 13.56GHz range? – Parker Mar 26 '12 at 14:30
2

No, unless it is specifically designed to have dual receivers (unlikely).

But, if you ok to read them sequentially - you can switch antennas every 5ms for example - this might work then :-D

BarsMonster
  • 3,267
  • 4
  • 45
  • 79