Hacker News new | ask | show | jobs
by codemysoul 2295 days ago
Author here. Let me know if you have questions.
1 comments

can you write a tag multiple times with one interaction?
Depends on what you mean with an interaction. Technically it would be possible to stack write operations, so you could just keep a tag to a close proximity of the adapter, and keep writing messages one after another.

With the webnfc.app, you can only write a single NDEF message with single record of either URL or Text, during single interaction.

I mean, if the nfc event is triggered, this code

for (i=0, i<10, i++) writer.write(i)

does it write ten times the tag? overwriting every number?

The NDEFWriter write()-method currently returns a promise which is resolved on a successful write operation and rejected on a failed write operation, so you would need to use async-await to be able to loop those writes like that. Here is a reference to the Web NFC API Write-operation: https://w3c.github.io/web-nfc/#writing-to-an-nfc-tag