@Phaedrux said in when will the new Z-height actually be saved?:
@holco62 said in when will the new Z-height actually be saved?:
What did the line "G1 Z15.0 F1000; short move" that has now been removed?
Nothing useful.
Haha, oké
@Phaedrux said in when will the new Z-height actually be saved?:
@holco62 said in when will the new Z-height actually be saved?:
What did the line "G1 Z15.0 F1000; short move" that has now been removed?
Nothing useful.
Haha, oké
Another question
If the printer runs the G32 calibration, the nozzle leaves a little filament on each calibration spot, now I wondered if it is possible that after each print job, for example, 50mm retraction takes place so that the hotend is always free of filament, and that after the G32 calibration the 50mm (or more) is immediately re-fed.
Works perfectly now
What did the line "G1 Z15.0 F1000; short move" that has now been removed?
Btw, I think it's really remarkable that you can remember all those codes
The G32 is in the Extruder Start G-code.
Cura doesn't let me copy the start G-code, so I took 2 pictures
I'll post the rest in a moment
G32 works well in Cura (Extruder Start Gcode), but with the start of a print when all temps have been reached the effector first slowly approaches the bed, just before the nozzle hits the bed, it's homing and then starts the G32 calibration and goes printing.
Is there any way to skip that initial slowly going to the bed?
I am also curious if other changes / settings are needed with regard to Cura 4.8 which I have now set as a standard Anycubic Predator, especially stringing (PLA) gives me a hard time to get it right with a Mosquito hotend.
I shot a short video of it
@Phaedrux said in when will the new Z-height actually be saved?:
Post your Cura start gcode. That's where it would be defined.
Technically you don't need to use start.g at all. You could do it all in Cura.
M116; Wait
G28 ; home printer
G32 ; bed.g for levelingOr just use Start.g to preheat. Since it's a progression you can split it up however it makes sense. If you want you can even call a macro file in your slicer start gcode section.
Sorry for quotting myself yesterday I was supposed to quote you in my penultimate post, but better late than never, you nailed it again so thank you
@holco62 said in when will the new Z-height actually be saved?:
Ok it starts to get a bit clearer (very small bit )
Btw, how can I prevent the printer from homing after G32?
I would like to have this sequence,
First manually set bed temp / hotend temp in Duet control
Load print command> homing axes> G32> start printing, so no homing after G32.
Removed the start.g file and added G32 in the Cura exstruder start-g code, everything now works exactly as I want
Ok it starts to get a bit clearer (very small bit )
Btw, how can I prevent the printer from homing after G32?
I would like to have this sequence,
First manually set bed temp / hotend temp in Duet control
Load print command> homing axes> G32> start printing, so no homing after G32.
@Phaedrux
Ok, I was under the impression that the Cura slicer controls the temp
I've tried
M109 ; Set Extruder Temperature and Wait
M116 ; Wait for tools
in the start.g file with as last line
G32 ; call bed.g
but when I issue a print command generated by Cura the printer directly starts with G32 and after calibration the bed starts to warm up.
What am I doing wrong?
@fcwilt said in when will the new Z-height actually be saved?:
@holco62 said in when will the new Z-height actually be saved?:
...is there a way to bring up the temps first?
Short answer - yes - @Phaedrux has shown a simple approach.
Long answer - there are several different ways to do all that is needed to start a print.
For example, instead of putting everything in bed.g you leave just the essential commands there (the commands you already have) and put everything else (setting temps, waiting for temps, etc) in start.g including the G32 to invoke bed.g.
As you become more comfortable with the firmware there are lots of things possible.
I'm including my equivalent of "start.g" just to give you an idea of the possibilities BUT I am NOT suggesting that you try to adopt anything I have done at this time.
There are lots of extra ; characters there that I added because {1} appeared at the start of empty lines when I pasted the code
; select tool and configure based on filament selected T0 ; select tool 0 so extruder commands below will work M703 ; configure selected filament (sets bed/extruder temps, extrusion multiplier) ; check for selected filament if move.extruders[0].filament = "" M291 R"No Filament Selected" P"Cannot Continue" S2 T0 abort ; check bed heater active temp setting if heat.heaters[0].active = 0 M291 R"Bed Heater Active Temp = 0" P"Cannot Continue" S2 T0 abort ; check extruder heater active temp setting if heat.heaters[1].active = 0 M291 R"Extruder Heater Active Temp = 0" P"Cannot Continue S2 T0 abort ; ; check if homed - allows homing (OK button) or canceling (CLOSE button) ; if !move.axes[0].homed || !move.axes[1].homed || !move.axes[2].homed M291 R"Printer has not been homed" P"Home and Continue?" S3 T0 G28 ; ; setup to print ; M291 R"Preparing to print" P"Please wait..." T0 ; M106 P2 S255 ; lights on M106 P3 S255 ; lights on M106 P4 S255 ; lights on ; G90 ; absolute moves G1 Z100 F1200 ; position for cleaning G1 X0 Y-145 F6000 ; position for cleaning ; M291 R"Heating Extruder/Bed" P"Please wait..." T0 ; M116 ; wait for temps to reach set points ; M291 R"Priming Extruder" P"Please wait..." T0 ; G92 E0 ; reset the extruder logical position M83 ; extruder relative mode G1 E10 F120 ; prime the extruder M400 ; wait for extruding to finish G92 E0 ; reset the extruder logical position ; M98 P"beep_alert_1.g" ; beep paneldue ; M291 R"Clean Nozzle and Bed" P"Click OK to begin printing" S3 T0 ; M98 P"mesh_comp_map_load.g" ; load height map as needed ; M118 L0 P4 S"FT5|Print begun"
Thanks, I'll see if I can put something together myself.
@engikeneer said in when will the new Z-height actually be saved?:
@holco62 he meant create a file called start.g in your duet system directory (/sys folder). In that file, put the line:
G32
To answer your other question on the files, please attach your bed.g and homedelta.g files from the system directory (i can see the file names in the screenshot)
Thanks
start.g is working, one thing though, it das the calibration with a gold bed/hotend, is there a way to bring up the temps first?
The bed.g and the homedelta.g files
@fcwilt said in when will the new Z-height actually be saved?:
@holco62 said in when will the new Z-height actually be saved?:
It looks that I don't have a start gcode in my System Directory, or I can't find it
Hi,
They are talking (I think) about the place in S3D where you can enter gcode to be executed before the start of the print.
You can also, if you wish, create "start.g" in your system directory and put gcode there - the firmware executes "start.g" at the start of the print.
Frederick
Made a start.g directory with a G32 file in it, but for the rest I am lost
This all I have in the System Directory
Tomorrow is a new day, I have to go to bed now.
But thanks for all the help