README: Add a (fairly) comprehensive screenshot tour

Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
This commit is contained in:
Daniel Thompson 2020-08-16 18:48:15 +01:00
parent c5a4a14334
commit 9877ea99bd
18 changed files with 90 additions and 5 deletions

View File

@ -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

BIN
res/Bootloader.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
res/ClockApp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

BIN
res/HeartApp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

BIN
res/LauncherApp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

BIN
res/SelfTestApp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

BIN
res/SettingsApp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

BIN
res/StepsApp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

BIN
res/TimerApp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

BIN
res/TorchApp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -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

View File

@ -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

View File

@ -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'

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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