This repository was archived by the owner on Aug 6, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 63
Main #47
Draft
DarkmoonThomas
wants to merge
1
commit into
jamincollins:main
Choose a base branch
from
DarkmoonThomas:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Main #47
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # START_PRINT | ||
|
|
||
| ## Why | ||
|
|
||
| Adding a working Adaptive Purge line macro that you can call by copying start_print.cfg to your overrides.cfg and uncommenting "AMP MINX={MINX} MINY={MINY}" (second line from the bottom). The need for this arose when Adaptive Meshing is enabled, it has proven to drag the nozzle on the plate for some reason. This adaptive purge removes the standard purge from the bottom left of the plate. This also aides in faster meshing times, as you will only mesh the print area and MINX -5 and MINY - 5. | ||
|
|
||
| * Finds the "0" of X of the PRINT AREA only, not the WHOLE PLATE, and sets it as "MINX" | ||
| * Finds the "0" of Y of the PRINT AREA only, not the WHOLE PLATE, and sets it as "MINY" | ||
| * Applies a thick purge line at MINX - 5, MINY - 5. | ||
| * Continues your print as normal, no more purge line at the bottom left of the plate. | ||
|
|
||
| ## Setup | ||
|
|
||
| Install this feature and update your slicer's start gcode to send the **MINX** and **MINY** as parameters, and **REMOVE** the factory purge line. | ||
|
|
||
| Here is an example for Creality Print: | ||
|
|
||
| ```raw | ||
| M140 S0 | ||
| M104 S0 | ||
| START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single] CHAMBER_TEMP=[overall_chamber_temperature] MATERIAL=[filament_type[initial_tool]] MINX=[first_layer_print_min_0] MINY=[first_layer_print_min_1] | ||
| T[initial_no_support_extruder] | ||
| M204 S2000 | ||
| G1 Z3 F600 | ||
| ``` | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be named for the feature it's documenting.