@tdg8934 Now comes the boring part: scroll to the beginning of your song on the web site, and start transcribing the notes into an array. Use one of mine for an example.
By default, each gray box in the grid on the web site is a 1/4 note. You can use the far-left drop-down to change that fact. Now, let's say you click a single box on the "E5" row-- in your array, you'd wind up with:
[ .note = n.e5, .spd = 40, .l = quarter ]
Notice how my music arrays actually have sub-arrays within them. Each sub-array is a channel. Right now, my music code supports two channels. To do a chord, you'd do:
yourMelody = [
[
[ .note = n.e5, .spd = 40, .l = quarter ]
],
[ .note = n.c4, .spd = 40, .l = quarter ]
[
]
Let's say you want a 1/2 note pause in one of the channels-- you'd do:
[ .note = n.rest, .spd = 40, .l = half ]
Now, that song above looks super complicated, and uses tons of channels! I think you'd need to do some analysis on which channels are carrying the main melody, and consolidate that down to one Fuze channel. Then, do the same for whichever supporting part of the music you want to emphasize, which would be the second Fuze channel.