How about these music accents? Got the idea from Dav.
Code: Select all
' major scale up
NOTES SET "12:tc6d6e6f6g6a6b6c7"
PRINT "major scale up"
NOTES PLAY
PAUSE 2
' major scale down
NOTES SET "12:tc7b6a6g6f6e6d6c6"
PRINT "major scale down"
NOTES PLAY
PAUSE 2
' minor scale up
NOTES SET "12:tc6d6e$6f6g6a$6b6c7"
PRINT "minor scale up"
NOTES PLAY
PAUSE 2
' minor scale down
NOTES SET "12:tc7b$6a$6g6f6e$6d6c6"
PRINT "minor scale down"
NOTES PLAY
PAUSE 2
' major arpeggio up and down
NOTES SET "12:tc6e6g6c7g6e6c6"
PRINT "major arpeggio up and down"
NOTES PLAY
PAUSE 2
' major arpeggio down and up
NOTES SET "12:tc7g6e6c6e6g6c7"
PRINT "major arpeggio down and up"
NOTES PLAY
PAUSE 2
' minor arpeggio up and down
NOTES SET "12:tc6d#6g6c7g6d#6c6"
PRINT "minor arpeggio up and down"
NOTES PLAY
PAUSE 2
' minor arpeggio down and up
NOTES SET "12:tc7g6d#6c6d#6g6c7"
PRINT "minor arpeggio up and down"
NOTES PLAY
PAUSE 2
' chromatic scale up
NOTES SET "12:xc6c#6d6d#6e6f6f#6g6g#6a6a#6b6c7"
PRINT "chromatic scale up"
NOTES PLAY
PAUSE 2
' chromatic scale down
NOTES SET "12:xc7b6a#6a6g#6g6f#6f6e6d#6d6c#6c6"
PRINT "chromatic scale down"
NOTES PLAY
PAUSE 2