diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-08-16 17:48:15 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-08-16 17:48:15 (GMT) |
| commit | 9877ea99bd5aed4c27414dd89de754202c256f26 (patch) | |
| tree | 788f52645bf89e67d3570b2a4a3070623f35107c /wasp/apps | |
| parent | c5a4a14334913755a3c8b10b4d08c96c718b55b0 (diff) | |
README: Add a (fairly) comprehensive screenshot tour
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/apps')
| -rw-r--r-- | wasp/apps/clock.py | 5 | ||||
| -rw-r--r-- | wasp/apps/flashlight.py | 8 | ||||
| -rw-r--r-- | wasp/apps/heart.py | 4 | ||||
| -rw-r--r-- | wasp/apps/launcher.py | 5 | ||||
| -rw-r--r-- | wasp/apps/settings.py | 13 | ||||
| -rw-r--r-- | wasp/apps/steps.py | 7 | ||||
| -rw-r--r-- | wasp/apps/stopwatch.py | 7 | ||||
| -rw-r--r-- | wasp/apps/testapp.py | 5 |
8 files changed, 49 insertions, 5 deletions
diff --git a/wasp/apps/clock.py b/wasp/apps/clock.py index 4fc2487..17485c0 100644 --- a/wasp/apps/clock.py +++ b/wasp/apps/clock.py @@ -29,6 +29,11 @@ MONTH = 'JanFebMarAprMayJunJulAugSepOctNovDec' class ClockApp(): """Simple digital clock application. + + .. figure:: res/ClockApp.png + :width: 179 + + Screenshot of the clock application """ NAME = 'Clock' ICON = icons.clock diff --git a/wasp/apps/flashlight.py b/wasp/apps/flashlight.py index 12ba272..95c44b2 100644 --- a/wasp/apps/flashlight.py +++ b/wasp/apps/flashlight.py @@ -12,7 +12,13 @@ import wasp import icons class FlashlightApp(object): - """Trivial flashlight application.""" + """Trivial flashlight application. + + .. figure:: res/TorchApp.png + :width: 179 + + Screenshot of the flashlight application + """ NAME = 'Torch' ICON = icons.torch diff --git a/wasp/apps/heart.py b/wasp/apps/heart.py index 367d17a..bff558e 100644 --- a/wasp/apps/heart.py +++ b/wasp/apps/heart.py @@ -8,6 +8,10 @@ import ppg class HeartApp(): """Heart Rate Sensing application. + .. figure:: res/HeartApp.png + :width: 179 + + Screenshot of the heart rate application """ NAME = 'Heart' diff --git a/wasp/apps/launcher.py b/wasp/apps/launcher.py index 6a8bab7..aec542c 100644 --- a/wasp/apps/launcher.py +++ b/wasp/apps/launcher.py @@ -10,6 +10,11 @@ import icons class LauncherApp(): """An application launcher application. + + .. figure:: res/LauncherApp.png + :width: 179 + + Screenshot of the application launcher """ NAME = 'Launcher' ICON = icons.app diff --git a/wasp/apps/settings.py b/wasp/apps/settings.py index eb6183f..2bad080 100644 --- a/wasp/apps/settings.py +++ b/wasp/apps/settings.py @@ -1,14 +1,19 @@ # SPDX-License-Identifier: LGPL-3.0-or-later # Copyright (C) 2020 Daniel Thompson -"""Ultra-simple settings application. - -Currently the settings application contains only one setting: brightness -""" import wasp import icons class SettingsApp(): + """Ultra-simple settings application. + + Currently the settings application contains only one setting: brightness + + .. figure:: res/SettingsApp.png + :width: 179 + + Screenshot of the settings application + """ NAME = 'Settings' ICON = icons.settings diff --git a/wasp/apps/steps.py b/wasp/apps/steps.py index 8dbf619..47b1371 100644 --- a/wasp/apps/steps.py +++ b/wasp/apps/steps.py @@ -30,6 +30,13 @@ feet = ( ) class StepCounterApp(): + """Step counter application. + + .. figure:: res/StepsApp.png + :width: 179 + + Screenshot of the step counter application + """ NAME = 'Steps' ICON = icons.app diff --git a/wasp/apps/stopwatch.py b/wasp/apps/stopwatch.py index c2f756b..8eab273 100644 --- a/wasp/apps/stopwatch.py +++ b/wasp/apps/stopwatch.py @@ -6,6 +6,13 @@ import icons import fonts class StopwatchApp(): + """Stopwatch application. + + .. figure:: res/TimerApp.png + :width: 179 + + Screenshot of the stopwatch application + """ NAME = 'Timer' ICON = icons.app diff --git a/wasp/apps/testapp.py b/wasp/apps/testapp.py index e2e8828..4c90109 100644 --- a/wasp/apps/testapp.py +++ b/wasp/apps/testapp.py @@ -11,6 +11,11 @@ import icons class TestApp(): """Simple test application. + + .. figure:: res/SelfTestApp.png + :width: 179 + + Screenshot of the self test application """ NAME = 'Self Test' ICON = icons.app |
