forked from UnchartedBull/OctoDash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.config.json
100 lines (100 loc) · 2.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"config": {
"octoprint": {
"accessToken": "INSERT API KEY HERE",
"url": "http://localhost:5000/api/"
},
"printer": {
"name": "NAME HERE",
"xySpeed": 100,
"zSpeed": 5,
"defaultTemperatureFanSpeed": {
"hotend": 200,
"heatbed": 60,
"fan": 100
}
},
"filament": {
"density": 0,
"thickness": 0,
"feedLength": 470,
"feedSpeed": 100
},
"plugins": {
"displayLayerProgress": {
"enabled": true
},
"enclosure": {
"enabled": true,
"ambientSensorID": null,
"filament1SensorID": null,
"filament2SensorID": null
},
"filamentManager": {
"enabled": true
},
"preheatButton": {
"enabled": true
},
"printTimeGenius": {
"enabled": true
},
"psuControl": {
"enabled": true,
"turnOnPSUWhenExitingSleep": false
}
},
"octodash": {
"customActions": [{
"icon": "home",
"command": "G28",
"color": "#dcdde1",
"confirm": false,
"exit": false
},
{
"icon": "ruler-vertical",
"command": "G29",
"color": "#44bd32",
"confirm": false,
"exit": false
},
{
"icon": "fire-alt",
"command": "M140 S50; M104 S185",
"color": "#e1b12c",
"confirm": false,
"exit": true
},
{
"icon": "snowflake",
"command": "M140 S0; M104 S0",
"color": "#0097e6",
"confirm": false,
"exit": true
},
{
"icon": "redo-alt",
"command": "[!RELOAD]",
"color": "#7f8fa6",
"confirm": true,
"exit": false
},
{
"icon": "skull",
"command": "[!KILL]",
"color": "#e84118",
"confirm": true,
"exit": false
}
],
"fileSorting": {
"attribute": "name",
"order": "asc"
},
"pollingInterval": 2000,
"touchscreen": true,
"turnScreenOffWhileSleeping": false
}
}
}