PN532 Driver library This library provides an abstract API to drive the pn532 nfc chip, with I2C/HSU/SPI interface. Its based on the Seeed Studio's Arduino version.

Dependents:   PN532_ReadUid Nfctest2

Committer:
dotnfc
Date:
Tue Sep 13 06:17:35 2016 +0000
Revision:
1:b5922b3b3257
Parent:
0:db8030e71f55
Remove ununsed files.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
dotnfc 0:db8030e71f55 1 ## NFC library for Arduino
dotnfc 0:db8030e71f55 2
dotnfc 0:db8030e71f55 3 This is an Arduino library for PN532 to use NFC technology.
dotnfc 0:db8030e71f55 4 It works with
dotnfc 0:db8030e71f55 5
dotnfc 0:db8030e71f55 6 + [NFC Shield](http://goo.gl/Cac2OH)
dotnfc 0:db8030e71f55 7 + [Xadow NFC](http://goo.gl/qBZMt0)
dotnfc 0:db8030e71f55 8 + [PN532 NFC/RFID controller breakout board](http://goo.gl/tby9Sw)
dotnfc 0:db8030e71f55 9
dotnfc 0:db8030e71f55 10 ### Features
dotnfc 0:db8030e71f55 11 + Support I2C, SPI and HSU of PN532
dotnfc 0:db8030e71f55 12 + Read/write Mifare Classic Card
dotnfc 0:db8030e71f55 13 + Works with [Don's NDEF Library](http://goo.gl/jDjsXl)
dotnfc 0:db8030e71f55 14 + Support Peer to Peer communication(exchange data with android 4.0+)
dotnfc 0:db8030e71f55 15 + Support [mbed platform](http://goo.gl/kGPovZ)
dotnfc 0:db8030e71f55 16
dotnfc 0:db8030e71f55 17 ### Getting Started
dotnfc 0:db8030e71f55 18 1. Download [zip file](http://goo.gl/F6beRM) and
dotnfc 0:db8030e71f55 19 extract the 4 folders(PN532, PN532_SPI, PN532_I2C and PN532_HSU) into Arduino's libraries.
dotnfc 0:db8030e71f55 20 2. Downlaod [Don's NDEF library](http://goo.gl/ewxeAe) and extract it intro Arduino's libraries.
dotnfc 0:db8030e71f55 21 3. Follow the examples of the two libraries.
dotnfc 0:db8030e71f55 22
dotnfc 0:db8030e71f55 23 ### To do
dotnfc 0:db8030e71f55 24 + Card emulation
dotnfc 0:db8030e71f55 25
dotnfc 0:db8030e71f55 26 ### Contribution
dotnfc 0:db8030e71f55 27 It's based on [Adafruit_NFCShield_I2C](http://goo.gl/pk3FdB).
dotnfc 0:db8030e71f55 28 [Seeed Studio](http://goo.gl/zh1iQh) adds SPI interface and peer to peer communication support.
dotnfc 0:db8030e71f55 29 @Don writes the [NDEF library](http://goo.gl/jDjsXl) to make it more easy to use.
dotnfc 0:db8030e71f55 30 @JiapengLi adds HSU interface.