wasp: apps: Add shortcuts to all apps
This commit is contained in:
parent
64a97fce58
commit
80d518b75b
2 changed files with 11 additions and 6 deletions
10
wasp/apps/__init__.py
Normal file
10
wasp/apps/__init__.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
# SPDX-License-Identifier: LGPL-3.0-or-later
|
||||
# Copyright (C) 2020 Daniel Thompson
|
||||
"""All the apps... in one place"""
|
||||
|
||||
from apps.clock import ClockApp
|
||||
from apps.flashlight import FlashlightApp
|
||||
from apps.launcher import LauncherApp
|
||||
from apps.pager import PagerApp, CrashApp
|
||||
from apps.settings import SettingsApp
|
||||
from apps.testapp import TestApp
|
|
@ -13,12 +13,7 @@ import machine
|
|||
import watch
|
||||
import widgets
|
||||
|
||||
from apps.clock import ClockApp
|
||||
from apps.flashlight import FlashlightApp
|
||||
from apps.launcher import LauncherApp
|
||||
from apps.pager import CrashApp
|
||||
from apps.settings import SettingsApp
|
||||
from apps.testapp import TestApp
|
||||
from apps import *
|
||||
|
||||
class EventType():
|
||||
"""Enumerated interface actions.
|
||||
|
|
Loading…
Add table
Reference in a new issue