README: Add a (fairly) comprehensive screenshot tour
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
41
README.rst
|
@ -102,5 +102,46 @@ Videos
|
||||||
Screenshots
|
Screenshots
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|
(An older version of) the digital clock application running on a Pine64 PineTime:
|
||||||
|
|
||||||
.. image:: res/clock_app.jpg
|
.. image:: res/clock_app.jpg
|
||||||
:alt: wasp-os digital clock app running on PineTime
|
: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
After Width: | Height: | Size: 12 KiB |
BIN
res/ClockApp.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
res/HeartApp.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
res/LauncherApp.png
Normal file
After Width: | Height: | Size: 6.8 KiB |
BIN
res/SelfTestApp.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
res/SettingsApp.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
BIN
res/StepsApp.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
res/TimerApp.png
Normal file
After Width: | Height: | Size: 5.4 KiB |
BIN
res/TorchApp.png
Normal file
After Width: | Height: | Size: 4.5 KiB |
|
@ -29,6 +29,11 @@ MONTH = 'JanFebMarAprMayJunJulAugSepOctNovDec'
|
||||||
|
|
||||||
class ClockApp():
|
class ClockApp():
|
||||||
"""Simple digital clock application.
|
"""Simple digital clock application.
|
||||||
|
|
||||||
|
.. figure:: res/ClockApp.png
|
||||||
|
:width: 179
|
||||||
|
|
||||||
|
Screenshot of the clock application
|
||||||
"""
|
"""
|
||||||
NAME = 'Clock'
|
NAME = 'Clock'
|
||||||
ICON = icons.clock
|
ICON = icons.clock
|
||||||
|
|
|
@ -12,7 +12,13 @@ import wasp
|
||||||
import icons
|
import icons
|
||||||
|
|
||||||
class FlashlightApp(object):
|
class FlashlightApp(object):
|
||||||
"""Trivial flashlight application."""
|
"""Trivial flashlight application.
|
||||||
|
|
||||||
|
.. figure:: res/TorchApp.png
|
||||||
|
:width: 179
|
||||||
|
|
||||||
|
Screenshot of the flashlight application
|
||||||
|
"""
|
||||||
NAME = 'Torch'
|
NAME = 'Torch'
|
||||||
ICON = icons.torch
|
ICON = icons.torch
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,10 @@ import ppg
|
||||||
class HeartApp():
|
class HeartApp():
|
||||||
"""Heart Rate Sensing application.
|
"""Heart Rate Sensing application.
|
||||||
|
|
||||||
|
.. figure:: res/HeartApp.png
|
||||||
|
:width: 179
|
||||||
|
|
||||||
|
Screenshot of the heart rate application
|
||||||
"""
|
"""
|
||||||
NAME = 'Heart'
|
NAME = 'Heart'
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,11 @@ import icons
|
||||||
|
|
||||||
class LauncherApp():
|
class LauncherApp():
|
||||||
"""An application launcher application.
|
"""An application launcher application.
|
||||||
|
|
||||||
|
.. figure:: res/LauncherApp.png
|
||||||
|
:width: 179
|
||||||
|
|
||||||
|
Screenshot of the application launcher
|
||||||
"""
|
"""
|
||||||
NAME = 'Launcher'
|
NAME = 'Launcher'
|
||||||
ICON = icons.app
|
ICON = icons.app
|
||||||
|
|
|
@ -1,14 +1,19 @@
|
||||||
# SPDX-License-Identifier: LGPL-3.0-or-later
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
||||||
# Copyright (C) 2020 Daniel Thompson
|
# Copyright (C) 2020 Daniel Thompson
|
||||||
"""Ultra-simple settings application.
|
|
||||||
|
|
||||||
Currently the settings application contains only one setting: brightness
|
|
||||||
"""
|
|
||||||
|
|
||||||
import wasp
|
import wasp
|
||||||
import icons
|
import icons
|
||||||
|
|
||||||
class SettingsApp():
|
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'
|
NAME = 'Settings'
|
||||||
ICON = icons.settings
|
ICON = icons.settings
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,13 @@ feet = (
|
||||||
)
|
)
|
||||||
|
|
||||||
class StepCounterApp():
|
class StepCounterApp():
|
||||||
|
"""Step counter application.
|
||||||
|
|
||||||
|
.. figure:: res/StepsApp.png
|
||||||
|
:width: 179
|
||||||
|
|
||||||
|
Screenshot of the step counter application
|
||||||
|
"""
|
||||||
NAME = 'Steps'
|
NAME = 'Steps'
|
||||||
ICON = icons.app
|
ICON = icons.app
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,13 @@ import icons
|
||||||
import fonts
|
import fonts
|
||||||
|
|
||||||
class StopwatchApp():
|
class StopwatchApp():
|
||||||
|
"""Stopwatch application.
|
||||||
|
|
||||||
|
.. figure:: res/TimerApp.png
|
||||||
|
:width: 179
|
||||||
|
|
||||||
|
Screenshot of the stopwatch application
|
||||||
|
"""
|
||||||
NAME = 'Timer'
|
NAME = 'Timer'
|
||||||
ICON = icons.app
|
ICON = icons.app
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,11 @@ import icons
|
||||||
|
|
||||||
class TestApp():
|
class TestApp():
|
||||||
"""Simple test application.
|
"""Simple test application.
|
||||||
|
|
||||||
|
.. figure:: res/SelfTestApp.png
|
||||||
|
:width: 179
|
||||||
|
|
||||||
|
Screenshot of the self test application
|
||||||
"""
|
"""
|
||||||
NAME = 'Self Test'
|
NAME = 'Self Test'
|
||||||
ICON = icons.app
|
ICON = icons.app
|
||||||
|
|