forked from MLB-LED-Scoreboard/mlb-led-scoreboard
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.example.json
More file actions
74 lines (74 loc) · 1.31 KB
/
config.example.json
File metadata and controls
74 lines (74 loc) · 1.31 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$schema": "./schemas/config.schema.json",
"format": 9.0,
"matrix": {},
"rotation": {
"scroll_until_finished": true,
"rates": {
"live": 15.0,
"final": 15.0,
"pregame": 15.0
},
"screens": [
{
"kind": "game",
"priority": 2,
"required_status": "live",
"teams": [
"Cubs"
]
},
{
"kind": "game",
"priority": 1
},
{
"kind": "standings",
"seconds": 60,
"with_priority": 0
},
{
"kind": "news",
"seconds": 60,
"with_priority": 0
}
]
},
"news_ticker": {
"teams": [
"Cubs"
],
"traderumors": true,
"mlb_news": true,
"countdowns": true,
"events": [
{
"text": "New Year's Eve",
"date": "12-31",
"max_days": 30
}
],
"date": true,
"date_format": "%A, %B %-d"
},
"weather": {
"apikey": "YOUR_API_KEY_HERE",
"location": "Chicago,il,us",
"metric_units": false,
"pregame": true
},
"standings": {
"divisions": [
"NL Central",
"NL Wild Card"
]
},
"plugins": {},
"time_format": "12h",
"end_of_day": "00:00",
"sync_delay_seconds": 0,
"api_refresh_rate": 5,
"scrolling_speed": 2,
"debug": false,
"demo_date": false
}