Sean Lynch

Results 122 comments of Sean Lynch

Awe, makes sense know seeing your use case. I could see having the ability to timeout or cancel a command. I think currently you could access the `frameEmitter` directly without...

Hi @Zhairgling. The PN532 has the ability to be a writer as well as a reader, and I spent some time on the [emulate-tag](https://github.com/techniq/node-pn532/blob/emulate-tag/src/pn532.js#L374-L558) branch trying to get writing to...

I also see Adafruit's PN532 C++ library has a [PR](https://github.com/adafruit/Adafruit-PN532/pull/29) to add tag emulation. You might take a look at the [changes](https://github.com/adafruit/Adafruit-PN532/pull/29/files) and see what needs to be done. Most...

To be honest, I don't remember exactly (it's been a little while). I remember I was trying to use my Android phone with [NFC Tools](https://play.google.com/store/apps/details?id=com.wakdev.wdnfc) to scan my [pn532 breakout...

Looking at the `SimpleTag.ino` file within the [test scripts](https://github.com/adafruit/Adafruit-PN532/pull/29#issuecomment-261174567) on the Adafruit PR, it looks like you need to first initialize (`nfc.TgInitAsTarget()`) and then setup a response buffer/handler (`nfc.TgGetData(...)`) and...

Page 21 of the [User Manual](http://www.nxp.com/documents/user_manual/141520.pdf) titled `ISO/IEC14443-4 PICC emulation concept` and pages 151-165 on TgInitAsTarget, TgGetData, and TgSetData might come in handy, but ultimately working by example (Seeed/Adafruit impl.)...

I would definitely use the master branch and not the old branch. Will make merging easier. On Wed, Jan 25, 2017, 5:35 AM Zhairgling wrote: > Hello, I bent over...

I'll be honest, I'm not sure what it does :D. I think at the time I copied Seeed Studio's [C++ implementation](https://github.com/Seeed-Studio/PN532/blob/master/PN532/emulatetag.cpp#L133) and was slowly trying to break it down to...

Hmm, could you show me how you're calling `emulateTag()` and run your example with logging enabled: ```js PN532_LOGGING=debug node examples/emulate_tag.js ``` Replacing `emulate_tag.js` with whatever you called your file.

Hmm, looking at the logs for the buffer being sent (last line) ``` 00 00 ff 08 f8 d4 8c 05 00 00 00 00 00 01 00 ``` The...