<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Pause after bed heat</title>
        <description> I have a homebrewed printer and my aluminum build plate is a bit bigger than my heater and the edge takes a little bit longer to reach temperature.  I would like to insert a G4 Pxxx command after the M190 command.  I can of course do this by hand but it would be great to have the ability to have Slic3r do it for me.

Any ideas on a way to handle this?

Thanks...</description>
        <link>https://reprap.org/forum/read.php?263,587134,587134#msg-587134</link>
        <lastBuildDate>Thu, 05 Mar 2026 13:03:33 -0500</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?263,587134,592962#msg-592962</guid>
            <title>Re: Pause after bed heat</title>
            <link>https://reprap.org/forum/read.php?263,587134,592962#msg-592962</link>
            <description><![CDATA[ As far as I know, the list is the same as is put into the end of the gcode file you save from Slic3r.]]></description>
            <dc:creator>Mikk36</dc:creator>
            <category>Slic3r</category>
            <pubDate>Fri, 04 Dec 2015 18:37:29 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?263,587134,589317#msg-589317</guid>
            <title>Re: Pause after bed heat</title>
            <link>https://reprap.org/forum/read.php?263,587134,589317#msg-589317</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>RRuser</strong><br />
M190 S[first_layer_bed_temperature]<br />
<br />
Does this mean that you would not put your desired temp in the start code, but would put it in the slicer settings instead?</div></blockquote>
<br />
That is correct, yes.  Using variables in the start code (and tool change code if you have multiple extruders) is often very convenient - it means you can use the same code for ABS and PLA, for example, and you do not have to remember to change the start code when tweaking things.  Unfortunately there does not appear to be a definitive list of all the available variable names.  The placeholder variable for the extruder temperature is [first_layer_temperature]<br />
<br />
Dave]]></description>
            <dc:creator>dmould</dc:creator>
            <category>Slic3r</category>
            <pubDate>Thu, 26 Nov 2015 07:36:24 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?263,587134,589146#msg-589146</guid>
            <title>Re: Pause after bed heat</title>
            <link>https://reprap.org/forum/read.php?263,587134,589146#msg-589146</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>RRuser</strong><br />
I've always wondered which command had priority: Start Gcode, or the slicer setting. I guess the Start does.</div></blockquote>
<br />
Neither statement "takes priority".  They are both executed - but in the order provided.  The start G Code is put onto the front of the G Code generated by Slic3r, so the Slic3r generated code will actually trump the start G code by virtue of being executed later.<br />
<br />
To answer your subsequent question:<br />
<br />
Yes - slic3r allows many variables to be inserted into the Start and End G Code like this.<br />
<br />
Check out <a href="http://www.soliforum.com/topic/231/improved-start-and-end-gcode/" target="_blank"  rel="nofollow">this</a> link.]]></description>
            <dc:creator>jbernardis</dc:creator>
            <category>Slic3r</category>
            <pubDate>Wed, 25 Nov 2015 23:14:49 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?263,587134,589143#msg-589143</guid>
            <title>Re: Pause after bed heat</title>
            <link>https://reprap.org/forum/read.php?263,587134,589143#msg-589143</link>
            <description><![CDATA[ M190 S[first_layer_bed_temperature]<br />
<br />
Does this mean that you would not put your desired temp in the start code, but would put it in the slicer settings instead?]]></description>
            <dc:creator>RRuser</dc:creator>
            <category>Slic3r</category>
            <pubDate>Wed, 25 Nov 2015 22:57:12 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?263,587134,587899#msg-587899</guid>
            <title>Re: Pause after bed heat</title>
            <link>https://reprap.org/forum/read.php?263,587134,587899#msg-587899</link>
            <description><![CDATA[ Slic3r detects if a setting is defined in the start code and will then not output its own command.  Better than fixing the temperature in your start code is to use Slic3r's variable names.  e.g. in the start code put:<br />
<br />
M190 S[first_layer_bed_temperature]<br />
G4 S120<br />
<br />
Enter exactly as given, including the square brackets.  The variable "first_layer_bed_temperature" will be replaced by the bed temperature setting in the G-code that is output.  Substitute your desired delay in the G4 command line.<br />
<br />
Dave]]></description>
            <dc:creator>dmould</dc:creator>
            <category>Slic3r</category>
            <pubDate>Mon, 23 Nov 2015 07:49:29 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?263,587134,587693#msg-587693</guid>
            <title>Re: Pause after bed heat</title>
            <link>https://reprap.org/forum/read.php?263,587134,587693#msg-587693</link>
            <description><![CDATA[ You actually don't have to trick it quite that much.  If you hover over the Start G-code block it says that if it sees M104 or M190 commands in the start g-code it will not prepend those commands so you can alter the order of things.  I use:<br />
<br />
<pre class="bbcode">
M140S[first_layer_bed_temperature] ; set bed temperature
M190 ; wait for bed to reach temperature</pre>
<br />
in mine, and that can be placed anywhere in the start G-code sequence you want it.]]></description>
            <dc:creator>IMBoring25</dc:creator>
            <category>Slic3r</category>
            <pubDate>Sun, 22 Nov 2015 20:12:18 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?263,587134,587405#msg-587405</guid>
            <title>Re: Pause after bed heat</title>
            <link>https://reprap.org/forum/read.php?263,587134,587405#msg-587405</link>
            <description><![CDATA[ I've always wondered which command had priority: Start Gcode, or the slicer setting. I guess the Start does.]]></description>
            <dc:creator>RRuser</dc:creator>
            <category>Slic3r</category>
            <pubDate>Sun, 22 Nov 2015 05:17:31 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?263,587134,587165#msg-587165</guid>
            <title>Re: Pause after bed heat</title>
            <link>https://reprap.org/forum/read.php?263,587134,587165#msg-587165</link>
            <description><![CDATA[ Ahhh.....  Very clever.  <br />
<br />
Thank you!]]></description>
            <dc:creator>RKMore</dc:creator>
            <category>Slic3r</category>
            <pubDate>Sat, 21 Nov 2015 11:31:12 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?263,587134,587147#msg-587147</guid>
            <title>Re: Pause after bed heat</title>
            <link>https://reprap.org/forum/read.php?263,587134,587147#msg-587147</link>
            <description><![CDATA[ If you set the bed temperature to zero when you slice, then go to printer settings&gt;custom g-code&gt;start g-code and enter the M190 Sxxx bed temperature command followed by G4 Syy, it will heat the bed to xxx temperature then wait yy seconds before continuing.]]></description>
            <dc:creator>the_digital_dentist</dc:creator>
            <category>Slic3r</category>
            <pubDate>Sat, 21 Nov 2015 10:58:18 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?263,587134,587134#msg-587134</guid>
            <title>Pause after bed heat</title>
            <link>https://reprap.org/forum/read.php?263,587134,587134#msg-587134</link>
            <description><![CDATA[ I have a homebrewed printer and my aluminum build plate is a bit bigger than my heater and the edge takes a little bit longer to reach temperature.  I would like to insert a G4 Pxxx command after the M190 command.  I can of course do this by hand but it would be great to have the ability to have Slic3r do it for me.<br />
<br />
Any ideas on a way to handle this?<br />
<br />
Thanks...]]></description>
            <dc:creator>RKMore</dc:creator>
            <category>Slic3r</category>
            <pubDate>Sat, 21 Nov 2015 10:32:38 -0500</pubDate>
        </item>
    </channel>
</rss>
