- update: Klipper - Puesta en marcha inicial - Reorganización parte endstops (by @alienboyxp)
- docs: Klipper - Laminadores (by @alienboyxp)
- Klipper - Laminadores - Changelog test 3 (by @alienboyxp)
- Klipper - Laminadores - Changelog test 2 (by @alienboyxp)## 🚀 Documentation Updated
- update: Klipper - Mejoras - Macros - Test Cinematica - Macro pasada a Gist (by @alienboyxp)
- update: Klipper - Input Shaper - Fysetc adxl345 (by @alienboyxp)
- update: Klipper - CANbus - M8p + EBB USB Bridge CAN - Añadido troubleshooting CAN (by @alienboyxp)
- update: Klipper - CANbus - M8p + EBB USB Bridge CAN - Añadir actualizar Klipper usando CANboot (by @alienboyxp)
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
# Current Version v_202306142036 | |
# Mas info - https://3dwork.gitbook.io/3dwork.io/klipper/mejoras/macros-mejoras/cambio-filamentos-m600 | |
###################################################################### | |
# CAMBIO DE FILAMENTO | |
###################################################################### | |
# M600 | |
# M601 | |
# CHANGE_FILAMENT | |
# LOAD_FILAMENT | |
# UNLOAD_FILAMENT |
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
# Current Version v_202305221109 | |
# Carga las variables globales de forma automática | |
# Mas info - https://3dwork.gitbook.io/3dwork.io/klipper/mejoras/macros-mejoras/cambio-filamentos-m600 | |
[delayed_gcode activate_VAR_GLOBALS] | |
initial_duration: 1 | |
gcode: | |
_VAR_GLOBALS ; Se cargan las variables globales al iniciar la impresion. | |
[gcode_macro _VAR_GLOBALS] |
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
# Current Version v_20240401 | |
[gcode_macro TEST_KINEMATICS] | |
description: Test Printer Kinematics | |
gcode: | |
# home not homed axies | |
{% for axis in ['x', 'y', 'z'] %} | |
{% if axis not in printer.toolhead.homed_axes %} | |
G28 { axis } | |
{% endif %} | |
{% endfor %} |
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
# Current Version v_20240401 | |
[gcode_macro TEST_KINEMATICS] | |
description: Test Printer Kinematics | |
gcode: | |
# home not homed axies | |
{% for axis in ['x', 'y', 'z'] %} | |
{% if axis not in printer.toolhead.homed_axes %} | |
G28 { axis } | |
{% endif %} | |
{% endfor %} |
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
# Current Version v_202305221109 | |
#### END_PRINT #### | |
[gcode_macro END_PRINT] | |
gcode: | |
#Get Printer built volume dimensions | |
#Obtener dimensiones area de impresion | |
{% set X_MAX = printer.toolhead.axis_maximum.x|default(100)|float %} | |
{% set Y_MAX = printer.toolhead.axis_maximum.y|default(100)|float %} | |
#Fix-up extruder |
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
# Current Version v_20250405 | |
# More detailed information and description - https://klipper.3dwork.io/klipper/empezamos/configuracion-klipper-en-laminadores | |
# Configure prime line - From Klipper-Adaptive-Meshing-Purging https://github.com/kyleisah/Klipper-Adaptive-Meshing-Purging | |
### START_PRINT ### | |
[gcode_macro START_PRINT] | |
############################################################################## | |
# BOOLEAN VARIABLES(True|False) ALWAYS UPPERCASE THE FIRST LETTER # | |
# LAS VARIABLES BOOLEANAS(True|False) SIEMPRE LA PRIMERA LETRA EN MAYUSCULAS # |
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
#!python | |
# This script changes the color of the Voron Stealthburner logo LED to the color of | |
# the Feature Type (which is classified by the slicer) that is currently being printed. | |
# | |
# This postprocess script, especially the idea of adding gcode by the TYPE string, | |
# was inspired by RomRider's https://github.com/RomRider/klipper-FastGyroidInfill | |
# | |
# In order to make this work, you first need Stealthburner, which (of course) has | |
# built-in LEDs. And the LEDs must be configured in printer.cfg. | |
# If the toolhead LEDs don't have a dedicated chain, e.g. are strung after the |
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
; Ender 3 Custom End G-code | |
G4 ; Wait | |
M220 S100 ; Reset Speed factor override percentage to default (100%) | |
M221 S100 ; Reset Extrude factor override percentage to default (100%) | |
G91 ; Set coordinates to relative | |
G1 F1800 E-3 ; Retract filament 3 mm to prevent oozing | |
G1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely | |
G90 ; Set coordinates to absolute | |
G1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal | |
M106 S0 ; Turn off cooling fan |
NewerOlder