simulator: Enable the music app in the simulator
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
This commit is contained in:
parent
3d0d96ee3a
commit
d2357f2325
1 changed files with 7 additions and 0 deletions
|
@ -9,4 +9,11 @@ wasp.system.register(FibonacciClockApp())
|
||||||
from apps.gameoflife import GameOfLifeApp
|
from apps.gameoflife import GameOfLifeApp
|
||||||
wasp.system.register(GameOfLifeApp())
|
wasp.system.register(GameOfLifeApp())
|
||||||
|
|
||||||
|
from apps.musicplayer import MusicPlayerApp
|
||||||
|
wasp.system.register(MusicPlayerApp())
|
||||||
|
wasp.system.set_music_info({
|
||||||
|
'track': 'Tasteless Brass Duck',
|
||||||
|
'artist': 'Dreams of Bamboo',
|
||||||
|
})
|
||||||
|
|
||||||
wasp.system.run()
|
wasp.system.run()
|
||||||
|
|
Loading…
Reference in a new issue