-
-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #149 from Frix-x/develop
* Fixed sensorless homing * Fixed a bug that could happens in some very specific case in graph_vibrations.py when user is not "pi" and started with "sp..." (it matched a Regex) * Improvement to not wait for the nozzle temperature before doing a chamber heatsoak * Fixed the Z_ADJUST feature that could not be applied when the user would override the START_PRINT sequence without specifying a call to the z_offset module. Now Z_ADJUST is applied everytime at the end of the sequence to be sure we make use of it * Moved the START_PRINT sequence override into the override.cfg template file to make it more user-friendly. Also improved the associated comment to make it more clear that defaults are already included for each type of probes * Better management of the resonnance test position by using variables. Now it will use center of bed by default or the user input in the corresponding variable (and not the previously hardcoded position that needed an override). * New full and stock V0 support (bugs to be expected) * Added a logo-banner to Klippain * Enhancement of the "CALIBRATE" macro to adapt to the bed size automatically
- Loading branch information
Showing
23 changed files
with
158 additions
and
48 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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,14 @@ | ||
[stepper_z] | ||
rotation_distance: 4 | ||
microsteps: 32 | ||
full_steps_per_rotation: 200 | ||
|
||
[tmc2209 stepper_z] | ||
interpolate: False | ||
run_current: 0.2 | ||
sense_resistor: 0.110 | ||
# stealthchop_threshold: 999999 | ||
|
||
# We also include the default wiring and speeds from here to avoid duplicating | ||
[include default_wiring_1M.cfg] | ||
[include default_speed.cfg] |
This file contains 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,14 @@ | ||
[stepper_z] | ||
rotation_distance: 8 | ||
microsteps: 32 | ||
full_steps_per_rotation: 200 | ||
|
||
[tmc2209 stepper_z] | ||
interpolate: False | ||
run_current: 0.2 | ||
sense_resistor: 0.110 | ||
# stealthchop_threshold: 999999 | ||
|
||
# We also include the default wiring and speeds from here to avoid duplicating | ||
[include default_wiring_1M.cfg] | ||
[include default_speed.cfg] |
This file contains 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,8 @@ | ||
[stepper_z] | ||
step_pin: Z_STEP | ||
dir_pin: Z_DIR | ||
enable_pin: !Z_ENABLE | ||
endstop_pin: Z_STOP | ||
|
||
[tmc2209 stepper_z] | ||
uart_pin: Z_TMCUART |
This file contains 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
This file contains 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,13 @@ | ||
[stepper_x] | ||
position_min: 0 | ||
position_endstop: 120 | ||
position_max: 120 | ||
|
||
[stepper_y] | ||
position_min: 0 | ||
position_endstop: 120 | ||
position_max: 120 | ||
|
||
[stepper_z] | ||
position_max: 120 | ||
position_min: -5 |
This file contains 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,5 @@ | ||
# When no probe is installed on the machine, there is still the need to define a corresponding default START_PRINT sequence. | ||
# If you want to write your own sequence, have a look at your overrides.cfg file! | ||
[gcode_macro _USER_VARIABLES] | ||
variable_startprint_actions: "bed_soak", "chamber_soak", "extruder_heating", "purge", "clean", "z_offset", "primeline" | ||
gcode: |
This file contains 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,8 @@ | ||
# Bed screws leveling definition | ||
[bed_screws] | ||
screw1: 60,5 | ||
screw1_name: front screw | ||
screw2: 5,115 | ||
screw2_name: back left | ||
screw3: 115,115 | ||
screw3_name: back right |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
This file contains 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
This file contains 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
This file contains 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,16 @@ | ||
[gcode_macro TEST_RESONANCES] | ||
rename_existing: BASE_TEST_RESONANCES | ||
description: Runs input shaper test at the center of the bed | ||
gcode: | ||
{% set Tx, Ty = printer["gcode_macro _USER_VARIABLES"].resonnance_test_point_xy|map('float') %} | ||
{% set Tz = printer["gcode_macro _USER_VARIABLES"].resonnance_test_z_clearance|float %} | ||
|
||
{% if Tx == -1 and Ty == -1 %} | ||
{% set max_x = printer.toolhead.axis_maximum.x|float %} | ||
{% set max_y = printer.toolhead.axis_maximum.y|float %} | ||
|
||
BASE_TEST_RESONANCES POINT={max_x / 2},{max_y / 2},{Tz} {rawparams} | ||
{% else %} | ||
BASE_TEST_RESONANCES POINT={Tx},{Ty},{Tz} {rawparams} | ||
{% endif %} | ||
|
This file contains 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
This file contains 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
Oops, something went wrong.