-
Notifications
You must be signed in to change notification settings - Fork 1
/
node.json
74 lines (73 loc) · 1.76 KB
/
node.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
{
"name": "Screen Configuration",
"custom_ui": "config.html",
"optional": [
".*.js$",
".*.html$",
"^example-.*",
"^doc-.*",
"package-header.jpg",
".*.md$"
],
"options": [{
"title": "Screens",
"name": "screens",
"type": "list",
"itemname": "Screen",
"items": [{
"title": "Device",
"ui_width": 6,
"name": "serial",
"type": "device"
}, {
"title": "Inches",
"ui_width": 2,
"name": "inches",
"type": "float",
"default": 27
}, {
"title": "Res Width",
"ui_width": 2,
"name": "width",
"type": "integer",
"default": 1920
}, {
"title": "Res Height",
"ui_width": 2,
"name": "height",
"type": "integer",
"default": 1080
},
{
"title": "X Position (cm)",
"ui_width": 3,
"name": "x",
"type": "float",
"default": 0
}, {
"title": "Y Position (cm)",
"ui_width": 3,
"name": "y",
"type": "float",
"default": 0
}, {
"title": "Rotation (clockwise from horizontal)",
"ui_width": 6,
"name": "rotation",
"type": "float",
"default": 0
}]
}, {
"title": "Area Width (cm)",
"ui_width": 3,
"name": "width",
"type": "float",
"default": 120.54
}, {
"title": "Area Height (cm)",
"ui_width": 3,
"name": "height",
"type": "float",
"default": 33.62
}]
}