Sirnicha
Posts: 6
Joined: Thu Jun 25, 2015 1:47 am

Starting script working out before heating up!?

Hello folks,
I would like to do the following like in the past with slic3r:
At the beginning of a print I want to move XYZ to zero (after homing) where I placed a bit of bluetape to the bed.
After that move the nozzle should heat up.
The bluetape seales the nozzle, so no oozing happens. This works very well for me!
The problem in S3D is that the starting script is worked out AFTER the heating up commands happened! :-(
Does anybody know how I can change the order? First starting script, then heating up!
Help very appreciated! :-)

Sincerely,
Felix
User avatar
dkightley
Posts: 2405
Joined: Tue Mar 10, 2015 4:09 pm

Re: Starting script working out before heating up!?

Its the starting script that includes the gcode instructions to switch on the extruder and bed heaters. You simply need to modify the gcode before the switch on commands??
Doug Kightley
Volunteer at the National Tramway Museum http://www.tramway.co.uk
Railway modeller and webmaster at http://www.talkingtgauge.net
Sirnicha
Posts: 6
Joined: Thu Jun 25, 2015 1:47 am

Re: Starting script working out before heating up!?

In my starting script there are only the two commands: homing all axes and the move to zero.
But in the generated G-Code there are the heating up commands appesr before the starting script.
The heating commands are generated by S3D, not from the starting script.
That is my problem. I want to execute the starting script at first, before the S3D generated things (heating) happen.
I hope I explained it good enough :oops:

Thanks!

Felix
CompoundCarl
Posts: 2005
Joined: Wed Aug 05, 2015 7:23 am

Re: Starting script working out before heating up!?

You just need to place the heating commands manually into your starting script then wherever you want them. For example:

G28
M190 S[bed0_temperature]
M109 S[extruder0_temperature]
etc

Whenever you use the [extruder*_temperature] or [bed*_temperature] variables, then it knows you're placing the heating commands on your own, so it won't add them automatically at the start.

There's about 50 similar threads already on the forum, but you can read more about it here: viewtopic.php?f=8&t=1959

Return to “Troubleshooting and Bug Reports”