Hello,
I use my nfc-explorer with raspbian, i try the reading mode, poll, but i have a question is it possible to write some tags ?
I try some command like ./explore-nfc write "data to write" but nothing works
Thanks
Hello,
I use my nfc-explorer with raspbian, i try the reading mode, poll, but i have a question is it possible to write some tags ?
I try some command like ./explore-nfc write "data to write" but nothing works
Thanks
Hi,
Solved, write is Ok for now, looking now how to clone tag, impossible yet ..
Regards
hi
I am using the Python library nxpp. Everything works BUT -> i want to set the uri identifier (0x00 or 0x01 (open website)) with "block_write" i only can set ascii characters?! How did you solved this problem?
import nxppy
mifare = nxppy.Mifare()
# Select the first available tag and return the UID
uid = mifare.select()
# Write a URL
mifare.write_block(3, b' ') #SPACE
mifare.write_block(4, b'UID ') # UID BEGIN
mifare.write_block(5, b'elem')
mifare.write_block(6, b' ent1 ')
mifare.write_block(7, b'4.com')
mifare.write_block(8, b'UID') # UID END