“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.
while True: if button_a.is_pressed(): music.set_tempo(bpm=380) for _ in range(10): # repeat 10 times music.play(rush_e_theme) Rush E Micro Bit
Download the .hex file or adapt the code above. Warning: may cause button mashing and uncontrollable head bobbing. 😊 “Rush E” is an internet-famous piano piece known
Here’s a draft text about on the micro:bit , suitable for a student project description, blog post, or teacher’s guide. Title: Playing “Rush E” on the BBC micro:bit – A Challenge in Speed and Memory Warning: may cause button mashing and uncontrollable head
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" ]