Netduino home hardware projects downloads community

Jump to content


The Netduino forums have been replaced by new forums at community.wildernesslabs.co. This site has been preserved for archival purposes only and the ability to make new accounts or posts has been turned off.
Photo

ID-12/ID-20 RFID Reader Driver


  • Please log in to reply
61 replies to this topic

#61 Trey Aughenbaugh

Trey Aughenbaugh

    Advanced Member

  • Members
  • PipPipPip
  • 36 posts

Posted 21 May 2013 - 05:42 PM

Nice catch and thanks for sharing.

So it sounds like you created an RFID reader that communicates over a network!

Sounds like the same project I was working on!

Although I ended up never finished my project, I did order a couple of these chips to play with.

 

SMT PoE solution with integrated DC-DC converter. 3.3V or 5V or 12V. 12 pin SMD

https://www.semicond...idproduct=13987

 

I was planning on powering my card reader this way. 

 

-Trey

 

SOLVED!

Sorry do not waste time in found any solution it was simply a GC problem. During my tests I simply wrote this:

        private static void StartRFID()        {            var idReader = new RFIDReader(SerialPorts.COM1, Pins.GPIO_PIN_D4);            idReader.RfidEvent += new RFIDReader.RfidEventDelegate(_idReader_RfidEvent);            idReader.Start();        }

So the GC during "collection" disposed my idReader variable. Right code is:

        private static void StartRFID()        {            idReader = new RFIDReader(SerialPorts.COM1, Pins.GPIO_PIN_D4);            idReader.RfidEvent += new RFIDReader.RfidEventDelegate(_idReader_RfidEvent);            idReader.Start();        }

Where the idReader is global scope declared.

 

Gerardo



#62 JJJ

JJJ

    Member

  • Members
  • PipPip
  • 27 posts
  • LocationItaly

Posted 22 May 2013 - 07:28 AM

WOW,

it seems we are working on (exactly) the same project. I'm looking for a similar PoE chip. We are testing STM PM8803 http://www.st.com/st...er/flpm8803.pdf

 

I hope we can exchange the project (Hardware and Software) when finished.

 

keep in touch

Gerardo






1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users

home    hardware    projects    downloads    community    where to buy    contact Copyright © 2016 Wilderness Labs Inc.  |  Legal   |   CC BY-SA
This webpage is licensed under a Creative Commons Attribution-ShareAlike License.