-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprint-queue.yaml
More file actions
37 lines (35 loc) · 1.53 KB
/
Copy pathprint-queue.yaml
File metadata and controls
37 lines (35 loc) · 1.53 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
# Example playlist for -print-queue.
#
# The emulator plays through "prints" in order, one at a time, and loops
# back to the first entry when it reaches the end -- forever. Progress,
# layer count, and temperatures all advance in real time relative to each
# job's own "duration" and "layers", so a slow job with many layers looks
# meaningfully different from a fast one.
#
# JSON works too (use a .json extension) with the same field names.
#
# Fields:
# name Shown as subtask_name in the MQTT report and printer displays.
# file Shown as gcode_file. Cosmetic only -- no real file is read.
# duration Total simulated print time, as a Go duration string
# (e.g. "45m", "2h30m", "90s"). Defaults to 10m if omitted.
# layers Total layer count; layer_num advances proportionally to
# elapsed-time / duration. Defaults to 100 if omitted.
# thumbnail Path to a poster/preview image (PNG/JPG), resolved relative
# to this file's directory. Served at GET /thumbnail on the
# preview HTTP port while this job is active. Optional.
# material One of PLA, PETG, ABS, TPU -- picks realistic nozzle/bed
# target temperatures. Optional, defaults to PLA-like values.
prints:
- name: "Benchy"
file: "benchy.gcode.3mf"
duration: 1h38m
layers: 599
thumbnail: "posters/benchy.png"
material: PLA
- name: "Articulated Dragon"
file: "dragon.gcode.3mf"
duration: 9h25m
layers: 217
thumbnail: "posters/dragon.png"
material: PETG