forked from DrA1ex/ff5m
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod_params.json
More file actions
354 lines (354 loc) · 7.88 KB
/
mod_params.json
File metadata and controls
354 lines (354 loc) · 7.88 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
{
"enums": {
"LinePurgeEnum": {
"type": "str",
"values": {
"ORCA": "_CLEAR1",
"FF1": "_CLEAR2",
"FF2": "_CLEAR3",
"SCHREIDER": "_CLEAR4"
}
},
"AutoRebootEnum": {
"type": "int",
"values": {
"OFF": 0,
"SIMPLE_90": 1,
"FIRMWARE_90": 2
}
},
"SwapEnum": {
"type": "int",
"values": {
"OFF": 0,
"MMC": 1,
"USB": 2
}
},
"CloseDialogsEnum": {
"type": "int",
"values": {
"OFF": 0,
"SLOW": 1,
"FAST": 2
}
},
"DisplayEnum": {
"type": "int",
"values": {
"STOCK": 0,
"FEATHER": 1,
"HEADLESS": 2,
"GUPPY": 3
}
}
},
"parameters": [
{
"key": "auto_reboot",
"type": "AutoRebootEnum",
"default": "OFF",
"label": "Auto-restart",
"options": {
"OFF": "disabled",
"SIMPLE_90": "after 1.5 minutes",
"FIRMWARE_90": "firmware after 1.5 minutes"
},
"order": 30000
},
{
"key": "close_dialogs",
"type": "CloseDialogsEnum",
"default": "OFF",
"label": "Dialogs",
"options": {
"OFF": "do not close",
"SLOW": "close after 20 seconds (slowly)",
"FAST": "close after 20 seconds (quickly)"
},
"order": 30000
},
{
"key": "disable_priming",
"type": "bool",
"default": 0,
"label": "Nozzle priming before print",
"options": ["YES", "NO"],
"order": 20000
},
{
"key": "disable_cleaning",
"type": "bool",
"default": 0,
"label": "Nozzle cleaning before calibration",
"options": ["YES", "NO"],
"order": 20000
},
{
"key": "disable_screen_led",
"type": "bool",
"default": 0,
"label": "Allow stock firmware to control LED",
"options": ["YES", "NO"],
"order": 100
},
{
"key": "disable_skew",
"type": "bool",
"default": 1,
"label": "SKEW correction",
"options": ["YES", "NO"],
"order": 20000
},
{
"key": "tune_klipper",
"type": "bool",
"default": 0,
"label": "Tune klipper parameters",
"deprecated": {
"key": "fix_e0017",
"mapping": {
"0": "0",
"1": "1"
}
}
},
{
"key": "check_md5",
"type": "bool",
"default": 1,
"label": "MD5 verification",
"warning": "To make the checksum validation work, you need to add a post-processing script to your slicer.\nScripts can be downloaded from 'Configuration -> mod' (addMD5.sh or addMD5.bat)"
},
{
"key": "cell_weight",
"type": "int",
"default": 0,
"label": "Allowed threshold weight on load cell",
"order": 100
},
{
"key": "load_zoffset",
"type": "bool",
"default": 0,
"label": "Load Z-OFFSET",
"order": 10000
},
{
"key": "load_zoffset_cleaning",
"type": "bool",
"default": 0,
"label": "Load Z-OFFSET during cleaning",
"order": 10001
},
{
"key": "z_offset",
"type": "float",
"default": 0,
"label": "Z-OFFSET",
"order": 10002
},
{
"key": "sound",
"type": "bool",
"default": 1,
"label": "Sound indication",
"order": 50000
},
{
"key": "backlight",
"type": "int",
"default": 50,
"label": "Screen brightness",
"order": 50001
},
{
"key": "backlight_eco",
"type": "int",
"default": 10,
"label": "Screen brightness in ECO mode",
"order": 50002
},
{
"key": "midi_on",
"type": "str",
"default": "",
"label": "MIDI on startup",
"order": 50010
},
{
"key": "midi_start",
"type": "str",
"default": "",
"label": "MIDI when starting print",
"order": 50011
},
{
"key": "midi_end",
"type": "str",
"default": "",
"label": "MIDI when completing print",
"order": 50012
},
{
"key": "print_leveling",
"type": "bool",
"default": 0,
"label": "Mesh bed before printing",
"order": 100
},
{
"key": "stop_motor",
"type": "bool",
"default": 1,
"label": "Motors",
"options": ["Do not turn off", "Turn off automatically"],
"order": 30000
},
{
"key": "use_kamp",
"type": "bool",
"default": 0,
"label": "Use KAMP",
"order": 20000
},
{
"key": "use_swap",
"type": "SwapEnum",
"default": "MMC",
"label": "SWAP",
"options": {
"OFF": "not used",
"MMC": "used on eMMC",
"USB": "used on USB"
}
},
{
"key": "zclear",
"type": "LinePurgeEnum",
"default": "ORCA",
"label": "Purge algorithm",
"order": 20000
},
{
"key": "park_dz",
"type": "int",
"default": 50,
"label": "Parking offset after print completion, mm",
"order": 20000
},
{
"key": "clear_cooldown_temp",
"type": "int",
"default": 120,
"label": "Cooldown temperature for CLEAR_NOZZLE, Cº",
"order": 20000
},
{
"key": "display",
"type": "DisplayEnum",
"default": "STOCK",
"label": "Display",
"options": {
"STOCK": "Use Stock Screen",
"FEATHER": "Use Feather Screen",
"HEADLESS": "Use Headless",
"GUPPY": "Use Guppy Screen"
},
"deprecated": {
"key": "display_off",
"mapping": {
"0": "'STOCK'",
"1": "'FEATHER'"
}
}
},
{
"key": "camera",
"type": "bool",
"default": 0,
"label": "Alt. camera",
"options": ["not used", "enabled"],
"order": 100
},
{
"key": "zssh",
"type": "bool",
"default": 0,
"label": "SSH tunnel",
"options": ["not used", "enabled"],
"order": 100
},
{
"key": "weight_check",
"type": "bool",
"default": 0,
"label": "Bed collision protection",
"order": 10
},
{
"key": "weight_check_max",
"type": "int",
"default": 1200,
"label": "Bed collision protection, weight",
"order": 11
},
{
"key": "bed_mesh_validation",
"type": "bool",
"default": 0,
"label": "Bed Mesh Validation",
"order": 12
},
{
"key": "bed_mesh_validation_clear",
"type": "bool",
"default": 0,
"label": "Clear before Bed Mesh Validation",
"order": 13
},
{
"key": "bed_mesh_validation_tolerance",
"type": "float",
"default": 0.2,
"label": "Bed Mesh Validation Z-Offset Tolerance",
"order": 14
},
{
"key": "tune_config",
"type": "bool",
"default": 0,
"label": "Firmware parameter tuning",
"order": 15,
"warning": "!! After changing the value, be sure to recreate the bed mesh and adjust the Z-Offset.\n!! If you have performed dimension calibration, it must also be updated.\n!! Additionally, you may need to recalibrate the flow and Pressure Advance.\n!! Printing with an old bed mesh or Z-Offset may damage the printer!\nYou can view the changing parameters in the Configuration -> 'mod' -> 'tuning.cfg' section."
},
{
"key": "filament_switch_sensor",
"type": "bool",
"default": 1,
"label": "Use filament switch sensor",
"order": 100
},
{
"key": "disable_web",
"type": "bool",
"default": 0,
"label": "Disable Web UI",
"order": 30000
},
{
"key": "disable_moonraker",
"type": "bool",
"default": 0,
"label": "Disable Moonraker",
"order": 30000
},
{
"key": "power_loss_recovery",
"type": "bool",
"default": 0,
"label": "Enable Power Loss Recovery Feature",
"order": 30000
}
]
}