wiki:Docs/Prog/Manual/ApplicationLibraries/lib825ev/KeypadSound/PlayNotes

Version 1 (modified by Don Wilson, 14 years ago) ( diff )

--

PlayNotes

Play simple music notes on the beeper.

void PlayNotes(const string& strNotes);

void PlayNotes(const char* pszNotes);

Parameters

  • strNotes - string containing notes to play
  • pszNotes - character array pointer containing notes to play

Return Value

  • void - does not return any value

Remarks

Examples

string str = "A,B,C";
PlayNotes(str);
PlayNotes("A,B,C");

See Also

Note: See TracWiki for help on using the wiki.