diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2021-03-10 21:50:01 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2021-03-10 21:50:01 (GMT) |
| commit | 86cc4844b6cb8278789971d9fb0afdb710e8d253 (patch) | |
| tree | 77ec5ed86b9ac8bd44b8930cd6f095483c0d3f15 | |
| parent | 16a9253938725a21ce42dbd99651d445a51f385b (diff) | |
apps: software: Include word clock in the available applications
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
| -rw-r--r-- | wasp/apps/software.py | 1 | ||||
| -rw-r--r-- | wasp/boards/manifest_240x240.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/wasp/apps/software.py b/wasp/apps/software.py index 1d7acaf..c86cf3d 100644 --- a/wasp/apps/software.py +++ b/wasp/apps/software.py @@ -48,6 +48,7 @@ class SoftwareApp(): db.append(('flashlight', factory('Torch'))) db.append(('testapp', factory('Test'))) db.append(('timer', factory('Timer'))) + db.append(('word_clock', factory('Word Clock'))) # Get the initial state for the checkboxes for _, checkbox in db: diff --git a/wasp/boards/manifest_240x240.py b/wasp/boards/manifest_240x240.py index e36896f..5f88630 100644 --- a/wasp/boards/manifest_240x240.py +++ b/wasp/boards/manifest_240x240.py @@ -23,6 +23,7 @@ manifest = ( 'apps/snake.py', 'apps/testapp.py', 'apps/timer.py', + 'apps/word_clock.py', 'fonts/__init__.py', 'fonts/clock.py', 'fonts/sans24.py', |
