Znaleziono 1 wynik

autor: JGFTW
09 lut 2024, 23:01
Forum: Slicery
Temat: [Prusa Slicer] G-Kod na początku i na końcu drukowania
Odpowiedzi: 6
Odsłony: 796

Re: [Prusa Slicer] G-Kod na początku i na końcu drukowania

dziobu pisze: 09 lut 2024, 22:57 Sprawdziłeś czy zmienne jak "material_print_temperature_layer_0" są dobre?
Raczej nie będą, ja widzę taki zapis u siebie:

Kod: Zaznacz cały

M104 S{first_layer_temperature[0]} ; set final nozzle temp
M190 S{first_layer_bed_temperature[0]} ; wait for bed temp to stabilize
M109 S{first_layer_temperature[0]} ; wait for nozzle temp to stabilize
Lub bez wskazania numeru ekstrudera:

Kod: Zaznacz cały

M104 S[first_layer_temperature] ; set extruder temp
M140 S[first_layer_bed_temperature] ; set bed temp
M190 S[first_layer_bed_temperature] ; wait for bed temp
M109 S[first_layer_temperature] ; wait for extruder temp
Zgadzam się z tym M501 - bez sensu. Nawet obejdziesz się bez M500 jak robisz mapę stołu przed każdym wydrukiem.

Dodatkowo można się pochylić na tym:
Michał_L pisze: 09 lut 2024, 22:51 G1 Z200
Mam w profilu Endera w gcodzie końcowym taki fragment powodujący, że idzie do góry po wydruku:

Kod: Zaznacz cały

{if max_layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+2, max_print_height)} F600 ; Move print head up{endif}
G1 X5 Y{print_bed_max[1]*0.85} F{travel_speed*60} ; present print
{if max_layer_z < max_print_height-10}G1 Z{z_offset+min(max_layer_z+70, max_print_height-10)} F600 ; Move print head further up{endif}
{if max_layer_z < max_print_height*0.6}G1 Z{max_print_height*0.6} F600 ; Move print head further up{endif}
Może się przyda.

Wróć do „[Prusa Slicer] G-Kod na początku i na końcu drukowania”