forked from LoveBootCaptain/WeatherPi_TFT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.480x320.config.json
74 lines (70 loc) · 1.24 KB
/
example.480x320.config.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"openweather_appid": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"google_api_key": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"address": "",
"latitude": 35.746289,
"longitude": 139.667028,
"locale": "en_US.UTF-8",
"units": "metric",
"SDL_FBDEV": "/dev/fb1",
"display": [480, 320],
"fonts": {
"name": "Sans",
"size": {
"large": 30,
"medium": 22,
"small": 14
}
},
"modules": [
{
"module": "Alerts",
"config": {
"rect": [0, 0, 480, 20]
}
},
{
"module": "Weather",
"config": {
"rect": [0, 20, 410, 120]
}
},
{
"module": "WeatherForecast",
"config": {
"rect": [0, 150, 480, 80],
"forecast_days": 6
}
},
{
"module": "SunriseSuset",
"config": {
"rect": [0, 240, 80, 80]
}
},
{
"module": "MoonPhase",
"config": {
"rect": [80, 240, 80, 80]
}
},
{
"module": "Wind",
"config": {
"rect": [160, 240, 80, 80]
}
},
{
"module": "Clock",
"config": {
"rect": [320, 240, 160, 60]
}
},
{
"module": "Location",
"config": {
"rect": [320, 300, 160, 20]
}
}
]
}