So using the following two boards and cable i have been able to get the following output. I am awaiting the logic board so I can pull the password.
Hardware
Arduino MEGA 2560
http://www.aliexpress.com/item/Freeship … 86963.html
PN532 NFC MODULE
http://www.aliexpress.com/item/Free-Shi … 74881.html
Female to Male jumper wire for Arduino
http://www.aliexpress.com/item/2PCS-40p … 39636.html
Software
Arduino 1.6.7
https://www.arduino.cc/en/Main/Software
Sketch files and Adafruit library
from Post 341
Hardware notes
use SPI mode and SS is SCL for the itead board
to make the Sketch files work with the Itead PN532 NFC board you need to edit them by
Update the pinout to
// If using the breakout with SPI, define the pins for SPI communication.
#define PN532_SCK (52)
#define PN532_MOSI (51)
#define PN532_SS (53)
#define PN532_MISO (50)
Un-Commenting remove the //
Adafruit_PN532 nfc(PN532_SCK, PN532_MISO, PN532_MOSI, PN532_SS);
commenting out (//)
//Adafruit_PN532 nfc(PN532_IRQ, PN532_RESET);
My current output is this as I need to sniff the password.
Hello!
TIMEOUT!
Found chip PN532
Firmware ver. 1.6
Waiting for an ISO14443A Card ...
Found an ISO14443A card
UID Length: 7 bytes
UID Value: 0x04 0xF3 0xE8 0x2A 0x97 0x3C 0x80
Seems to be an NTAG2xx tag (7 byte UID)
PAGE 00: 04 F3 E8 97 .óè—
PAGE 01: 2A 97 3C 80 *—<€
PAGE 02: 01 48 00 00 .H..
PAGE 03: E1 10 12 00 á...
PAGE 04: 01 03 A0 0C .. .
PAGE 05: 34 03 00 FE 4..þ
PAGE 06: 00 00 00 00 ....
PAGE 07: 00 00 00 00 ....
PAGE 08: Unable to read the requested page!
PAGE 09: Unable to read the requested page!
PAGE 10: Unable to read the requested page!
PAGE 11: Unable to read the requested page!
PAGE 12: Unable to read the requested page!
PAGE 13: Unable to read the requested page!
PAGE 14: Unable to read the requested page!
PAGE 15: Unable to read the requested page!
PAGE 16: Unable to read the requested page!
PAGE 17: Unable to read the requested page!
PAGE 18: Unable to read the requested page!
PAGE 19: Unable to read the requested page!
PAGE 20: Unable to read the requested page!
PAGE 21: Unable to read the requested page!
PAGE 22: Unable to read the requested page!
PAGE 23: Unable to read the requested page!
PAGE 24: Unable to read the requested page!
PAGE 25: Unable to read the requested page!
PAGE 26: Unable to read the requested page!
PAGE 27: Unable to read the requested page!
PAGE 28: Unable to read the requested page!
PAGE 29: Unable to read the requested page!
PAGE 30: Unable to read the requested page!
PAGE 31: Unable to read the requested page!
PAGE 32: Unable to read the requested page!
PAGE 33: Unable to read the requested page!
PAGE 34: Unable to read the requested page!
PAGE 35: Unable to read the requested page!
PAGE 36: Unable to read the requested page!
PAGE 37: Unable to read the requested page!
PAGE 38: Unable to read the requested page!
PAGE 39: Unable to read the requested page!
PAGE 40: Unable to read the requested page!
PAGE 41: Unable to read the requested page!
PAGE 42: Unable to read the requested page!
PAGE 43: Unable to read the requested page!
PAGE 44: Unable to read the requested page!