Changes between Version 7 and Version 8 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/KeypadSound/PlayNotes
- Timestamp:
- 03/12/25 07:54:49 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/KeypadSound/PlayNotes
v7 v8 2 2 Play simple music notes on the beeper. 3 3 4 {{{ 4 {{{#!c++ 5 5 void PlayNotes(const string& strNotes); 6 6 … … 92 92 == Examples == 93 93 94 {{{ 94 {{{#!c++ 95 95 string str = "A,B,C\r"; 96 96 PlayNotes(str); 97 97 }}} 98 98 99 {{{ 99 {{{#!c++ 100 100 PlayNotes("A,B,C\r"); 101 101 }}}