-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add IS configs, Dragon HF, etc #48
base: main
Are you sure you want to change the base?
Conversation
So that KAMP can be used
In anticipation of adxl configs
Rampon fw
Great for nutso printers like mine 😁
Made by bassamanator Adapted to tmc2130
Added:
Fixed:
Changed:
|
[include ./mk3s/einsy-rambo.cfg] | ||
|
||
### BASE SETUP | ||
[include klipper-prusa-mk3s/mk3s/display.cfg] | ||
[include klipper-prusa-mk3s/mk3s/steppers.cfg] | ||
[include klipper-prusa-mk3s/mk3s/tmc2130.cfg] | ||
[include ./mk3s/display.cfg] | ||
[include ./mk3s/steppers.cfg] | ||
[include ./mk3s/tmc2130.cfg] | ||
|
||
### EXTRUSION | ||
|
||
# Extruder | ||
[include klipper-prusa-mk3s/extruders/prusa.cfg] | ||
# [include klipper-prusa-mk3s/extruders/bmg.cfg] | ||
[include ./extruders/prusa.cfg] | ||
# [include./extruders/bmg.cfg] | ||
|
||
# Hotend | ||
[include klipper-prusa-mk3s/hotends/v6.cfg] | ||
# [include klipper-prusa-mk3s/hotends/dragon-standard-flow.cfg] | ||
# [include klipper-prusa-mk3s/hotends/rapido.cfg] | ||
[include ./hotends/v6.cfg] | ||
# [include ./hotends/dragon-standard-flow.cfg] | ||
# [include ./hotends/dragon-high-flow.cfg] | ||
# [include ./hotends/rapido.cfg] | ||
|
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.
These include paths will probably not work with the current recommended installation instructions.
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.
Sceptical on the idea to push a moonraker config
{% set my_current = params.CURRENT|default(0.20)|float %} ; adjust crash current on the fly :D | ||
### | ||
{% set oldcurrent = printer.configfile.settings["tmc2130 stepper_z"].run_current %} | ||
{% set oldhold = printer.configfile.settings["tmc2130 stepper_z"].hold_current %} |
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.
Not sure if hold_current
is set, imo we should not deal with it anymore.
{% set fast_move_z = printer.configfile.settings["printer"].max_z_velocity %} | ||
{% set fast_move = printer.configfile.settings["printer"].max_velocity %} | ||
M117 {printer.homed_axes} | ||
{% if printer.homed_axes != 'xyz' %} |
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.
Before doing any move, we need to save & restore states
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.
Nice
I had trouble when using hold current and I believe the most up to date
documents may discourage their use.
…On Wed, Feb 7, 2024, 20:20 Nevax ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In hotends/dragon-high-flow.cfg
<#48 (comment)>
:
> @@ -0,0 +1,18 @@
+# WARNING. DO NOT EDIT THIS FILE.
+# To override settings from this file, you can copy and paste the relevant
+# sections into your printer.cfg and change it there.
+
+
+[extruder]
+max_extrude_only_distance: 200
201 instead of 200 will help fix rounding issue in Klipper.
------------------------------
In printer.template.cfg
<#48 (comment)>
:
> +[include ./mk3s/einsy-rambo.cfg]
### BASE SETUP
-[include klipper-prusa-mk3s/mk3s/display.cfg]
-[include klipper-prusa-mk3s/mk3s/steppers.cfg]
-[include klipper-prusa-mk3s/mk3s/tmc2130.cfg]
+[include ./mk3s/display.cfg]
+[include ./mk3s/steppers.cfg]
+[include ./mk3s/tmc2130.cfg]
### EXTRUSION
# Extruder
-[include klipper-prusa-mk3s/extruders/prusa.cfg]
-# [include klipper-prusa-mk3s/extruders/bmg.cfg]
+[include ./extruders/prusa.cfg]
+# [include./extruders/bmg.cfg]
# Hotend
-[include klipper-prusa-mk3s/hotends/v6.cfg]
-# [include klipper-prusa-mk3s/hotends/dragon-standard-flow.cfg]
-# [include klipper-prusa-mk3s/hotends/rapido.cfg]
+[include ./hotends/v6.cfg]
+# [include ./hotends/dragon-standard-flow.cfg]
+# [include ./hotends/dragon-high-flow.cfg]
+# [include ./hotends/rapido.cfg]
These include paths will probably not work with the current recommended
installation instructions.
------------------------------
On moonraker.conf
<#48 (comment)>
:
Sceptical on the idea to push a moonraker config
------------------------------
In macros/MECHANICAL_GANTRY_CALIBRATION.cfg
<#48 (comment)>
:
> +#
+# HERE BE DRAGONS!
+# YOU WERE WARNED!
+#
+# Here's a video of this in action
+# https://www.youtube.com/watch?v=aVdIeIIpUAk
+# and the endstops for 2020 v-slot
+# https://www.thingiverse.com/thing:4848479
+
+[gcode_macro MECHANICAL_GANTRY_CALIBRATION]
+gcode:
+ ### SET THIS DEFAULT CARFULLY - start really low
+ {% set my_current = params.CURRENT|default(0.20)|float %} ; adjust crash current on the fly :D
+ ###
+ {% set oldcurrent = printer.configfile.settings["tmc2130 stepper_z"].run_current %}
+ {% set oldhold = printer.configfile.settings["tmc2130 stepper_z"].hold_current %}
Not sure if hold_current is set, imo we should not deal with it anymore.
------------------------------
In macros/MECHANICAL_GANTRY_CALIBRATION.cfg
<#48 (comment)>
:
> +# https://www.thingiverse.com/thing:4848479
+
+[gcode_macro MECHANICAL_GANTRY_CALIBRATION]
+gcode:
+ ### SET THIS DEFAULT CARFULLY - start really low
+ {% set my_current = params.CURRENT|default(0.20)|float %} ; adjust crash current on the fly :D
+ ###
+ {% set oldcurrent = printer.configfile.settings["tmc2130 stepper_z"].run_current %}
+ {% set oldhold = printer.configfile.settings["tmc2130 stepper_z"].hold_current %}
+ {% set x_max = printer.toolhead.axis_maximum.x %}
+ {% set y_max = printer.toolhead.axis_maximum.y %}
+ {% set z_max = printer.toolhead.axis_maximum.z %}
+ {% set fast_move_z = printer.configfile.settings["printer"].max_z_velocity %}
+ {% set fast_move = printer.configfile.settings["printer"].max_velocity %}
+ M117 {printer.homed_axes}
+ {% if printer.homed_axes != 'xyz' %}
Before doing any move, we need to save & restore states
------------------------------
On macros/MECHANICAL_GANTRY_CALIBRATION.cfg
<#48 (comment)>
:
Nice
—
Reply to this email directly, view it on GitHub
<#48 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABGDEEZQJO6MHQA6P37YMFDYSQR53AVCNFSM6AAAAABBOM2UVSVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMYTQNRZGEYDKNBZGY>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Just a simple gitignore. Few other changes to come