Search code examples
c#rfidusb

RFID ME Gen2 Internet



i want to read out some Tags from my MTI RFID ME Gen2 Internet :
http://www.mti.com.tw/rfidme/
It´s a USB Dongle and now iwant to play with him in VS with c#. So is searched long time for the SDK and
i find some:
http://www.bait-consulting.com/RFIDMESDK.aspx
the development-kit:
www.mti.com.tw/upfiles/e_pro_tb01346397897.pdf
here is the manual with the discription:
www.bait-consulting.com/Cutomers/MTI/UserManual%28v1.1.0.110%29.pdf
now my Problem is the implementation of the sdk, there are two .dll. i include them to my project and than i would work around the sample code which is given :

public partial class Form1 : Form
{
//Declare RFID ME™ SDK
public RFIDMEDevKit.reader myReader = new RFIDMEDevKit.reader();
}

My VS2012 throw a exeption: in line 4 : Die Zeichenfolge wurde nicht als gültiges DateTime erkannt. FormatExeption

Also the complete Code-Examples are not running :/ So have somebody experience with this thema? Or some Code-Samples?

Thanks a lot :) Hope you can help me


Solution

  • I am the person that wrote the SDK. The problem you received is due how I was doing the expiration on the demo. You are seeing the error because of date format incompatibilities. I have changed that (and the problem should have gone away) and trying to get a few last bugs fixed before releasing the latest version. I hope to have that ready by the ending of the month.

    If you are just trying to read tags, that works ok for the RFID ME USB Dongle. If you need to write to the tags, I am still trying to fix that (I reciently changed how the USB HID interface works and that has broken something).