Git Product home page Git Product logo

arduino-rtttl-player's Introduction

RTTTL player library for Arduino.

Links:
Features:
  • based on RTTTL example in Tone library
  • hardware: check Tone library
  • blocking mode only
  • song can be either in PROGMEM or RAM
  • support for both internal and external improved Tone library
  • build tests
  • examples
  • library size calculation
  • simulation
  • API documentation with doxygen
  • header only library
  • supported Arduino versions: 0022, 1.0

Basic usage

//#include <Tone.h>
// if Tone.h is included before this include,
// then the external Tone library is used
// else the core tone()/noTone() functions.
#include <rtttl.h>

const int pinSpeaker = 13;
const int octave = 0;
const char song_P[] PROGMEM = "Indiana:d=4,o=5,b=4000:e,8p,8f,8g,8p,1c6";

Rtttl player;

void setup(void)
{
        player.begin(pinSpeaker);
        player.play_P(song_P, octave);
}

void loop(void)
{
}

Manual Installation

http://arduino.cc/en/Guide/Environment#libraries

Automatic Installation

General

  • install arduino

  • install confduino

  • install the library:

    # as root
    python -m confduino.libinstall https://github.com/ponty/arduino-rtttl-player/zipball/master
    

Ubuntu

sudo apt-get install arduino
sudo apt-get install python-pip
sudo pip install confduino
sudo python -m confduino.libinstall https://github.com/ponty/arduino-rtttl-player/zipball/master

Ubuntu uninstall

sudo python -m confduino.libremove rtttl

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.