How to install Desuuuu's Klipper Fork with Fluidd on a CR10S Pro V2 (And other printers too)

This page summarizes the projects mentioned and recommended in the original post on /r/klippers

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • klipper-macros

    A collection of my Klipper G-code macros. (by Desuuuu)

    # This file contains pin mappings for the Creality CR-10S Pro V2. To use # this config, the firmware should be compiled for the AVR atmega2560. [stepper_x] step_pin: PF0 dir_pin: PF1 enable_pin: !PD7 rotation_distance: 40 microsteps: 16 full_steps_per_rotation: 200 endstop_pin: ^PE5 position_endstop: 0 position_min: 0 position_max: 300 homing_speed: 50 homing_retract_dist: 5 [stepper_y] step_pin: PF6 dir_pin: !PF7 enable_pin: !PF2 rotation_distance: 40 microsteps: 16 full_steps_per_rotation: 200 endstop_pin: ^PJ1 position_endstop: 0 position_min: 0 position_max: 310 homing_speed: 50 homing_retract_dist: 5 [stepper_z] step_pin: PL3 dir_pin: !PL1 enable_pin: !PK0 rotation_distance: 8 microsteps: 16 full_steps_per_rotation: 200 endstop_pin: probe:z_virtual_endstop position_min: -1 position_max: 351 [extruder] step_pin: PA4 dir_pin: PA6 enable_pin: !PA2 rotation_distance: 22.900 microsteps: 16 full_steps_per_rotation: 200 nozzle_diameter: 0.400 filament_diameter: 1.750 max_extrude_only_distance: 500.0 max_extrude_only_velocity: 70.0 max_extrude_only_accel: 1000.0 heater_pin: PB4 sensor_type: EPCOS 100K B57560G104F sensor_pin: PK5 control: pid pid_Kp: 22.2 pid_Ki: 1.08 pid_Kd: 114 min_extrude_temp: 170 min_temp: 5 max_temp: 275 [heater_bed] heater_pin: PH5 sensor_type: EPCOS 100K B57560G104F sensor_pin: PK6 control: pid pid_Kp: 690.34 pid_Ki: 111.47 pid_Kd: 1068.83 min_temp: 5 max_temp: 140 [fan] pin: PH6 [mcu] serial: /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_AB0KFEO7-if00-port0 #REPLACE WITH YOUR PRINTER'S SERIAL**** [printer] kinematics: cartesian max_velocity: 200 max_accel: 1500 max_z_velocity: 10 max_z_accel: 100 [bltouch] sensor_pin: ^PD2 control_pin: PB5 stow_on_each_sample: False probe_with_touch_mode: True x_offset: -27 y_offset: -2 z_offset: 0 speed: 4.0 samples: 2 sample_retract_dist: 3.0 [safe_z_home] home_xy_position: 177,155 speed: 80.0 z_hop: 10.0 z_hop_speed: 5.0 [bed_mesh] speed: 120 horizontal_move_z: 5 mesh_min: 5, 5 mesh_max: 268, 305 probe_count: 5,5 fade_start: 1 fade_end: 10 [filament_switch_sensor e0_sensor] switch_pin: PE4 pause_on_runout: False runout_gcode: PAUSE_PARK [pause_resume] [respond] default_type: echo [t5uid1] firmware: dgus_reloaded machine_name: The Replimat volume: 60 brightness: 50 z_min: 0 z_max: 350 [virtual_sdcard] path: ~/gcode_files [display_status] [pause_resume] [gcode_macro PAUSE] description: Pause the actual running print rename_existing: PAUSE_BASE # change this if you need more or less extrusion variable_extrude: 1.0 gcode: ##### read E from pause macro ##### {% set E = printer["gcode_macro PAUSE"].extrude|float %} ##### set park positon for x and y ##### # default is your max posion from your printer.cfg {% set x_park = printer.toolhead.axis_maximum.x|float - 5.0 %} {% set y_park = printer.toolhead.axis_maximum.y|float - 5.0 %} ##### calculate save lift position ##### {% set max_z = printer.toolhead.axis_maximum.z|float %} {% set act_z = printer.toolhead.position.z|float %} {% if act_z < (max_z - 2.0) %} {% set z_safe = 2.0 %} {% else %} {% set z_safe = max_z - act_z %} {% endif %} ##### end of definitions ##### PAUSE_BASE G91 {% if printer.extruder.can_extrude|lower == 'true' %} G1 E-{E} F2100 {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} {% if "xyz" in printer.toolhead.homed_axes %} G1 Z{z_safe} F900 G90 G1 X{x_park} Y{y_park} F6000 {% else %} {action_respond_info("Printer not homed")} {% endif %} [gcode_macro RESUME] description: Resume the actual running print rename_existing: RESUME_BASE gcode: ##### read E from pause macro ##### {% set E = printer["gcode_macro PAUSE"].extrude|float %} #### get VELOCITY parameter if specified #### {% if 'VELOCITY' in params|upper %} {% set get_params = ('VELOCITY=' + params.VELOCITY) %} {%else %} {% set get_params = "" %} {% endif %} ##### end of definitions ##### {% if printer.extruder.can_extrude|lower == 'true' %} G91 G1 E{E} F2100 {% else %} {action_respond_info("Extruder not hot enough")} {% endif %} RESUME_BASE {get_params} [gcode_macro CANCEL_PRINT] description: Cancel the actual running print rename_existing: CANCEL_PRINT_BASE gcode: TURN_OFF_HEATERS CANCEL_PRINT_BASE # https://github.com/Desuuuu/klipper-macros # If you want to use these macros, follow the instructions from the repository # and uncomment the following lines. #[save_variables] #filename: ~/variables.cfg # #[delayed_gcode macros_initialize] #initial_duration: 1 #gcode: # INITIALIZE_VARIABLE VARIABLE=park_x VALUE=20 # INITIALIZE_VARIABLE VARIABLE=park_y VALUE=290 # INITIALIZE_VARIABLE VARIABLE=bowden_len VALUE=400 # #[include macros/*.cfg]

  • DGUS-reloaded-Klipper

    DWIN T5UID1 touchscreen firmware for 3D printers running Klipper.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts