Carter Nelson
Carter Nelson
Still can't recreate this locally. Running the `ntag2xx_read` on a Metro M4 using same pins defined in example (software SPI), it runs without issue for multiple reads: ``` 08:32:35.837 ->...
Not currently possible. Is this needed?
The `isready()` method (typically used via `waitready()`) is used with other private methods, like `readdata()` and `writecommand()` as part of full data exchange. This sounds like a general request for...
Possibly something platformio specific? There's only the single (int, int) overload in the library: ```cpp Adafruit_PN532(uint8_t clk, uint8_t miso, uint8_t mosi, uint8_t ss); // Software SPI Adafruit_PN532(uint8_t ss, SPIClass *theSPI...
@danieljr-nh Can you recreate this issue using the Arduino IDE?
Looks like a dupe of #38
```cpp Adafruit_PN532 nfc(PN532_SCK, PN532_MISO, PN532_MOSI, PN532_SS); //Adafruit_PN532 nfc(PN532_SS_1); ``` Which one is being used for the PN532? Since they are sharing the SPI bus, use hardware SPI with the PN532....
Looks similar to #38
What is the hardware being used as the NFC target? What sketch is being run for the PN532?
Specify the desired mode in the call to `begin()`. The default is `BMP085_ULTRAHIGHRES`. ex: ```cpp bmp.begin(BMP085_ULTRALOWPOWER); ```