| 1 | = PlayNotes = |
| 2 | Play simple music notes on the beeper. |
| 3 | |
| 4 | {{{ |
| 5 | void PlayNotes(const string& strNotes); |
| 6 | |
| 7 | void 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 | {{{ |
| 26 | string str = "A,B,C"; |
| 27 | PlayNotes(str); |
| 28 | }}} |
| 29 | |
| 30 | {{{ |
| 31 | PlayNotes("A,B,C"); |
| 32 | }}} |
| 33 | |
| 34 | == See Also == |
| 35 | |
| 36 | * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/KeypadSound/OpenBeeper OpenBeeper] |