blob: 99d3c416c61cdafde91feb850fec17a83850a5c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# 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/WeekClkApp.png
:width: 179
"""
from apps.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])
|