TonUINO NFC tools Android App

Android app to write NFC tags for the TonUINO diy music box

View the Project on GitHub marc136/tonuino-nfc-tools

TonUINO NFC Tools

Android app to write and read NFC tags that can be used on the TonUINO DIY music box.

For discussion, see this thread (in German), or use github issues.

You can download releases on github, or install the app from the Google Play Store or the F-Droid Store.

Every commit is also built and bundled as an .apk on CircleCI, the latest state is CircleCI

For differences between release versions, consult the change log.

Getting started

If you don’t plan to program for Android often, and have nix available, I would recommend using that.

With nix

it is very easy to install and setup the needed tools in a clean environment. No need for nixOS, just the package manager is enough.
I used https://github.com/tadfisher/android-nixpkgs to configure both nix develop and nix-shell.

# Uses the configuration of `./flake.shell.nix`
nix develop
# or as an alternative (without nix flakes) use `./shell.nix` 
nix-shell

Install Android Studio, SDKs and other tools

This is my only Android app, so every time I want to create another update, I would spend a lot of time upgrading the SDKs, Android Studio, Gradle and kotlin and have now switched to the nix approach.
But the links below should still work. If not, please create a pull request so I can update them.

Install Android studio, and then follow the tutorial “run this app on a real Android device”.

Useful commands

If you want more control instead of using Android Studio, check the docs on building and testing from cli.

If you have problems connecting to your Android device, have a look at this help page on on how to run apps on a real hardware Android device.

These are a few commands I find useful:

# show attached devices
adb devices

# Create a clean build
./gradlew clean bundle

# If something fails, check the output of
./gradlew --version

# Run the linter
./gradlew lint

# Run the test suite with
./gradlew test
# Or
bundle exec fastlane test

# Deploy a debug build to a connected Android device
./gradlew installDebug

# Check if the Android device was properly connected
./gradlew connectedCheck

# Get a list of available gradle tasks
./gradlew tasks

TODO

Tonuino 2.0.x

Repository

Data

# name range description
0 cookie uint32 identifies TonUINO, expected 0x1337b347
4 version uint8 always 1
5 folder uint8 values between 1 and 99, see dfplayer docs
6 mode uint8 values between 1 and 5, see next table
7 special uint8  

Different Modes
Based on the value of byte mode and what happens, when the next and previous buttons are pressed

# title description next previous
1 Hörspiel
audio book (single file)
plays a single file in the folder stop Start title again from the beginning
2 Album play every file in the folder next file previous file
3 Party play files in the folder in random order play random file start title again from the beginning
4 Einzel
single
play a single file in the folder stop start title again from the beginning
5 Hörbuch
audio book (multiple files)
play all files in the folder and keep track of the progress (will start at the last file the next time next file previous file
6 Admin Not functionality - -

Special
Is only used in specific modes to specify variables:

Tonuino 2.1.0

Repository

Normal Tags

| # | name | range | description | |—|———-|——–|——————————————————————————————————-| | 0 | cookie | uint32 | Identifies a Tonuino tag, usually 0x1337b347 | | 4 | version | uint8 | always 2 | | 5 | folder | uint8 | Values from 1 to 99, see dfplayer docs | | 6 | mode | uint8 | Values from 1 to 5, see next table | | 7 | special | uint8 | | | 8 | special2 | uint8 | |

Different Modes
It supports all modes of TonUINO 2.0 and adds these

# title description next previous
7 Von-Bis Hörspiel play a random file from the folder between special and special2 stop start title again from the beginning
8 Von-Bis Album play all files between special and special2 next file start title again from the beginning
9 Von-Bis Party play all files between special and special2 in random order random file start title again from the beginning

Modifier Tags (aka admin tags)

All have a folder value of 0

Modifier byte 6 byte 7 Description
SleepTimer 1 Play duration in minutes (255 max) Pauses playback after timer
FreezeDance 2 - Randomly pauses the track after 5 to 30 seconds
Locked 3 - All buttons are locked and no new card will be read
ToddlerMode 4 - All buttons are locked
KindergartenMode 5 - Previous and back buttons are locked. Adding a new card will not stop the current track but will schedule it as next track
RepeatSingleModifier 6 - Repeat current track
FeedbackModifier 7 - Will e.g. tell volume before changing it

Tonuino TNG 3.1.x

Repository

Is a full rewrite of the original TonUINO software in C++

Different Modes
It supports all modes of TonUINO 2.1 and adds these

# title description next previous
10 Hörbuch Einzeln Play the next file from the folder and store the progress stop start title again from the beginning
11 Repeat last Repeat the last card or shortcut ?? ??

Wiederhole Karte Modus: die letzte Karte oder der letzte Shortcut wird wiederholt.

Modifier Tags (aka admin tags)

Same as TonUINO 2.1 but removed the FeedbackModifier card with value 7.

NFC Host Card Emulation

It would be great if the app also can act as an NFC tag to simulate TonUINO tags, some links to this: Official Android docs

From a question on Mifare support forum:

Here is a very good example https://github.com/grundid/host-card-emulation-sample which will write to you “Hello Desktop!” The App emulates a MIFARE card with this AID 0xF0, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06 You should make your self familiar with the HCE code.

In the other side you should have an NFC reader (in your case MIFARE NFC) which will be looking for the same AID as in the HCE App. Normally you should send this cmd to the Android phone from your reader after you have brought the two devices close enough 0x00 [CLA], 0xA4 [INS], 0x04, 0x00, 0x07 [Lc], 0xF0, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x00 [Le]

NFC tag type support

Explanation of how discovered NFC tags are dispatched to activities in Android

Currently only Mifare Classic and Ultralight are supported, but in case generic NfcA support is wished, start with these links: