diff --git a/README.rst b/README.rst index b528bec..8595fe6 100644 --- a/README.rst +++ b/README.rst @@ -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 new file mode 100644 index 0000000..388934c Binary files /dev/null and b/res/Bootloader.png differ diff --git a/res/ClockApp.png b/res/ClockApp.png new file mode 100644 index 0000000..83647b6 Binary files /dev/null and b/res/ClockApp.png differ diff --git a/res/HeartApp.png b/res/HeartApp.png new file mode 100644 index 0000000..e889e58 Binary files /dev/null and b/res/HeartApp.png differ diff --git a/res/LauncherApp.png b/res/LauncherApp.png new file mode 100644 index 0000000..12b2134 Binary files /dev/null and b/res/LauncherApp.png differ diff --git a/res/SelfTestApp.png b/res/SelfTestApp.png new file mode 100644 index 0000000..d5ec8cc Binary files /dev/null and b/res/SelfTestApp.png differ diff --git a/res/SettingsApp.png b/res/SettingsApp.png new file mode 100644 index 0000000..35e4fd2 Binary files /dev/null and b/res/SettingsApp.png differ diff --git a/res/StepsApp.png b/res/StepsApp.png new file mode 100644 index 0000000..0aa6548 Binary files /dev/null and b/res/StepsApp.png differ diff --git a/res/TimerApp.png b/res/TimerApp.png new file mode 100644 index 0000000..755431d Binary files /dev/null and b/res/TimerApp.png differ diff --git a/res/TorchApp.png b/res/TorchApp.png new file mode 100644 index 0000000..a83bc7a Binary files /dev/null and b/res/TorchApp.png differ 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