-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHECKLIST.txt
83 lines (64 loc) · 3.52 KB
/
CHECKLIST.txt
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
0/ Flasher le firmware
sudo ./upgrade_tool uf /home/sukoshi/Téléchargements/VORON0/cm68-debian11-voron02pro-all-20231215.img
1/ sudo apt install nano
2/ sudo nano /etc/apt/sources.list
http://ftp.fr.debian.org/
http://security.debian.org
deb http://ftp.fr.debian.org/debian bullseye main contrib
deb-src http://ftp.fr.debian.org/debian bullseye main contrib
deb http://security.debian.org/debian bullseye-security main contrib
deb-src http://security.debian.org/debian bullseye-security main contrib
deb http://ftp.fr.debian.org/debian bullseye-updates main contrib
deb-src http://ftp.fr.debian.org/debian bullseye-updates main contrib
deb http://security.debian.org/debian-security/ bullseye-security main
deb-src http://security.debian.org/debian-security/ bullseye-security main
deb http://deb.debian.org/debian/ bullseye main contrib
deb-src http://deb.debian.org/debian/ bullseye main contrib
deb http://security.debian.org/debian-security/ bullseye-security main
deb-src http://security.debian.org/debian-security/ bullseye-security main
deb http://deb.debian.org/debian/ bullseye main contrib non-free
deb-src http://deb.debian.org/debian/ bullseye main contrib non-free
3/ sudo apt update
4/ kiauh update all
5/ kiauh install fluidd port81
6/ upgrade depuis moonraker
7/ sudo reboot
8/ Start Macro
#####################################################################
# print_start macro
#####################################################################
## *** THINGS TO UNCOMMENT: ***
## Nevermore - if you have one
[gcode_macro PRINT_START]
gcode:
# This part fetches data from your slicer. Such as bed temp, extruder temp, chamber temp and size of your printer.
{% set target_bed = params.BED|int %}
{% set target_extruder = params.EXTRUDER|int %}
{% set target_chamber = params.CHAMBER|default("40")|int %}
{% set x_wait = printer.toolhead.axis_maximum.x|float / 2 %}
{% set y_wait = printer.toolhead.axis_maximum.y|float / 2 %}
# Homes the printer and sets absolute positioning
G28 # Full home (XYZ)
G90 # Absolut position
# Checks if the bed temp is higher than 90c - if so then trigger a heatsoak
{% if params.BED|int > 90 %}
M106 S255 # Turns on the PT-fan
## Uncomment if you have a Nevermore.
#SET_PIN PIN=nevermore VALUE=1 # Turns on the nevermore
G1 X{x_wait} Y{y_wait} Z15 F9000 # Goes to center of the bed
M190 S{target_bed} # Sets target temp for the bed
TEMPERATURE_WAIT SENSOR="temperature_sensor chamber" MINIMUM={target_chamber} # Waits for chamber to reach desired temp
# If the bed temp is not over 90c then it skips the heatsoak and just heats up to set temp with a 5min soak.
{% else %}
G1 X{x_wait} Y{y_wait} Z15 F9000 # Goes to center of the bed
M190 S{target_bed} # Sets target temp for the bed
G4 P300000 # Waits 5 min for the bedtemp to stabilize
{% endif %}
# Heats up the nozzle up to target via slicer
M107 # Turns off the PT-fan
M109 S{target_extruder} # Heats the nozzle to your print temp
# Create a purge line and starts the print
G1 X5 Y4 Z0.4 F10000 # Moves to starting point
G1 X115 E20 F1000 # Purge line
8/ wget -O - https://raw.githubusercontent.com/Frix-x/klippain/main/install.sh | bash
9/