= 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 == * Any application that will use PlayNotes must call OpenBeeeper first. == Examples == {{{ string str = "A,B,C"; PlayNotes(str); }}} {{{ PlayNotes("A,B,C"); }}} == See Also == * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/KeypadSound/OpenBeeper OpenBeeper]