Voron Printing Accent Pieces


3D Printer Setup and Tuning

A checklist of steps to perform on a new printer build.
Published by Joseph McGurkin

Overview

Wow there's a lot of content out there on how to tune a 3D printer! Most of it is really good stuff. After a new build, I'm usually forgetting steps, gcode commands or fumbling around looking for links to documentation I like. So, how about a checklist?

Below are the standard steps I usually follow. Most of the steps have come from other sites. A few invaluable sources are:

https://docs.vorondesign.com/build/startup/
https://www.klipper3d.org/Config_checks.html
https://ellis3dp.com/Print-Tuning-Guide/

Note: The following is only a checklist. It does not go into detail on the whys, describe steps for troubleshooting or diagnosing problems. The links above already have all of that type of information.

Another Note: Proceed at your own peril! Building a 3D printer is no small undertaking. Please, before following any specific step, ensure you have taken the required precautions to ensure you do not harm yourself or your printer.

New build

These steps are performed once after a new build. They could also apply to a new purchase, or, reused during maintenance.

OS Installation

  1. Create Pi image
    1. Imager: https://www.raspberrypi.com/software/
    2. Use advanced settings to setup Wi-Fi, user, hostname, SSH
    3. Boot Pi
  2. SSH using Windows terminal
  3. Update the Pi
    sudo apt update
    sudo apt full-upgrade
    sudo apt clean
    sudo apt reboot

Klipper & The MCU

  1. Using Klipper Installation and Update Helper (KIAUH)
  2. Install Git
    sudo apt-get install git -y
  3. Install KIAUH
    cd ~ && git clone https://github.com/th33xitus/kiauh.git
  4. Run KIAUH to install Klipper, Moonraker, Fluidd, etc.
    ./kiauh/kiauh.sh
  5. Flash the MCU
    1. Octopus: https://docs.vorondesign.com/build/software/octopus_klipper.html
  6. Get the MCU device id
    ls /dev/serial/by-id
  7. This will return some like:
    usb-Klipper_stm32f446xx_130025000350534E4E313020-if00

Configuration

  1. Open Fluidd in a browser
  2. Add/update printer.cfg
  3. Main stuff
    [mcu]
    serial: /dev/serial/by-id/usb-Klipper_stm32f446xx_130025000350534E4E313020-if00
    restart_method: command
  4. Update remaining config settings

Configuration Checks

  1. Ensure the temperatures are showing correctly in the graph in the UI (Screenshot)
  2. Ensure emergency shutdown works
    M112
    
    # Followed by
    FIRMWARE_RESTART
  3. Validate temperatures go up and heaters shut off
    SET_HEATER_TEMPERATURE HEATER=extruder TARGET=50
    SET_HEATER_TEMPERATURE HEATER=heater_bed TARGET=50
    
    TURN_OFF_HEATERS
  4. Disable steppers and ensure all axes move freely
    M84
  5. Check each end stop shows open or triggered correctly by manually pressing the end stop and querying
    QUERY_ENDSTOPS
  6. Temporarily turn off the extruder minimum temperature allowing the extruder stepper to function
    # printer.cfg
    
    [extruder]
       ...
    min_extrude_temp: 170
    min_extrude_temp: 0
  7. Ensure steppers move in the correct direction. The first move will be one millimeter in a positive direction. Repeat for y, z, z1, z2, z3 and extruder.
    STEPPER_BUZZ STEPPER=stepper_x
  8. Reset the extruder minimum temperature
    # printer.cfg
    
    [extruder]
       ...
    min_extrude_temp: 0
    min_extrude_temp: 170
  9. Calibrate PID for the extruder and bed
    PID_CALIBRATE HEATER=extruder TARGET=240
    PID_CALIBRATE HEATER=heater_bed TARGET=110
    SAVE_CONFIG
  10. Home X and Y, not Z or All. Keep one finger on the reset button... in case anything bad happens
    G28 X Y
  11. Z End Stop Location
    1. Using the UI, move along X until the nozzle is over the Z pin
    2. Adjust the pin forward or back if needed and tighten
    3. Update the Z pin location
      # printer.cfg
      
      [safe_z_home]
      home_xy_position:-10,-10
      home_xy_position:[new X],[new Y]
  12. Bed Location
    1. Adjust the bed to be 2-3mm from the Z pin
    2. Center bed
    3. Tighten one, two screws firm, last one loose (done while hot)
  13. Run Full Homing
    G28

Probe Configuration

  1. Move toolhead to the center of the bed about 10mm up
  2. Ensure the probe returns "open"
    QUERY_PROBE
  3. With something metal under the probe, the query should return "triggered"
  4. Slowly reduce Z and continue querying. Make sure the probe shows "triggered" before touching the bed.
  5. Move the toolhead to center of the bed about 10mm up
  6. Check probe accuracy
    PROBE_ACCURACY
  7. Distance should not be trending either up or down
  8. Stand deviation should be less than 0.003mm
  9. Level the Gantry
    QUAD_GANTRY_LEVEL
  10. During the first run, the gantry may be so far out of alignment, safe distance errors occur. If this happens:
    # Disable the steppers
    M84
    
    # Adjust gantry by hand
    
    # Home the printer
    G28
    
    # Retry
    QUAD_GANTRY_LEVEL
  11. Preheat the bed for fifteen minutes, run QGL again

Z Calibration

  1. Place a piece of paper under the nozzle. Raise and lower the toolhead with the commands below. If "out of bunds" occurs, accept, save config and rerun.
    # Start the calibration
    Z_ENDSTOP_CALIBRATE
    
    # Lower the toolhead
    TESTZ Z=-0.1
    
    # Raise the toolhead
    TESTZ Z=0.1
    
    # Save and restart printer
    ACCEPT
    SAVE_CONFIG

Miscellaneous

  1. Run Bed Mesh
  2. Input Shaper
  3. Configuring Multiple Cameras

New Filament

These steps are usually performed on a new filament. They should apply to any new Brand/Material. If you really want to get critical, perform them on any new Brand/Material/Color/Spool. Most of the links below are to Andrew Ellis' Print Tuning Guide.

  1. Temp Tower
  2. First Layer Squish
  3. Pressure Advance
  4. Extrusion Multiplier
  5. Thread Test


Comments