from microbit import * import music rush_e_theme = [ "E4:2", "E5:2", "E4:2", "E5:2", "F#4:2", "G#4:2", "A4:4", "A4:2", "B4:2", "C5:2", "D5:2", "E5:2", "F#5:2", "G#5:4" ]
Download the .hex file or adapt the code above. Warning: may cause button mashing and uncontrollable head bobbing. 😊 Rush E Micro Bit
“Rush E” is an internet-famous piano piece known for its impossibly fast tempo, chaotic note clusters, and humorous difficulty. Recreating it on a BBC micro:bit might sound impossible – but with a little coding creativity, it becomes a fun lesson in sound synthesis, loops, and optimization. from microbit import * import music rush_e_theme =
while True: if button_a.is_pressed(): music.set_tempo(bpm=380) for _ in range(10): # repeat 10 times music.play(rush_e_theme) chaotic note clusters