|
|
|
@ -134,6 +134,15 @@
|
|
|
|
|
<p>The form below will create a customised version of the <a href="https://www.thingiverse.com/thing:1278865" target="_blank">XYZ 20mm calibration cube by iDig3Dprinting</a>. It is fast to print and gives a good indication if there is any fundamental problem with the printer.</p>
|
|
|
|
|
<a href="#" data-featherlight="img/cube.jpg"><img class="thumb" src="img/cube.jpg" /></a>
|
|
|
|
|
<form name="baselineForm" id="baselineForm" onsubmit="return false;">
|
|
|
|
|
<h4>Additional start gcode</h4>
|
|
|
|
|
<p>If you have additional start commands, tick the box and enter the gcode. This will be inserted after temperatures are set and homing/ABL is complete. For the majority of users, you can skip this section.</p>
|
|
|
|
|
<label>Additional start gcode:<input name="start" type="checkbox" onchange="toggle(!this.checked, '#baselineStart')" value="extraStart"></label>
|
|
|
|
|
<textarea id="baselineStart" name="startgcode"></textarea>
|
|
|
|
|
<script>
|
|
|
|
|
if(document.baselineForm.start.checked == false){
|
|
|
|
|
$("#baselineStart").hide();
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<h4>Bed dimensions</h4>
|
|
|
|
|
<p>Inputting the correct number will attempt to move the print into the centre of the bed. If the 0,0 at centre button is checked, the bed size is irrelevant. Please check the gcode to ensure it will fit on your bed.</p>
|
|
|
|
|
<label>0,0 at centre of bed (Delta):<input name="centre" type="checkbox" onchange="toggle(this.checked, '#baselineXY')" value="centre"></label>
|
|
|
|
@ -509,6 +518,15 @@
|
|
|
|
|
<p>The following form will create a retraction tower to conveniently test back to back parameters in the same print. Of the three available parameters, it is best to change only one per test print. For example, keep the retraction speed and extra restart distance the same, but vary the retraction distance over each segment. Changing more than one parameter makes is hard to tell what made the difference. The print is quick, so repeat the test varying other parameters until you are happy with them all.</p>
|
|
|
|
|
<p>Here is the STL if you would like to slice a similar test yourself: <a href="files/retractiontest.stl">retractiontest.stl</a></p>
|
|
|
|
|
<form name="retractionForm" id="retractionForm" onsubmit="return false;">
|
|
|
|
|
<h4>Additional start gcode</h4>
|
|
|
|
|
<p>If you have additional start commands, tick the box and enter the gcode. This will be inserted after temperatures are set and homing/ABL is complete. For the majority of users, you can skip this section.</p>
|
|
|
|
|
<label>Additional start gcode:<input name="start" type="checkbox" onchange="toggle(!this.checked, '#retractionStart')" value="extraStart"></label>
|
|
|
|
|
<textarea id="retractionStart" name="startgcode"></textarea>
|
|
|
|
|
<script>
|
|
|
|
|
if(document.retractionForm.start.checked == false){
|
|
|
|
|
$("#retractionStart").hide();
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<h4>Bed dimensions</h4>
|
|
|
|
|
<p>Inputting the correct number will attempt to move the print into the centre of the bed. If the centre button is checked, the bed size is irrelevant. Please check the gcode to ensure it will fit on your bed.</p>
|
|
|
|
|
<label>0,0 at centre of bed (Delta):<input name="centre" type="checkbox" onchange="toggle(this.checked, '#retractionXY')" value="centre"></label>
|
|
|
|
@ -622,6 +640,15 @@
|
|
|
|
|
<p>Your 3D printer firmware will have a minimum hot end temperature extrusion is allowed and a maximum hot end temperature for safety. Make sure to keep within these boundaries to avoid errors.</p>
|
|
|
|
|
<p>Here is the STL if you would like to slice a similar test yourself: <a href="files/temperaturetower.stl">temperaturetower.stl</a></p>
|
|
|
|
|
<form name="temperatureForm" id="temperatureForm" onsubmit="return false;">
|
|
|
|
|
<h4>Additional start gcode</h4>
|
|
|
|
|
<p>If you have additional start commands, tick the box and enter the gcode. This will be inserted after temperatures are set and homing/ABL is complete. For the majority of users, you can skip this section.</p>
|
|
|
|
|
<label>Additional start gcode:<input name="start" type="checkbox" onchange="toggle(!this.checked, '#temperatureStart')" value="extraStart"></label>
|
|
|
|
|
<textarea id="temperatureStart" name="startgcode"></textarea>
|
|
|
|
|
<script>
|
|
|
|
|
if(document.temperatureForm.start.checked == false){
|
|
|
|
|
$("#temperatureStart").hide();
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<h4>Bed dimensions</h4>
|
|
|
|
|
<p>Inputting the correct number will attempt to move the print into the centre of the bed. If the centre button is checked, the bed size is irrelevant. Please check the gcode to ensure it will fit on your bed.</p>
|
|
|
|
|
<label>0,0 at centre of bed (Delta):<input name="centre" type="checkbox" onchange="toggle(this.checked, '#tempXY')" value="centre"></label>
|
|
|
|
@ -784,6 +811,15 @@
|
|
|
|
|
<a href="#" data-featherlight="img/m205.jpg"><img class="thumb" src="img/m205.jpg" /></a>
|
|
|
|
|
<p>Use the following form to customise the gcode to your liking:</p>
|
|
|
|
|
<form name="accelerationForm" id="accelerationForm" onsubmit="return false;">
|
|
|
|
|
<h4>Additional start gcode</h4>
|
|
|
|
|
<p>If you have additional start commands, tick the box and enter the gcode. This will be inserted after temperatures are set and homing/ABL is complete. For the majority of users, you can skip this section.</p>
|
|
|
|
|
<label>Additional start gcode:<input name="start" type="checkbox" onchange="toggle(!this.checked, '#accelerationStart')" value="extraStart"></label>
|
|
|
|
|
<textarea id="accelerationStart" name="startgcode"></textarea>
|
|
|
|
|
<script>
|
|
|
|
|
if(document.accelerationForm.start.checked == false){
|
|
|
|
|
$("#accelerationStart").hide();
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
<h4>Bed dimensions</h4>
|
|
|
|
|
<p>Inputting the correct number will attempt to move the print into the centre of the bed. If the centre button is checked, the bed size is irrelevant. Please check the gcode to ensure it will fit on your bed.</p>
|
|
|
|
|
<label>0,0 at centre of bed (Delta):<input name="centre" type="checkbox" onchange="toggle(this.checked, '#accelerationXY')" value="centre"></label>
|
|
|
|
|