Skip to content

Instantly share code, notes, and snippets.

@jagij
Created December 30, 2018 18:03
Show Gist options
  • Save jagij/031cb8e0cfb1981d1160abe2c78862ff to your computer and use it in GitHub Desktop.
Save jagij/031cb8e0cfb1981d1160abe2c78862ff to your computer and use it in GitHub Desktop.
Avicii levels for micro:bit
// use https://makecode.microbit.org/# to generate the executable code
input.onButtonPressed(Button.B, function () {
const levels = [
'F#5:2',
'E5:2',
'E5:2',
'R:2',
'E5:2',
'E5:2',
'E5:2',
'E5:2',
'D#5:2',
'D#5:2',
'E5:2',
'E5:2',
'R:2',
'C#6:2',
'B5:2',
'G#5:2',
'F#5:2',
'E5:2',
'E5:2',
'R:2',
'E5:2',
'E5:2',
'E5:2',
'E5:2',
'C#5:2',
'C#5:2',
'B4:2',
'B4:2',
'R:2',
'C#6:2',
'B5:2',
'G#5:2',
'F#5:2',
'E5:2',
'E5:2',
'R:2',
'E5:2',
'E5:2',
'E5:2',
'E5:2',
'D#5:2',
'D#5:2',
'E5:2',
'E5:2',
'R:2',
'C#6:2',
'B5:2',
'G#5:2',
'F#5:2',
'E5:2',
'E5:2',
'R:2',
'E5:2',
'E5:2',
'E5:2',
'E5:2',
'C#5:2',
'C#5:2',
'B4:2',
'B4:2'
];
music.beginMelody(levels, MelodyOptions.Once);
basic.showString('AVICII AVICII AVICII');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment