Arduino non-blocking rtttl library

NonBlockingRTTTL – A non-blocking arduino library for playing RTTTL melodies

Introduction

The following article is about my first Arduino library that I have written. NonBlockingRTTTL is a non-blocking arduino library for playing RTTTL data.

EDIT: The NonBlockingRtttl arduino library is now moved to GitHub. Source code can be downloaded from the project’s GitHub page.

EDIT: NonBlockingRTTTL library is now available on the Arduino Library Manager.

Skip to the download section for quick download.

Purpose

Most code that can be found on the internet that allows you to “play” an RTTTL string is build the same way: sequential calls to the tone() function followed by a delay() function. This type of implementation might be good for robots but not for realtime application or projects that needs to monitor pins while the song is playing.

This library is non-blocking which make it suitable to be used by more advanced algorithm. The non-blocking RTTTL library is a port of the RTTTL example from the Tone library.

Quick recall of the RTTTL format

I recently discovered the Ring Tone Text Transfer Language (RTTTL) audio format which is an audio format for storing single tone (monolithic)  melodies. Each melody is composed of successive tone frequencies.

The RTTTL format is human readable and usually more compressed than note & duration arrays which helps reduce its memory footprint.

In the arduino world, melodies are usually written as an array of notes (frequencies) followed by the note’s duration (note1, duration1, note2, duration2, … ,  noteX, durationX).

The format is really suitable for embedded device that are limited in memory which can’t store PCM (wav) or even MP3 data.

Note that RTTTL can also be spelled RTTL (Ringtone Text Transfer Language). According to my Samsung phone, a ringtone can also be spelled as a single word…

More information on the RTTTL format is available on its Wikipedia acticle.

Library features

Possible use are:

  • Really small increase in memory & code footprint compared to the usual blocking algorithm.
  • Allows your program to read/write IOs pins while playing. Implementing a “stop” or “next song” push buttons is a breeze!

Usage

Call rtttl::begin() to setup the non-blocking RTTTL library. Then call rtttl::play() to update the library’s state and play notes as required.

Use rtttl::done() or rtttl::isPlaying() to know if the library is done playing the given song. Anytime playing, one can call rtttl::stop() to stop playing the current song.

Define RTTTL_NONBLOCKING_INFO to enable the debugging of the library state on the serial port. Use NONBLOCKINGRTTTL_VERSION to read the current version of the library.

Demo

The following demo show how to use the library:
(download the NonBlockingRtttl demo sample (922 downloads) )

License

The following code was written by Antoine Beauchamp. The non-blocking RTTTL library is a port of the RTTTL example from the Tone library which is licensed with the MIT License.

The code & updates for the library can be found at http://end2endzone.com.

For the original source code for the RTTTL player see: http://code.google.com/archive/p/rogue-code/wikis/ToneLibraryDocumentation.wiki.

Download

Please note that download links are now deprecated. Binary version of NonBlockingRtttl library can be downloaded from the project’s Release page.

EDIT: NonBlockingRTTTL library can now be installed from the Arduino Library Manager.

Leave a Reply