forked from 13Bytes/eInkCalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py.sample
More file actions
55 lines (42 loc) · 1.7 KB
/
settings.py.sample
File metadata and controls
55 lines (42 loc) · 1.7 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
LOCALE = "de_DE"
# "pattern_fill" can be BLACK, RED, VERTICALSTRIPES, HORIZONTALSTRIPES, DIAGONALSTRIPESLOWERRIGHT, DIAGONALSTRIPESUPPERRIGHT
# with "pattern_red_stripes" when true a red color will be used in the striped patterns instead of white.
WEBDAV_CALENDAR_URLS = [
{
"url": "webcal://...",
"calendar_name": "a name",
"is_apple": True,
"pattern_fill": "DIAGONALSTRIPESUPPERRIGHT",
"pattern_red_stripes": False
},
{
"url": "webcal://...2",
"calendar_name": "a name2",
"is_apple": True,
"pattern_fill": "VERTICALSTRIPES",
"pattern_red_stripes": False
},
]
CALDAV_CONTACT_URL = "https://..."
CALDAV_CONTACT_USER = "username"
CALDAV_CONTACT_PWD = "passw0rd"
ROTATE_IMAGE = True
#Aperture Science Decorations
APERTURE_DECORATIONS = True
#True if the first day of the week is sunday. False to be Monday
FIRST_WEEKDAY_IS_SUNDAY = True
#For accessing the weather please go to tomorrow.io register for a free account and insert the key here. Empty or commented so to not show the weather.
TOMORROWIO_API_KEY = "[insert api key here]"
#Location for weather forecast.
#A latitude-longitude pair of numbers according to ISO 6709, separated by , in query parameters
#See also https://docs.tomorrow.io/reference/api-formats#locations
#Sample is for Hamburg DE
WEATHER_LOCATION = "53.551086,9.993682"
#Temperature Units (can be C for Celsius or F for Fahrenheit), the default is C
TEMPERATURE_UNIT = "C"
#Will show a random quotes on the bottom of the screen
SHOW_QUOTES = True
#Voltage were the device should notify for a recharge (consult your battery datasheet).
RECHARGE_VOlTAGE = 3.5
#Debug mode. It will write to disk the image and not to the screen.
DEBUG = False