arduino_midi_library/doc/midi_DoxygenMainPage.h

55 lines
1.3 KiB
C

/*!
\mainpage Arduino MIDI Library
See the documentation of the main class, MidiInterface, or browse the modules
and examples using the sidebar on the left.
\n
The latest development version is available on GitHub:
https://github.com/FortySevenEffects/arduino_midi_library/tree/dev
*/
// -----------------------------------------------------------------------------
// Examples
/*!
\example Basic_IO.ino
This example shows how to perform simple input and output MIDI. \n
\n
When any message arrives to the Arduino, the LED is turned on,
then we send a Note On message, wait for a second, then send
the Note Off and turn off the LED.
\n
\n
<em>
Note that instead of sending a Note Off, we could have sent a
Note On with velocity 0 to shorten the message. This is called Running
Status.
</em>
\n
*/
/*!
\example Callbacks.ino
This example shows how to use callbacks for easier MIDI input handling. \n
*/
/*!
\example Bench.ino
\example DualMerger.ino
\example Input.ino
\example SimpleSynth.ino
*/
// -----------------------------------------------------------------------------
/*! \defgroup output MIDI Output
*/
/*! \defgroup input MIDI Input
*/
/*! \defgroup callbacks Callbacks
\ingroup input
*/
/*! \defgroup thru MIDI Thru
*/