Skip to content

Instantly share code, notes, and snippets.

@NB5K-UltraDeveloper
NB5K-UltraDeveloper / amiibin2nfcdev.py
Created October 27, 2022 13:54 — forked from LionZXY/amiibin2nfcdev.py
Script for converting NTAG215 dumps (.bin) to Flipper NFC device files (.nfc)
#!/usr/bin/env python
import sys
from os.path import splitext, basename
if len(sys.argv) < 2:
sys.exit('Usage: %s dump.bin' % sys.argv[0])
ntag_file = sys.argv[1]
nfc_file = splitext(ntag_file)[0] + '.nfc'