Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/KeypadSound/PlayNotes


Ignore:
Timestamp:
02/18/11 13:33:25 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/KeypadSound/PlayNotes

    v1 v1  
     1= PlayNotes =
     2Play simple music notes on the beeper.
     3
     4{{{
     5void PlayNotes(const string& strNotes);
     6
     7void PlayNotes(const char* pszNotes);
     8}}}
     9
     10== Parameters ==
     11
     12 * strNotes - string containing notes to play
     13 * pszNotes - character array pointer containing notes to play
     14
     15== Return Value ==
     16
     17 * void - does not return any value
     18
     19== Remarks ==
     20
     21 * Any application that will use PlayNotes must call OpenBeeeper first.
     22
     23== Examples ==
     24
     25{{{
     26string str = "A,B,C";
     27PlayNotes(str);
     28}}}
     29
     30{{{
     31PlayNotes("A,B,C");
     32}}}
     33
     34== See Also ==
     35
     36 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/KeypadSound/OpenBeeper OpenBeeper]