From 90eb96696193321ff9ad14a95d1dbe89fd6444f3 Mon Sep 17 00:00:00 2001 From: lawgicau Date: Thu, 27 Aug 2020 14:09:21 +1000 Subject: [PATCH] Add further instruction for custom start gcode, add notes for flow rate carry over to other tests. --- calibration.html | 76 +++++++++++++++++++++++++++++++++++++++++------- css/styles.css | 12 ++++++-- 2 files changed, 75 insertions(+), 13 deletions(-) diff --git a/calibration.html b/calibration.html index ca5d1da..014afe2 100644 --- a/calibration.html +++ b/calibration.html @@ -172,10 +172,20 @@

Additional start gcode

-

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. This can be used to add a hot end purge command. For the majority of users, you can skip this section.

+

If you have additional start commands, tick the box and enter the gcode. This can be used for an extruder prime sequence, overwriting the standard flow rate, setting K factor and more. Tick the box for more details.

- +
+

For the majority of users, you can skip this section. Any gcode entered here will be inserted after temperatures are set and homing is complete. Start gcode is saved by the browser, you should only have to enter it once. Example uses include:

+
    +
  • Copying gcode commands from your slicer to draw an intro/prime/purge line. By default this is left out to accommodate delta printers.
  • +
  • Telling the firmware to alter the flow rate of the gcode to follow. This does not mean the exact flow rate you have set in your own slicer. For example, using M221 S120 would set the flow rate to 120% of what it was originally sliced as in Simpilfy3D. Use this to compensate for obvious over or under extrusion you may encounter with these tests. Additional information available at the base of the Flow Rate tab.
  • +
  • Setting the K factor for linear advance. For example, M900 K0.11
  • +
  • Custom ABL sequence. By default, only G28 is present. This gcode will be inserted immediately afer that so custom commands can be used here.
  • +
  • Anythng else you have in your start gcode, such as setting acceleration values, E-steps, etc.
  • +
+ +