233c136a5c
Like the other library applications this is enabled in the simulator and included in the flash image but is disabled by default to conserve RAM (and to give time to new apps to mature and receive improvements). Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
22 lines
554 B
Python
22 lines
554 B
Python
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
# Copyright (C) 2020 Daniel Thompson
|
|
|
|
import wasp
|
|
|
|
from apps.alarm import AlarmApp
|
|
wasp.system.register(AlarmApp())
|
|
|
|
from apps.fibonacci_clock import FibonacciClockApp
|
|
wasp.system.register(FibonacciClockApp())
|
|
|
|
from apps.gameoflife import 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()
|