-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21b7815
commit 4478abd
Showing
1 changed file
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,26 @@ | ||
# flipper-zero-amiibo-converter | ||
amiibo .bin to .nfc flipper zero converter scipt | ||
Amiibo .bin to .nfc flipper zero converter scipt | ||
|
||
usage: | ||
```bash | ||
chmod +x fz_amiibo_converter.py | ||
./fz_amiibo_converter.py <input> <output> | ||
``` | ||
or | ||
```bash | ||
python3 fz_amiibo_converter.py <input> -o <output> | ||
``` | ||
|
||
input - directory path (processed recursively) or .bin file | ||
|
||
output - the name of the output directory. optional parameter, default is amiibo nfc. will be created in the script call directory | ||
|
||
f.e: | ||
```bash | ||
./fz_amiibo_converter.py Amiibo_Bins | ||
./fz_amiibo_converter.py Amiibo_Bins -o my_custom_dir | ||
``` | ||
# where to get .bin files | ||
i used this: https://amiibodoctor.com/2021/06/01/all-amiibo-bin-files-download-for-tagmo-powersaves-placiibo-etc/ | ||
|
||
you only need the Amiibo .bin itself, you don't need key_retail.bin and so on |