2020-03-22 16:40:18 +01:00
|
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
# Copyright (C) 2020 Daniel Thompson
|
|
|
|
|
2020-05-14 23:29:35 +02:00
|
|
|
"""Flashlight
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Shows a pure white screen with the backlight set to maximum.
|
2021-01-13 22:51:17 +01:00
|
|
|
|
|
|
|
.. figure:: res/TorchApp.png
|
|
|
|
:width: 179
|
2020-05-14 23:29:35 +02:00
|
|
|
"""
|
|
|
|
|
2020-03-22 13:37:19 +01:00
|
|
|
import wasp
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-04-06 23:03:05 +02:00
|
|
|
import icons
|
|
|
|
|
2021-01-03 15:54:34 +01:00
|
|
|
class TorchApp(object):
|
2021-01-13 22:51:17 +01:00
|
|
|
"""Trivial flashlight application."""
|
2020-04-06 23:03:05 +02:00
|
|
|
NAME = 'Torch'
|
|
|
|
ICON = icons.torch
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-03-28 18:19:34 +01:00
|
|
|
def foreground(self):
|
2020-03-08 11:18:08 +01:00
|
|
|
"""Activate the application."""
|
2020-03-28 18:19:34 +01:00
|
|
|
self.draw()
|
2020-03-22 13:37:19 +01:00
|
|
|
wasp.system.request_tick(1000)
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-03-26 23:12:05 +01:00
|
|
|
self._brightness = wasp.system.brightness
|
|
|
|
wasp.system.brightness = 3
|
|
|
|
|
2020-03-08 11:18:08 +01:00
|
|
|
def background(self):
|
|
|
|
"""De-activate the application (without losing state)."""
|
2020-03-26 23:12:05 +01:00
|
|
|
wasp.system.brightness = self._brightness
|
2020-03-08 11:18:08 +01:00
|
|
|
|
|
|
|
def tick(self, ticks):
|
2020-03-26 23:12:05 +01:00
|
|
|
wasp.system.keep_awake()
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-03-28 18:19:34 +01:00
|
|
|
def draw(self):
|
2020-03-08 11:18:08 +01:00
|
|
|
"""Redraw the display from scratch."""
|
2020-06-22 23:21:13 +02:00
|
|
|
wasp.watch.drawable.fill(0xffff)
|