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