ACR122器件编程示例找不到读卡器

时间:2013-08-09 15:54:20

标签: c# .net nfc

我正在尝试使用SDK附带的C#的设备编程示例在Windows 8上试用ACR122读卡器。当我开始采样时,我没有在可用设备列表中看到读卡器。

我不认为这是一般驱动程序问题,因为配置阅读器的工具(预编译的二进制文件)列出了阅读器并允许连接到它。

我是C#和.NET的新手。如果有人能给我一些关于确定错误的建议,我会很高兴的。如果您需要更多信息,我很乐意为您提供。

2 个答案:

答案 0 :(得分:3)

我也不是专家,我目前正在使用ACR122U读卡器,样品也不适合我。但是,我能够写一个小C#程序,所以我可以读/写少量文本(转换为十六进制)到智能卡上。 所以我建议你尝试自己编写,就像我一样,我会给你一些让我入门的代码(我使用的是pcsc-sharp dll):

using PCSC;

namespace SmartcardCheck
{
    class Program
    {
        static void Main(string[] args)
        {
            using (var context = new SCardContext())
            {
                context.Establish(SCardScope.System);

                string[] readerNames = null;
                try
                {
                    // retrieve all reader names
                    readerNames = context.GetReaders();

                    // get the card status of each reader that is currently connected
                    foreach (var readerName in readerNames)
                    {
                        using (var reader = new SCardReader(context))
                        {
                            Console.WriteLine("Trying to connect to reader {0}.", readerName);

                            var sc = reader.Connect(readerName, SCardShareMode.Shared, SCardProtocol.Any);
                            if (sc == SCardError.Success)
                            {
                                DisplayReaderStatus(reader);
                            }
                            else
                            {
                                Console.WriteLine("No card inserted or reader is reserved exclusively by another application.");
                                Console.WriteLine("Error message: {0}\n", SCardHelper.StringifyError(sc));
                            }
                        }
                    }
                }
                catch (Exception)
                {
                    if (readerNames == null)
                    {
                        Console.WriteLine("No readers found.");
                        return;
                    }
                }

                Console.ReadKey();
            }
        }
    }
}

希望它可以帮助你:)

答案 1 :(得分:1)

Windows未将ACR122视为NFC(接近)设备,它是一种能够读取NFC卡的智能卡设备。要在Modern Apps中使用它或通过WinRT API,您实际上需要使用已经引入了对智能卡的支持的Windows 8.1。