-
-
Notifications
You must be signed in to change notification settings - Fork 228
/
Copy pathsample.config.json
51 lines (51 loc) · 1.24 KB
/
sample.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
{
"octoprint": {
"url": "http://localhost:5000/api/",
"accessToken": "INSERT API KEY HERE",
"apiInterval": 15000
},
"printer": {
"name": "NAME HERE",
"xySpeed": 100,
"zSpeed": 5
},
"filament": {
"thickness": 0,
"density": 0
},
"octodash": {
"touchscreen": true,
"temperatureSensor": null,
"customActions": [{
"icon": "home",
"command": "G28",
"color": "#dcdde1"
},
{
"icon": "ruler-vertical",
"command": "G29",
"color": "#44bd32"
},
{
"icon": "fire-alt",
"command": "M140 S50; M104 S185",
"color": "#e1b12c"
},
{
"icon": "snowflake",
"command": "M140 S0; M104 S0",
"color": "#0097e6"
},
{
"icon": "redo-alt",
"command": "[!RELOAD]",
"color": "#7f8fa6"
},
{
"icon": "skull",
"command": "[!KILL]",
"color": "#e84118"
}
]
}
}