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 | |
| parent | c5a4a14334913755a3c8b10b4d08c96c718b55b0 (diff) | |
README: Add a (fairly) comprehensive screenshot tour
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
| -rw-r--r-- | README.rst | 41 | ||||
| -rw-r--r-- | res/Bootloader.png | bin | 0 -> 12666 bytes | |||
| -rw-r--r-- | res/ClockApp.png | bin | 0 -> 6280 bytes | |||
| -rw-r--r-- | res/HeartApp.png | bin | 0 -> 5352 bytes | |||
| -rw-r--r-- | res/LauncherApp.png | bin | 0 -> 6927 bytes | |||
| -rw-r--r-- | res/SelfTestApp.png | bin | 0 -> 6458 bytes | |||
| -rw-r--r-- | res/SettingsApp.png | bin | 0 -> 5340 bytes | |||
| -rw-r--r-- | res/StepsApp.png | bin | 0 -> 5560 bytes | |||
| -rw-r--r-- | res/TimerApp.png | bin | 0 -> 5543 bytes | |||
| -rw-r--r-- | res/TorchApp.png | bin | 0 -> 4598 bytes | |||
| -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 |
18 files changed, 90 insertions, 5 deletions
@@ -102,5 +102,46 @@ Videos Screenshots ----------- +(An older version of) the digital clock application running on a Pine64 PineTime: + .. image:: res/clock_app.jpg :alt: wasp-os digital clock app running on PineTime + +Screenshots of the built in applications running on the wasp-os +simulator (the "blank" screen is the torch application): + +.. image:: res/Bootloader.png + :alt: Bootloader splash screen overlaid on the simulator watch art + :width: 179 + +.. image:: res/ClockApp.png + :alt: Digital clock application running on the wasp-os simulator + :width: 179 + +.. image:: res/HeartApp.png + :alt: Heart rate application running on the wasp-os simulator + :width: 179 + +.. image:: res/TimerApp.png + :alt: Stop watch application running on the wasp-os simulator + :width: 179 + +.. image:: res/StepsApp.png + :alt: Step counter application running on the wasp-os simulator + :width: 179 + +.. image:: res/LauncherApp.png + :alt: Application launcher running on the wasp-os simulator + :width: 179 + +.. image:: res/SelfTestApp.png + :alt: Self test application running a rendering benchmark on the simulator + :width: 179 + +.. image:: res/SettingsApp.png + :alt: Settings application running on the wasp-os simulator + :width: 179 + +.. image:: res/TorchApp.png + :alt: Torch application running on the wasp-o simulator + :width: 179 diff --git a/res/Bootloader.png b/res/Bootloader.png Binary files differnew file mode 100644 index 0000000..388934c --- /dev/null +++ b/res/Bootloader.png diff --git a/res/ClockApp.png b/res/ClockApp.png Binary files differnew file mode 100644 index 0000000..83647b6 --- /dev/null +++ b/res/ClockApp.png diff --git a/res/HeartApp.png b/res/HeartApp.png Binary files differnew file mode 100644 index 0000000..e889e58 --- /dev/null +++ b/res/HeartApp.png diff --git a/res/LauncherApp.png b/res/LauncherApp.png Binary files differnew file mode 100644 index 0000000..12b2134 --- /dev/null +++ b/res/LauncherApp.png diff --git a/res/SelfTestApp.png b/res/SelfTestApp.png Binary files differnew file mode 100644 index 0000000..d5ec8cc --- /dev/null +++ b/res/SelfTestApp.png diff --git a/res/SettingsApp.png b/res/SettingsApp.png Binary files differnew file mode 100644 index 0000000..35e4fd2 --- /dev/null +++ b/res/SettingsApp.png diff --git a/res/StepsApp.png b/res/StepsApp.png Binary files differnew file mode 100644 index 0000000..0aa6548 --- /dev/null +++ b/res/StepsApp.png diff --git a/res/TimerApp.png b/res/TimerApp.png Binary files differnew file mode 100644 index 0000000..755431d --- /dev/null +++ b/res/TimerApp.png diff --git a/res/TorchApp.png b/res/TorchApp.png Binary files differnew file mode 100644 index 0000000..a83bc7a --- /dev/null +++ b/res/TorchApp.png 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 |
