diff options
Diffstat (limited to 'wasp')
| -rw-r--r-- | wasp/apps/demo.py | 13 | ||||
| -rw-r--r-- | wasp/boards/simulator/test_qa.py | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/wasp/apps/demo.py b/wasp/apps/demo.py index 17b31c6..b49655c 100644 --- a/wasp/apps/demo.py +++ b/wasp/apps/demo.py @@ -8,6 +8,19 @@ This demo is simply an alternating sweep of the Pine64 and MicroPython logos. It cycles through a variety of colours and swaps between the logos every 5 images (so if you change anything make sure len(colors) is not a multiple of 5). + +.. figure:: res/DemoApp.png + :width: 179 + +The demo also includes code to keep the devie awake making it +suitable to run as an always-on application to demonstrate wasp-os at +conferences and shows. + +.. note:: + + Due to it's niche purpose and relatively large size this app is not + included by default in the flash images. It must be separately installed + and enabled. """ import wasp diff --git a/wasp/boards/simulator/test_qa.py b/wasp/boards/simulator/test_qa.py index 7f38995..04dab15 100644 --- a/wasp/boards/simulator/test_qa.py +++ b/wasp/boards/simulator/test_qa.py @@ -3,7 +3,7 @@ import wasp import importlib import os -EXCLUDE = ('Notifications', 'Template', 'Demo', 'Faces') +EXCLUDE = ('Notifications', 'Template', 'Faces') def test_README(constructor): if constructor.NAME in EXCLUDE: |
