How is the RFID hardware connected?
How will the module communicate? I do not see a i2c connection in the library examples.
The xod-dev/pn532-nfc
library born as the result of wrapping an existing C++ library done by Adafruit. This library, unfortunatelly, hard-codes the I²C bus to hardware I²C #0. See your board docs to find out SDA and SCL pins. On Arduinos of Uno and Mega format these pins are the closest to the USB port, right next to AREF on the top connection header.
To make the interface adjustable in XOD we have to rewrite the library. Perhaps will do it someday.
So it doesn’t matter if I use the i2c bus or SPI connectors? Are they all hardcoded?
The XOD wrapper uses only the I2C bus connector. You have to use hardware I2C number 0 with this library.