summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-08-16 17:48:15 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-08-16 17:48:15 (GMT)
commit9877ea99bd5aed4c27414dd89de754202c256f26 (patch)
tree788f52645bf89e67d3570b2a4a3070623f35107c
parentc5a4a14334913755a3c8b10b4d08c96c718b55b0 (diff)
README: Add a (fairly) comprehensive screenshot tour
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
-rw-r--r--README.rst41
-rw-r--r--res/Bootloader.pngbin0 -> 12666 bytes
-rw-r--r--res/ClockApp.pngbin0 -> 6280 bytes
-rw-r--r--res/HeartApp.pngbin0 -> 5352 bytes
-rw-r--r--res/LauncherApp.pngbin0 -> 6927 bytes
-rw-r--r--res/SelfTestApp.pngbin0 -> 6458 bytes
-rw-r--r--res/SettingsApp.pngbin0 -> 5340 bytes
-rw-r--r--res/StepsApp.pngbin0 -> 5560 bytes
-rw-r--r--res/TimerApp.pngbin0 -> 5543 bytes
-rw-r--r--res/TorchApp.pngbin0 -> 4598 bytes
-rw-r--r--wasp/apps/clock.py5
-rw-r--r--wasp/apps/flashlight.py8
-rw-r--r--wasp/apps/heart.py4
-rw-r--r--wasp/apps/launcher.py5
-rw-r--r--wasp/apps/settings.py13
-rw-r--r--wasp/apps/steps.py7
-rw-r--r--wasp/apps/stopwatch.py7
-rw-r--r--wasp/apps/testapp.py5
18 files changed, 90 insertions, 5 deletions
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
--- /dev/null
+++ b/res/Bootloader.png
Binary files differ
diff --git a/res/ClockApp.png b/res/ClockApp.png
new file mode 100644
index 0000000..83647b6
--- /dev/null
+++ b/res/ClockApp.png
Binary files differ
diff --git a/res/HeartApp.png b/res/HeartApp.png
new file mode 100644
index 0000000..e889e58
--- /dev/null
+++ b/res/HeartApp.png
Binary files differ
diff --git a/res/LauncherApp.png b/res/LauncherApp.png
new file mode 100644
index 0000000..12b2134
--- /dev/null
+++ b/res/LauncherApp.png
Binary files differ
diff --git a/res/SelfTestApp.png b/res/SelfTestApp.png
new file mode 100644
index 0000000..d5ec8cc
--- /dev/null
+++ b/res/SelfTestApp.png
Binary files differ
diff --git a/res/SettingsApp.png b/res/SettingsApp.png
new file mode 100644
index 0000000..35e4fd2
--- /dev/null
+++ b/res/SettingsApp.png
Binary files differ
diff --git a/res/StepsApp.png b/res/StepsApp.png
new file mode 100644
index 0000000..0aa6548
--- /dev/null
+++ b/res/StepsApp.png
Binary files differ
diff --git a/res/TimerApp.png b/res/TimerApp.png
new file mode 100644
index 0000000..755431d
--- /dev/null
+++ b/res/TimerApp.png
Binary files differ
diff --git a/res/TorchApp.png b/res/TorchApp.png
new file mode 100644
index 0000000..a83bc7a
--- /dev/null
+++ b/res/TorchApp.png
Binary files 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