5f7a8e5301
* update yotta defaults for 16kb devices * refactor deprecated blocks * updates for button events * update button events * update refference * update docs * update docs * update button event blocks * update docs * update block id
782 B
782 B
note Frequency
Get the frequency of a musical note.
music.noteFrequency(Note.C)
Parameters
name
is the name of the Note you want a frequency value for.
Returns
Example #example
Play a 'C' note for one second, rest for one second, and then play an 'A' note for one second.
music.playTone(music.noteFrequency(Note.C), 1000)
music.rest(1000)
music.playTone(music.noteFrequency(Note.A), 1000)