Autocommit from 2025-12-02 18:00:05
Klipper version: v0.13.0-411-g938300f3 Moonraker version: v0.9.3-128-g960e933 Mainsail version: v2.15.0
This commit is contained in:
@@ -24,7 +24,7 @@ variable_disable_autoload :False # disable filament autoload feature by s
|
||||
variable_disable_autounload :False # disable filamen unload by unload button
|
||||
variable_disable_runout :False # disable runout by setting this variable True
|
||||
variable_disable_autochange :True # disable filament auto change after runout detection
|
||||
variable_disable_tangle :True # disable tangle by setting this variable True
|
||||
variable_disable_tangle :False # disable tangle by setting this variable True
|
||||
variable_pause_timeout :3600 # printer timeout setting in seconds, avoids disabling of steppers and heaters after klipper default timeout of 600s
|
||||
variable_enable_beep :False # uses M300 sound feature, set it True to enable
|
||||
variable_park_position_x :20 # edit your X parking position here for pause macro triggered by runout
|
||||
|
||||
BIN
moonraker-sql.db
BIN
moonraker-sql.db
Binary file not shown.
@@ -617,7 +617,7 @@ gcode:
|
||||
|
||||
{% set EXTRUDER = params.EXTRUDER|int %}
|
||||
{% set BED = params.BED|int %}
|
||||
{% set FILAMENT = params.FILAMENT|int %}
|
||||
{% set FILAMENT = params.FILAMENT|default("UNKNOWN") %}
|
||||
|
||||
SET_LED LED="OrbiLED" RED=1 GREEN=1 BLUE=0 WHITE=0 SYNC=0 INDEX=1 TRANSMIT=1; Yellow
|
||||
|
||||
@@ -669,8 +669,10 @@ gcode:
|
||||
|
||||
{% if FILAMENT == 'PLA' %}
|
||||
{% set ZOFF = 0.0|float %}
|
||||
{% elif FILAMENT == "ASA" %}
|
||||
{% set ZOFF = 0.00|float %}
|
||||
{% else %}
|
||||
{% set ZOFF = 0.06|float %}
|
||||
{% set ZOFF = 0.00|float %}
|
||||
{% endif %}
|
||||
M117 Add a little offset ({ZOFF} - {FILAMENT}) for hotend thermal expansion
|
||||
SET_GCODE_OFFSET Z={ZOFF}
|
||||
|
||||
Reference in New Issue
Block a user