blob: bf6962cc832b0b16b5d2caf9666b073cfb5e0e30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# SPDX-License-Identifier: LGPL-3.0-or-later
# Copyright (C) 2021 Daniel Thompson
"""Example of any automatically discovered application.
Any python file (``.py`` or ``.mpy``) discovered in the ``apps/``
directory will be automatically added to the Software application.
"""
import wasp
class ReadMeApp():
NAME = "ReadMe"
def foreground(self):
draw = wasp.watch.drawable
draw.fill()
draw.string('Autoloaded from', 0, 96, width=240)
draw.string('apps/ReadMe.py', 0, 96+32, width=240)
|