-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.cfg
60 lines (49 loc) · 1 KB
/
menu.cfg
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
[menu __main]
type: list
name: Main
[menu __main __lights]
type: list
name: Lights
[menu __main __lights __case_on]
type: command
name: Light on
gcode:
CASE_LIGHT_ON
[menu __main __lights __case_off]
type: command
name: Light off
gcode:
CASE_LIGHT_OFF
[menu __main __octoprint]
type: disabled
[menu __main __temp __preheat_pla __all]
type: command
enable: {('extruder' in printer) and ('heater_bed' in printer)}
name: Preheat all
gcode:
M140 S70
M104 S215
[menu __main __temp __preheat_pla __hotend]
type: command
enable: {'extruder' in printer}
name: Preheat hotend
gcode: M104 S215
[menu __main __temp __preheat_pla __hotbed]
type: command
enable: {'heater_bed' in printer}
name: Preheat hotbed
gcode: M140 S70
[menu __main __filament __loadf]
type: command
name: Load Filament
gcode:
LOAD_FILAMENT
[menu __main __filament __loads]
type: disabled
[menu __main __filament __unloadf]
type: command
name: Unload Filament
gcode:
UNLOAD_FILAMENT
[menu __main __filament __unloads]
type: disabled