1
0
Fork 0
wasp-os/watch_faces/week_clock.py
Adam Blair e494eab608 Wasp A La carte
Configure wasp using a central toml file

Signed-off-by: Adam Blair <adampblair@protonmail.com>
2023-03-19 15:17:18 +00:00

30 lines
787 B
Python

# SPDX-License-Identifier: LGPL-3.0-or-later
# Copyright (C) 2022 Francesco Gazzetta
"""Digital clock with weekday
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Shows a time (as HH:MM) together with a battery meter, the date, and the weekday.
.. figure:: res/screenshots/WeekClockApp.png
:width: 179
"""
from apps.user.clock import ClockApp, MONTH
WDAY = 'MonTueWedThuFriSatSun'
class WeekClockApp(ClockApp):
NAME = 'WeekClk'
def _day_string(self, now):
"""Produce a string representing the current day"""
# Format the month as text
month = now[1] - 1
month = MONTH[month*3:(month+1)*3]
# Format the weekday as text
wday = now[6]
wday = WDAY[wday*3:(wday+1)*3]
return '{} {} {} {}'.format(wday, now[2], month, now[0])