-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplateCar.py
43 lines (43 loc) · 1.2 KB
/
templateCar.py
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
SHOW_NODEID = '''
{
"layout":
{
"background": {
"bgColor": "WHITE",
"enableButtonZone": false,
"rectangle": {
"block": {
"x_percent": 0,
"y_percent": 0,
"w_percent": 0,
"h_percent": 0
}
}
},
"items": [
{ "type": "BITMAP_URI",
"data": {
"id": "NODE_ID",
"text": "<NODE_ID>",
"font": "DDIN_24",
"foregroundColor": "WHITE",
"backgroundColor": "WHITE",
"uri": "https://file.sync-sign.com/assets/img/car_black_part.bmp",
"block": { "x": 0, "y": 0, "w": 880, "h": 528 }
}
},
{ "type": "BITMAP_URI",
"data": {
"id": "BEIJING_TIME",
"text": "Fri, Jan 08 15:20",
"font": "DDIN_CONDENSED_32",
"foregroundColor": "RED",
"backgroundColor": "WHITE",
"uri": "https://file.sync-sign.com/assets/img/car_red_part.bmp",
"block": { "x": 0, "y": 0, "w": 880, "h": 528 }
}
}
],
"options" : { "pollRate": 5000 }
}}
'''