Skip to content

Commit

Permalink
MicroPython: Add text, audio and music to launcher.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Oct 22, 2021
1 parent 8bc5548 commit c6b1b7b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions micropython/examples/picosystem/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@
if "colour.py" not in files:
files.append("colour")

if "music.py" not in files:
files.append("music")

if "audio.py" not in files:
files.append("audio")

if "text.py" not in files:
files.append("text")

# HACK to add a quick menu item
files.append("__quit__")

Expand Down

0 comments on commit c6b1b7b

Please sign in to comment.