wasp-os/wasp/apps/settings.py
2020-04-10 20:30:20 +01:00

41 lines
1.1 KiB
Python

# SPDX-License-Identifier: LGPL-3.0-or-later
# Copyright (C) 2020 Daniel Thompson
"""Ultra-simple settings application.
Currently the settings application contains only one setting: brightness
"""
import wasp
import icons
class SettingsApp():
NAME = 'Settings'
ICON = icons.settings
def foreground(self):
self._draw()
wasp.system.request_event(wasp.EventMask.TOUCH)
def touch(self, event):
brightness = wasp.system.brightness + 1
if brightness > 3:
brightness = 1
wasp.system.brightness = brightness
self._update()
def _draw(self):
"""Redraw the display from scratch."""
wasp.watch.drawable.fill()
wasp.watch.drawable.string('Settings', 0, 6, width=240)
wasp.watch.drawable.string('Brightness', 0, 120 - 3 - 24, width=240)
self._update()
def _update(self):
if wasp.system.brightness == 3:
say = "High"
elif wasp.system.brightness == 2:
say = "Mid"
else:
say = "Low"
wasp.watch.drawable.string(say, 0, 120 + 3, width=240)