-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.yaml
56 lines (52 loc) · 1.57 KB
/
default.yaml
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
# This is the default Odyssey configuration file for the Prometheus MSLA. It is
# meant to be paired with the latest Prometheus MSLA klipper config.
# This section holds the config fields related to the printer, such as its serial
# connection and its frame buffer specs
printer:
serial: /home/pi/printer_data/comms/klippy.serial
baudrate: 250000
max_z: 300
default_lift: 10
default_up_speed: 3.4
default_down_speed: 3.4
default_wait_before_exposure: 2.2
default_wait_after_exposure: 1.5
pause_lift: 100
# This section holds fields pertaining to the display used by the printer
display:
frame_buffer: /dev/fb0
bit_depth:
- 5
- 6
- 5
screen_width: 6480
screen_height: 3600
# This section holds fields pertaining to the Gcode used to drive the machine's
# hardware, and signal between the board and Odyssey
gcode:
boot: |
G90
shutdown: |
M84
UVLED_OFF
home_command: HOME_AXIS
move_command: MOVE_PLATE Z={z} F={speed}
print_start: |
HOME_AXIS
SET_PRINT_STATS_INFO TOTAL_LAYER={total_layers}
print_end: |
MOVE_PLATE Z={max_z} F=400
layer_start: SET_PRINT_STATS_INFO CURRENT_LAYER={layer}
cure_start: UVLED_ON
cure_end: UVLED_OFF
move_sync: Z_move_comp
move_timeout: 60
status_check: status
status_desired: "Klipper state: Ready"
# This section holds fields pertaining to the Odyseey API, such as the port number
# and where to store uploaded .sl1 files
api:
upload_path: /home/pi/printer_data/gcodes
# glob pattern for finding files in mounted USB devices, if present
usb_glob: /media/usb*/*.sl1
port: 12357