Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. //Twinkle Twinkle array. Each element represents 1 beat, each line is 1 bar.
  2.  
  3. String melody[] = {
  4. "C", "C", "G", "G",
  5. "A", "A", "G", "PAUSE",
  6. "F", "F", "E", "E",
  7. "D", "D", "C", "PAUSE",
  8. "G", "G", "F", "F",
  9. "E", "E", "D", "PAUSE",
  10. "G", "G", "F", "F",
  11. "E", "E", "D", "PAUSE",
  12. "C", "C", "G", "G",
  13. "A", "A", "G", "PAUSE",
  14. "F", "F", "E", "E",
  15. "D", "D", "C", "PAUSE",
  16. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement