实例介绍
包含API文档等9个文档和七种语言的SDK开发实例,帮助大家共同学习。
【实例截图】
【核心代码】
ACR122U开发用户手册和实例代码
├── ACR122 SDK (PCSC) Sample Codes
│ └── Sample Codes
│ ├── Borland Delphi 7
│ │ ├── Contactless Cards
│ │ │ ├── MiFare Card Programming
│ │ │ │ ├── AcsModule.dcu
│ │ │ │ ├── ACSModule.pas
│ │ │ │ ├── ACS_multiple.ico
│ │ │ │ ├── MiFareProg.dcu
│ │ │ │ ├── MiFareProg.ddp
│ │ │ │ ├── MiFareProg.dfm
│ │ │ │ ├── MiFareProg.pas
│ │ │ │ ├── MiFareProgramming.cfg
│ │ │ │ ├── MiFareProgramming.dof
│ │ │ │ ├── MiFareProgramming.dpr
│ │ │ │ └── MiFareProgramming.res
│ │ │ └── Other PICC Programming
│ │ │ ├── AcsModule.dcu
│ │ │ ├── ACSModule.pas
│ │ │ ├── ACS_multiple.ico
│ │ │ ├── OtherPICC.dcu
│ │ │ ├── OtherPICC.ddp
│ │ │ ├── OtherPICC.dfm
│ │ │ ├── OtherPICC.pas
│ │ │ ├── OtherPICCProg.cfg
│ │ │ ├── OtherPICCProg.dof
│ │ │ ├── OtherPICCProg.dpr
│ │ │ └── OtherPICCProg.res
│ │ └── Device Programming
│ │ ├── Basic Device Programming
│ │ │ ├── AcsModule.dcu
│ │ │ ├── ACSModule.pas
│ │ │ ├── ACS_multiple.ico
│ │ │ ├── DeviceProg.dcu
│ │ │ ├── DeviceProg.ddp
│ │ │ ├── DeviceProg.dfm
│ │ │ ├── DeviceProg.pas
│ │ │ ├── DeviceProgramming.cfg
│ │ │ ├── DeviceProgramming.dof
│ │ │ ├── DeviceProgramming.dpr
│ │ │ └── DeviceProgramming.res
│ │ ├── Get ATR
│ │ │ ├── AcsModule.dcu
│ │ │ ├── ACSModule.pas
│ │ │ ├── ACS_multiple.ico
│ │ │ ├── GetATR.dcu
│ │ │ ├── GetATR.dfm
│ │ │ ├── GetATR.pas
│ │ │ ├── GetATRprog.cfg
│ │ │ ├── GetATRprog.dof
│ │ │ ├── GetATRprog.dpr
│ │ │ └── GetATRprog.res
│ │ ├── Peer to Peer Programming
│ │ │ ├── ActiveSample
│ │ │ │ ├── AcsModule.dcu
│ │ │ │ ├── ACSModule.pas
│ │ │ │ ├── ACS_multiple.ico
│ │ │ │ ├── ActiveSample.dcu
│ │ │ │ ├── ActiveSample.ddp
│ │ │ │ ├── ActiveSample.dfm
│ │ │ │ ├── ActiveSample.pas
│ │ │ │ ├── ActiveSampleProg.cfg
│ │ │ │ ├── ActiveSampleProg.dof
│ │ │ │ ├── ActiveSampleProg.dpr
│ │ │ │ └── ActiveSampleProg.res
│ │ │ └── PassiveSample
│ │ │ ├── AcsModule.dcu
│ │ │ ├── ACSModule.pas
│ │ │ ├── ACS_multiple.ico
│ │ │ ├── PassiveSample.dcu
│ │ │ ├── PassiveSample.ddp
│ │ │ ├── PassiveSample.dfm
│ │ │ ├── PassiveSample.pas
│ │ │ ├── PassiveSampleProg.cfg
│ │ │ ├── PassiveSampleProg.dof
│ │ │ ├── PassiveSampleProg.dpr
│ │ │ └── PassiveSampleProg.res
│ │ └── Polling
│ │ ├── AcsModule.dcu
│ │ ├── ACSModule.pas
│ │ ├── ACS_multiple.ico
│ │ ├── Polling.dcu
│ │ ├── Polling.ddp
│ │ ├── Polling.dfm
│ │ ├── Polling.pas
│ │ ├── PollingProg.cfg
│ │ ├── PollingProg.dof
│ │ ├── PollingProg.dpr
│ │ └── PollingProg.res
│ ├── Java
│ │ ├── class files
│ │ │ ├── ACR122Sample.jar
│ │ │ ├── ACSModule$APDURec.class
│ │ │ ├── ACSModule$SCARD_IO_REQUEST.class
│ │ │ ├── ACSModule$SCARD_READERSTATE.class
│ │ │ ├── ACSModule.class
│ │ │ ├── ActiveSample$1.class
│ │ │ ├── ActiveSample.class
│ │ │ ├── DevProg$1.class
│ │ │ ├── DevProg.class
│ │ │ ├── GetATR$1.class
│ │ │ ├── GetATR.class
│ │ │ ├── JacspcscLoader.class
│ │ │ ├── JavaApplet.htm
│ │ │ ├── java.policy.applet
│ │ │ ├── mainApplet.class
│ │ │ ├── mainMifareProg$1.class
│ │ │ ├── mainMifareProg.class
│ │ │ ├── OtherPICC$1.class
│ │ │ ├── OtherPICC.class
│ │ │ ├── PassiveSample$1.class
│ │ │ ├── PassiveSample.class
│ │ │ ├── Polling$1.class
│ │ │ ├── Polling$2.class
│ │ │ └── Polling.class
│ │ └── source files
│ │ ├── ACSModule.java
│ │ ├── ActiveSample.java
│ │ ├── DevProg.java
│ │ ├── GetATR.java
│ │ ├── JacspcscLoader.java
│ │ ├── mainApplet.java
│ │ ├── mainMifareProg.java
│ │ ├── OtherPICC.java
│ │ ├── PassiveSample.java
│ │ └── Polling.java
│ ├── MS Visual Basic 6.0
│ │ ├── Contactless Cards
│ │ │ ├── MiFare Card Programming
│ │ │ │ ├── 32x32XP.ico
│ │ │ │ ├── ACSModule.bas
│ │ │ │ ├── frmMiFare.frm
│ │ │ │ ├── frmMiFare.frx
│ │ │ │ ├── MiFare Card Programming.vbp
│ │ │ │ └── MiFare Card Programming.vbw
│ │ │ └── Other PICC Card Programming
│ │ │ ├── 32x32XP.ico
│ │ │ ├── ACSModule.bas
│ │ │ ├── Other PICC Card Programming.frm
│ │ │ ├── Other PICC Card Programming.frx
│ │ │ ├── Other PICC Card Programming.vbp
│ │ │ └── Other PICC Card Programming.vbw
│ │ └── Device Programming
│ │ ├── Basic Device Programming
│ │ │ ├── ACSlogo.ico
│ │ │ ├── ACSModule.bas
│ │ │ ├── deviceProg.vbp
│ │ │ ├── deviceProg.vbw
│ │ │ ├── devProg.frm
│ │ │ └── devProg.frx
│ │ ├── Device Programming
│ │ │ ├── ACSlogo.ico
│ │ │ ├── ACSModule.bas
│ │ │ ├── deviceProg.vbp
│ │ │ ├── deviceProg.vbw
│ │ │ ├── devProg.frm
│ │ │ └── devProg.frx
│ │ ├── Get ATR
│ │ │ ├── 32x32XP.ico
│ │ │ ├── ACSModule.bas
│ │ │ ├── frmGetATR.frm
│ │ │ ├── frmGetATR.frx
│ │ │ ├── GetATR.vbp
│ │ │ └── GetATR.vbw
│ │ ├── Peer to Peer programming
│ │ │ ├── Active Sample
│ │ │ │ ├── ACSlogo.ico
│ │ │ │ ├── ACSModule.bas
│ │ │ │ ├── ActiveSample.frm
│ │ │ │ ├── ActiveSample.frx
│ │ │ │ ├── ActiveSample.vbp
│ │ │ │ └── ActiveSample.vbw
│ │ │ └── Passive Sample
│ │ │ ├── ACSlogo.ico
│ │ │ ├── ACSModule.bas
│ │ │ ├── PassiveSample.frm
│ │ │ ├── PassiveSample.frx
│ │ │ ├── PassiveSample.vbp
│ │ │ └── PassiveSample.vbw
│ │ └── Polling
│ │ ├── ACSlogo.ico
│ │ ├── ACSModule.bas
│ │ ├── Polling.exe
│ │ ├── polling.frm
│ │ ├── polling.frx
│ │ ├── Polling.vbp
│ │ └── Polling.vbw
│ ├── MS Visual Basic.NET 2005
│ │ ├── Contactless Cards
│ │ │ ├── MiFare Card Programming
│ │ │ │ ├── MiFare Card Programming
│ │ │ │ │ ├── ACS_logo.ico
│ │ │ │ │ ├── Form1.Designer.vb
│ │ │ │ │ ├── Form1.resx
│ │ │ │ │ ├── Form1.vb
│ │ │ │ │ ├── MiFare Card Programming.vbproj
│ │ │ │ │ ├── MifareProg.Designer.vb
│ │ │ │ │ ├── MifareProg.resx
│ │ │ │ │ ├── MifareProg.vb
│ │ │ │ │ ├── ModWinsCard.vb
│ │ │ │ │ └── My Project
│ │ │ │ │ ├── Application.Designer.vb
│ │ │ │ │ ├── Application.myapp
│ │ │ │ │ ├── AssemblyInfo.vb
│ │ │ │ │ ├── Resources.Designer.vb
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.vb
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── MiFare Card Programming.sln
│ │ │ └── Other PICC Card Programming
│ │ │ ├── Other PICC Card Programming
│ │ │ │ ├── ACS_logo.ico
│ │ │ │ ├── Form1.Designer.vb
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Form1.vb
│ │ │ │ ├── ModWinsCard.vb
│ │ │ │ ├── My Project
│ │ │ │ │ ├── Application.Designer.vb
│ │ │ │ │ ├── Application.myapp
│ │ │ │ │ ├── AssemblyInfo.vb
│ │ │ │ │ ├── Resources.Designer.vb
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.vb
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── Other PICC Card Programming.vbproj
│ │ │ │ ├── PICCProg.Designer.vb
│ │ │ │ ├── PICCProg.resx
│ │ │ │ └── PICCProg.vb
│ │ │ └── Other PICC Card Programming.sln
│ │ └── Device Programming
│ │ ├── Basic DeviceProgramming
│ │ │ ├── DeviceProgramming
│ │ │ │ ├── ACS_logo.ico
│ │ │ │ ├── DeviceProgramming.vbproj
│ │ │ │ ├── DevProg.Designer.vb
│ │ │ │ ├── DevProg.resx
│ │ │ │ ├── DevProg.vb
│ │ │ │ ├── Form1.Designer.vb
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Form1.vb
│ │ │ │ ├── ModWinsCard.vb
│ │ │ │ └── My Project
│ │ │ │ ├── Application.Designer.vb
│ │ │ │ ├── Application.myapp
│ │ │ │ ├── AssemblyInfo.vb
│ │ │ │ ├── Resources.Designer.vb
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.vb
│ │ │ │ └── Settings.settings
│ │ │ ├── DeviceProgramming.sln
│ │ │ └── DeviceProgramming.suo
│ │ ├── Get ATR
│ │ │ ├── Get ATR
│ │ │ │ ├── ACS_logo.ico
│ │ │ │ ├── Form1.Designer.vb
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── Form1.vb
│ │ │ │ ├── GetATR.Designer.vb
│ │ │ │ ├── GetATR.resx
│ │ │ │ ├── GetATR.vb
│ │ │ │ ├── Get ATR.vbproj
│ │ │ │ ├── ModWinsCard.vb
│ │ │ │ └── My Project
│ │ │ │ ├── Application.Designer.vb
│ │ │ │ ├── Application.myapp
│ │ │ │ ├── AssemblyInfo.vb
│ │ │ │ ├── Resources.Designer.vb
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.vb
│ │ │ │ └── Settings.settings
│ │ │ └── Get ATR.sln
│ │ ├── Peer to Peer Programming
│ │ │ ├── ActiveSample
│ │ │ │ ├── ActiveSample
│ │ │ │ │ ├── 48x48XP.ico
│ │ │ │ │ ├── ActiveSample.Designer.vb
│ │ │ │ │ ├── ActiveSample.resx
│ │ │ │ │ ├── ActiveSample.vb
│ │ │ │ │ ├── ActiveSample.vbproj
│ │ │ │ │ ├── ModWinsCard.vb
│ │ │ │ │ └── My Project
│ │ │ │ │ ├── Application.Designer.vb
│ │ │ │ │ ├── Application.myapp
│ │ │ │ │ ├── AssemblyInfo.vb
│ │ │ │ │ ├── Resources.Designer.vb
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.vb
│ │ │ │ │ └── Settings.settings
│ │ │ │ └── ActiveSample.sln
│ │ │ └── PassiveSample
│ │ │ ├── PassiveSample
│ │ │ │ ├── 48x48XP.ico
│ │ │ │ ├── ModWinsCard.vb
│ │ │ │ ├── My Project
│ │ │ │ │ ├── Application.Designer.vb
│ │ │ │ │ ├── Application.myapp
│ │ │ │ │ ├── AssemblyInfo.vb
│ │ │ │ │ ├── Resources.Designer.vb
│ │ │ │ │ ├── Resources.resx
│ │ │ │ │ ├── Settings.Designer.vb
│ │ │ │ │ └── Settings.settings
│ │ │ │ ├── PassiveSample.Designer.vb
│ │ │ │ ├── PassiveSample.resx
│ │ │ │ ├── PassiveSample.vb
│ │ │ │ └── PassiveSample.vbproj
│ │ │ └── PassiveSample.sln
│ │ └── Polling
│ │ ├── Polling
│ │ │ ├── ACS_logo.ico
│ │ │ ├── Form1.Designer.vb
│ │ │ ├── Form1.resx
│ │ │ ├── Form1.vb
│ │ │ ├── ModWinsCard.vb
│ │ │ ├── My Project
│ │ │ │ ├── Application.Designer.vb
│ │ │ │ ├── Application.myapp
│ │ │ │ ├── AssemblyInfo.vb
│ │ │ │ ├── Resources.Designer.vb
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.vb
│ │ │ │ └── Settings.settings
│ │ │ ├── Polling.Designer.vb
│ │ │ ├── Polling.resx
│ │ │ ├── Polling.vb
│ │ │ └── Polling.vbproj
│ │ └── Polling.sln
│ ├── MS Visual C++ 2005 (x64)
│ │ ├── Contactless Cards
│ │ │ ├── MifareCardProgramming
│ │ │ │ ├── MifareCardProgramming.aps
│ │ │ │ ├── MifareCardProgramming.clw
│ │ │ │ ├── MifareCardProgramming.cpp
│ │ │ │ ├── MifareCardProgrammingDlg.cpp
│ │ │ │ ├── MifareCardProgrammingDlg.h
│ │ │ │ ├── MifareCardProgramming.dsp
│ │ │ │ ├── MifareCardProgramming.dsw
│ │ │ │ ├── MifareCardProgramming.h
│ │ │ │ ├── MifareCardProgramming.opt
│ │ │ │ ├── MifareCardProgramming.plg
│ │ │ │ ├── MifareCardProgramming.rc
│ │ │ │ ├── MifareCardProgramming.sln
│ │ │ │ ├── MifareCardProgramming.suo
│ │ │ │ ├── MifareCardProgramming.vcproj
│ │ │ │ ├── MifareCardProgramming.vcproj.ACS-WAZER.Wazer.user
│ │ │ │ ├── ReadMe.txt
│ │ │ │ ├── res
│ │ │ │ │ ├── ACS_Small.ico
│ │ │ │ │ ├── MifareCardProgramming(bak).ico
│ │ │ │ │ ├── MifareCardProgramming.ico
│ │ │ │ │ └── MifareCardProgramming.rc2
│ │ │ │ ├── resource.h
│ │ │ │ ├── StdAfx.cpp
│ │ │ │ ├── StdAfx.h
│ │ │ │ ├── WINSCARD.H
│ │ │ │ └── Winscard.lib
│ │ │ └── Other PICC Cards
│ │ │ ├── Other PICC Cards.aps
│ │ │ ├── Other PICC Cards.clw
│ │ │ ├── Other PICC Cards.cpp
│ │ │ ├── Other PICC CardsDlg.cpp
│ │ │ ├── Other PICC CardsDlg.h
│ │ │ ├── Other PICC Cards.dsp
│ │ │ ├── Other PICC Cards.dsw
│ │ │ ├── Other PICC Cards.h
│ │ │ ├── Other PICC Cards.opt
│ │ │ ├── Other PICC Cards.plg
│ │ │ ├── Other PICC Cards.rc
│ │ │ ├── Other PICC Cards.sln
│ │ │ ├── Other PICC Cards.suo
│ │ │ ├── Other PICC Cards.vcproj
│ │ │ ├── Other PICC Cards.vcproj.ACS-WAZER.Wazer.user
│ │ │ ├── ReadMe.txt
│ │ │ ├── res
│ │ │ │ ├── ACS_Small.ico
│ │ │ │ ├── Other PICC Cards(bak).ico
│ │ │ │ ├── Other PICC Cards.ico
│ │ │ │ └── Other PICC Cards.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── WINSCARD.H
│ │ │ └── Winscard.lib
│ │ └── Device Programming
│ │ ├── Basic Device Programming
│ │ │ ├── Device Programming.aps
│ │ │ ├── Device Programming.clw
│ │ │ ├── Device Programming.cpp
│ │ │ ├── Device ProgrammingDlg.cpp
│ │ │ ├── Device ProgrammingDlg.h
│ │ │ ├── Device Programming.dsp
│ │ │ ├── Device Programming.dsw
│ │ │ ├── Device Programming.h
│ │ │ ├── Device Programming.opt
│ │ │ ├── Device Programming.plg
│ │ │ ├── Device Programming.rc
│ │ │ ├── Device Programming.sln
│ │ │ ├── Device Programming.suo
│ │ │ ├── Device Programming.vcproj
│ │ │ ├── Device Programming.vcproj.ACS-Wazer.Wazer.user
│ │ │ ├── res
│ │ │ │ ├── ACS_Small.ico
│ │ │ │ ├── Device Programming(bak).ico
│ │ │ │ ├── Device Programming.ico
│ │ │ │ └── Device Programming.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── WINSCARD.H
│ │ │ └── Winscard.lib
│ │ ├── Get ATR
│ │ │ ├── Get ATR.aps
│ │ │ ├── Get ATR.clw
│ │ │ ├── Get ATR.cpp
│ │ │ ├── Get ATRDlg.cpp
│ │ │ ├── Get ATRDlg.h
│ │ │ ├── Get ATR.dsp
│ │ │ ├── Get ATR.dsw
│ │ │ ├── Get ATR.h
│ │ │ ├── Get ATR.opt
│ │ │ ├── Get ATR.plg
│ │ │ ├── Get ATR.rc
│ │ │ ├── Get ATR.sln
│ │ │ ├── Get ATR.suo
│ │ │ ├── Get ATR.vcproj
│ │ │ ├── Get ATR.vcproj.ACS-WAZER.Wazer.user
│ │ │ ├── ReadMe.txt
│ │ │ ├── res
│ │ │ │ ├── ACS_Small.ico
│ │ │ │ ├── Get ATR( bak ).ico
│ │ │ │ ├── Get ATR.ico
│ │ │ │ └── Get ATR.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── WINSCARD.H
│ │ │ └── Winscard.lib
│ │ ├── Peer to Peer Programming
│ │ │ ├── Active Sample
│ │ │ │ ├── ActiveSample.clw
│ │ │ │ ├── ActiveSample.cpp
│ │ │ │ ├── ActiveSampleDlg.cpp
│ │ │ │ ├── ActiveSampleDlg.h
│ │ │ │ ├── ActiveSample.dsp
│ │ │ │ ├── ActiveSample.dsw
│ │ │ │ ├── ActiveSample.h
│ │ │ │ ├── ActiveSample.opt
│ │ │ │ ├── ActiveSample.plg
│ │ │ │ ├── ActiveSample.rc
│ │ │ │ ├── ActiveSample.sln
│ │ │ │ ├── ActiveSample.suo
│ │ │ │ ├── ActiveSample.vcproj
│ │ │ │ ├── ActiveSample.vcproj.ACS-WAZER.Wazer.user
│ │ │ │ ├── res
│ │ │ │ │ ├── ACS_Small.ico
│ │ │ │ │ ├── ActiveSample(bak).ico
│ │ │ │ │ ├── ActiveSample.ico
│ │ │ │ │ └── ActiveSample.rc2
│ │ │ │ ├── resource.h
│ │ │ │ ├── StdAfx.cpp
│ │ │ │ ├── StdAfx.h
│ │ │ │ ├── WINSCARD.H
│ │ │ │ └── Winscard.lib
│ │ │ └── Passive Sample
│ │ │ ├── PassiveSample.aps
│ │ │ ├── PassiveSample.clw
│ │ │ ├── PassiveSample.cpp
│ │ │ ├── PassiveSampleDlg.cpp
│ │ │ ├── PassiveSampleDlg.h
│ │ │ ├── PassiveSample.dsp
│ │ │ ├── PassiveSample.dsw
│ │ │ ├── PassiveSample.h
│ │ │ ├── PassiveSample.opt
│ │ │ ├── PassiveSample.plg
│ │ │ ├── PassiveSample.rc
│ │ │ ├── PassiveSample.sln
│ │ │ ├── PassiveSample.suo
│ │ │ ├── PassiveSample.vcproj
│ │ │ ├── PassiveSample.vcproj.ACS-WAZER.Wazer.user
│ │ │ ├── res
│ │ │ │ ├── ACS_Small.ico
│ │ │ │ ├── PassiveSample(bak).ico
│ │ │ │ ├── PassiveSample.ico
│ │ │ │ └── PassiveSample.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── WINSCARD.H
│ │ │ └── Winscard.lib
│ │ └── Polling
│ │ ├── Polling.aps
│ │ ├── Polling.clw
│ │ ├── Polling.cpp
│ │ ├── PollingDlg.cpp
│ │ ├── PollingDlg.h
│ │ ├── Polling.dsp
│ │ ├── Polling.dsw
│ │ ├── Polling.h
│ │ ├── Polling.opt
│ │ ├── Polling.plg
│ │ ├── Polling.rc
│ │ ├── Polling.sln
│ │ ├── Polling.suo
│ │ ├── Polling.vcproj
│ │ ├── Polling.vcproj.ACS-WAZER.Wazer.user
│ │ ├── res
│ │ │ ├── ACS_Small.ico
│ │ │ ├── Polling(bak).ico
│ │ │ ├── Polling.ico
│ │ │ └── Polling.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── WINSCARD.H
│ │ └── Winscard.lib
│ ├── MS Visual C++ 6.0
│ │ ├── Contactless Cards
│ │ │ ├── MifareCardProgramming
│ │ │ │ ├── MifareCardProgramming.aps
│ │ │ │ ├── MifareCardProgramming.clw
│ │ │ │ ├── MifareCardProgramming.cpp
│ │ │ │ ├── MifareCardProgrammingDlg.cpp
│ │ │ │ ├── MifareCardProgrammingDlg.h
│ │ │ │ ├── MifareCardProgramming.dsp
│ │ │ │ ├── MifareCardProgramming.dsw
│ │ │ │ ├── MifareCardProgramming.h
│ │ │ │ ├── MifareCardProgramming.opt
│ │ │ │ ├── MifareCardProgramming.plg
│ │ │ │ ├── MifareCardProgramming.rc
│ │ │ │ ├── ReadMe.txt
│ │ │ │ ├── res
│ │ │ │ │ ├── ACS_Small.ico
│ │ │ │ │ ├── MifareCardProgramming(bak).ico
│ │ │ │ │ ├── MifareCardProgramming.ico
│ │ │ │ │ └── MifareCardProgramming.rc2
│ │ │ │ ├── resource.h
│ │ │ │ ├── StdAfx.cpp
│ │ │ │ ├── StdAfx.h
│ │ │ │ ├── WINSCARD.H
│ │ │ │ └── Winscard.lib
│ │ │ └── Other PICC Cards
│ │ │ ├── Other PICC Cards.aps
│ │ │ ├── Other PICC Cards.clw
│ │ │ ├── Other PICC Cards.cpp
│ │ │ ├── Other PICC CardsDlg.cpp
│ │ │ ├── Other PICC CardsDlg.h
│ │ │ ├── Other PICC Cards.dsp
│ │ │ ├── Other PICC Cards.dsw
│ │ │ ├── Other PICC Cards.h
│ │ │ ├── Other PICC Cards.opt
│ │ │ ├── Other PICC Cards.plg
│ │ │ ├── Other PICC Cards.rc
│ │ │ ├── ReadMe.txt
│ │ │ ├── res
│ │ │ │ ├── ACS_Small.ico
│ │ │ │ ├── Other PICC Cards(bak).ico
│ │ │ │ ├── Other PICC Cards.ico
│ │ │ │ └── Other PICC Cards.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── WINSCARD.H
│ │ │ └── Winscard.lib
│ │ └── Device Programming
│ │ ├── Basic Device Programming
│ │ │ ├── Device Programming.aps
│ │ │ ├── Device Programming.clw
│ │ │ ├── Device Programming.cpp
│ │ │ ├── Device ProgrammingDlg.cpp
│ │ │ ├── Device ProgrammingDlg.h
│ │ │ ├── Device Programming.dsp
│ │ │ ├── Device Programming.dsw
│ │ │ ├── Device Programming.h
│ │ │ ├── Device Programming.opt
│ │ │ ├── Device Programming.plg
│ │ │ ├── Device Programming.rc
│ │ │ ├── res
│ │ │ │ ├── ACS_Small.ico
│ │ │ │ ├── Device Programming(bak).ico
│ │ │ │ ├── Device Programming.ico
│ │ │ │ └── Device Programming.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── WINSCARD.H
│ │ │ └── Winscard.lib
│ │ ├── Get ATR
│ │ │ ├── Get ATR.aps
│ │ │ ├── Get ATR.clw
│ │ │ ├── Get ATR.cpp
│ │ │ ├── Get ATRDlg.cpp
│ │ │ ├── Get ATRDlg.h
│ │ │ ├── Get ATR.dsp
│ │ │ ├── Get ATR.dsw
│ │ │ ├── Get ATR.h
│ │ │ ├── Get ATR.opt
│ │ │ ├── Get ATR.plg
│ │ │ ├── Get ATR.rc
│ │ │ ├── ReadMe.txt
│ │ │ ├── res
│ │ │ │ ├── ACS_Small.ico
│ │ │ │ ├── Get ATR( bak ).ico
│ │ │ │ ├── Get ATR.ico
│ │ │ │ └── Get ATR.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── WINSCARD.H
│ │ │ └── Winscard.lib
│ │ ├── Peer to Peer Programming
│ │ │ ├── Active Sample
│ │ │ │ ├── ActiveSample.aps
│ │ │ │ ├── ActiveSample.clw
│ │ │ │ ├── ActiveSample.cpp
│ │ │ │ ├── ActiveSampleDlg.cpp
│ │ │ │ ├── ActiveSampleDlg.h
│ │ │ │ ├── ActiveSample.dsp
│ │ │ │ ├── ActiveSample.dsw
│ │ │ │ ├── ActiveSample.h
│ │ │ │ ├── ActiveSample.opt
│ │ │ │ ├── ActiveSample.plg
│ │ │ │ ├── ActiveSample.rc
│ │ │ │ ├── res
│ │ │ │ │ ├── ACS_Small.ico
│ │ │ │ │ ├── ActiveSample(bak).ico
│ │ │ │ │ ├── ActiveSample.ico
│ │ │ │ │ └── ActiveSample.rc2
│ │ │ │ ├── resource.h
│ │ │ │ ├── StdAfx.cpp
│ │ │ │ ├── StdAfx.h
│ │ │ │ ├── WINSCARD.H
│ │ │ │ └── Winscard.lib
│ │ │ └── Passive Sample
│ │ │ ├── PassiveSample.aps
│ │ │ ├── PassiveSample.clw
│ │ │ ├── PassiveSample.cpp
│ │ │ ├── PassiveSampleDlg.cpp
│ │ │ ├── PassiveSampleDlg.h
│ │ │ ├── PassiveSample.dsp
│ │ │ ├── PassiveSample.dsw
│ │ │ ├── PassiveSample.h
│ │ │ ├── PassiveSample.opt
│ │ │ ├── PassiveSample.plg
│ │ │ ├── PassiveSample.rc
│ │ │ ├── res
│ │ │ │ ├── ACS_Small.ico
│ │ │ │ ├── PassiveSample(bak).ico
│ │ │ │ ├── PassiveSample.ico
│ │ │ │ └── PassiveSample.rc2
│ │ │ ├── resource.h
│ │ │ ├── StdAfx.cpp
│ │ │ ├── StdAfx.h
│ │ │ ├── WINSCARD.H
│ │ │ └── Winscard.lib
│ │ └── Polling
│ │ ├── Polling.aps
│ │ ├── Polling.clw
│ │ ├── Polling.cpp
│ │ ├── PollingDlg.cpp
│ │ ├── PollingDlg.h
│ │ ├── Polling.dsp
│ │ ├── Polling.dsw
│ │ ├── Polling.h
│ │ ├── Polling.opt
│ │ ├── Polling.plg
│ │ ├── Polling.rc
│ │ ├── res
│ │ │ ├── ACS_Small.ico
│ │ │ ├── Polling(bak).ico
│ │ │ ├── Polling.ico
│ │ │ └── Polling.rc2
│ │ ├── resource.h
│ │ ├── StdAfx.cpp
│ │ ├── StdAfx.h
│ │ ├── WINSCARD.H
│ │ └── Winscard.lib
│ └── MS Visual C#.NET 2005
│ ├── Contactless Cards
│ │ ├── MiFare Programming
│ │ │ ├── MiFare Programming
│ │ │ │ ├── ACS_logo.ico
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── MifareProg.cs
│ │ │ │ ├── MifareProg.Designer.cs
│ │ │ │ ├── MiFare Programming.csproj
│ │ │ │ ├── MifareProg.resx
│ │ │ │ ├── ModWinsCard.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── MiFare Programming.sln
│ │ └── Other PICC Card Programming
│ │ ├── Other PICC Card Programming
│ │ │ ├── ACS_logo.ico
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── ModWinsCard.cs
│ │ │ ├── Other PICC Card Programming.csproj
│ │ │ ├── PICCProg.cs
│ │ │ ├── PICCProg.Designer.cs
│ │ │ ├── PICCProg.resx
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── Other PICC Card Programming.sln
│ └── Device Programming
│ ├── Basic DeviceProgramming
│ │ ├── DeviceProgramming.sln
│ │ ├── DeviceProgramming.suo
│ │ └── DeviProg
│ │ ├── ACS_logo.ico
│ │ ├── DeviceProgramming.csproj
│ │ ├── DevProg.cs
│ │ ├── DevProg.Designer.cs
│ │ ├── DevProg.resx
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── ModWinsCard.cs
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Get ATR
│ │ ├── Get ATR
│ │ │ ├── ACS_logo.ico
│ │ │ ├── Class1.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── GetATR.cs
│ │ │ ├── Get ATR.csproj
│ │ │ ├── GetATR.Designer.cs
│ │ │ ├── GetATR.resx
│ │ │ ├── ModWinsCard.cs
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── Get ATR.sln
│ ├── Peer to Peer Programming
│ │ ├── ActiveSample
│ │ │ ├── ActiveSample
│ │ │ │ ├── ActiveSample.csproj
│ │ │ │ ├── Form1.cs
│ │ │ │ ├── Form1.Designer.cs
│ │ │ │ ├── Form1.resx
│ │ │ │ ├── frmActive.cs
│ │ │ │ ├── frmActive.Designer.cs
│ │ │ │ ├── frmActive.resx
│ │ │ │ ├── ModWinsCard.cs
│ │ │ │ ├── Program.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ └── ActiveSample.sln
│ │ └── PassiveSample
│ │ ├── PassiveSample
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.resx
│ │ │ ├── frmPassive.cs
│ │ │ ├── frmPassive.Designer.cs
│ │ │ ├── frmPassive.resx
│ │ │ ├── ModWinsCard.cs
│ │ │ ├── PassiveSample.csproj
│ │ │ ├── Program.cs
│ │ │ └── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ └── PassiveSample.sln
│ └── Polling
│ ├── Polling
│ │ ├── ACS_logo.ico
│ │ ├── ModWinsCard.cs
│ │ ├── Polling.cs
│ │ ├── Polling.csproj
│ │ ├── Polling.Designer.cs
│ │ ├── Polling.resx
│ │ ├── Program.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── Polling.sln
└── ACR122U开发用户手册和参考材料
├── ACR122U NFC Reader API.pdf
├── ACR122U NFC Reader Multi-Application Demo Manual.pdf
├── ACR122U NFC Reader SDK User Manual.pdf
├── ACR122U NFC Reader Technical Specification.pdf
├── DWG_Smart-Card_CCID_Rev110.pdf
├── m001051-MF1S50.pdf
├── M028630-MF0U10.pdf
├── m043531-MF1S70.pdf
└── Topaz IC Full Technical Datasheet non-NDA M2000-1057-02.pdf
115 directories, 704 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论