4 - Software Configuration _ Voron Documentation
4 - Software Configuration _ Voron Documentation
Software Configuration
Initial Voron Printer Configuration
Voron Configuration templates are available in the github repository for each printer. You likely have them in the files you have already
downloaded, in the “firmware” directory, or you can use the appropriate link below:
• V0.2r1
• V1.8
• Trident
• V2.4
• Switchwire
• Legacy
Note: When downloading text configuration files from github, click the “raw” button at the top right of the file, and then use your browser’s
“save-as” function.
Mainsail: Upload the file via Mainsail’s interface. Go to the “Machine” tab, and under “Config Files”, press the “Upload File” button
https://docs.vorondesign.com/build/software/configuration.html 1/9
26/01/2024, 20:08 Software Configuration | Voron Documentation
Fluidd: Upload the file via Fluidd’s interface. Go to the “Configuration” Tab, and under “Configuration Files”, press “+”->”Upload”
Octoprint: Use a secure file transfer program (WinSCP, Cyberduck, Notepad++, NppFT, BBEdit, scp), to transfer the file to your Raspberry
Pi, placing it in the folder /home/pi .
Editing printer.cfg
Note: There are many ways of editing the config file that vary by personal preference. Mainsail & Fluidd both offer built-in printer.cfg
editors. Using Nano editor through SSH is simple but not always user friendly. Notepad++ with the NppFTP plugin (Windows) or bbEdit
(macOS) are user-friendlier alternatives.
• Fluidd: Click “Configuration”, then “printer.cfg”, and choose “edit” from the menu that appears
• Notepad++ Information
• bbEdit Information
• Nano: The nano command is slightly different, depending on whether you are using Mainsail, Fluidd, or Octoprint
Review printer.cfg
There are a variety of entries in printer.cfg which will need to be edited to match your particular build. Open it with your choice of editors,
and go through it carefully. While the key edits are highlighted below, you should read the entire file, and make sure you have found
everything which needs your attention.
https://docs.vorondesign.com/build/software/configuration.html 2/9
26/01/2024, 20:08 Software Configuration | Voron Documentation
Klipper is CASE SENSITIVE. Most keywords are lower case. Make sure your device doesn’t auto-capitalize keywords when they
shouldn’t be!
Required Changes
The following items must be updated before the printer can function.
• MCU path(s)
• Thermistor types - hot end, heated bed (See ‘sensor types’ list at end of stock configuration file)
• Stepper settings (X, Y, Z(s), extruder)
• Endstop position
• Max position
• Stepper type
• Bed Screw / Tilt / Quad Gantry positions
• Z endstop location
Change Details
Printer Definitions
In this section you set your maximum accelerations and velocity. The stock config is configured fast - so if you are facing issues - you can
tweak these values lower and then increase them as you finish tuning your printer. These are the highest values that klipper will allow
regardless of what you may have configured in your slicer.
[printer]
kinematics: corexy
max_velocity: 350
https://docs.vorondesign.com/build/software/configuration.html 3/9
26/01/2024, 20:08 Software Configuration | Voron Documentation
max_accel: 3000
max_z_velocity: 50
max_z_accel: 350
square_corner_velocity: 10.0
The maximum velocity (in mm/s) that the toolhead may travel a 90 degree corner at. A non-zero value can reduce changes in extruder flow
rates by enabling instantaneous velocity changes of the toolhead during cornering. This value configures the internal centripetal velocity
cornering algorithm; corners with angles larger than 90 degrees will have a higher cornering velocity while corners with angles less than 90
degrees will have a lower cornering velocity. If this is set to zero then the toolhead will decelerate to zero at each corner. The default is
5mm/s.
https://docs.vorondesign.com/build/software/configuration.html 4/9
26/01/2024, 20:08 Software Configuration | Voron Documentation
Note: If the device identifier has the word ‘marlin’ in it, the Klipper firmware is not loaded properly. Go back and reload the Klipper
firmware before continuing.
1 Copy the device ID (e.g. usb-Klipper_lpc1768_1FB0000802094AAF07825E5DC52000F5-if00 ) from the terminal window and paste into a temporary
text file.
2 Open the configuration file and navigate to the [mcu] section.
3 Locate serial: and replace the value with /dev/serial/by-id/ followed by your MCU’s device ID you copied in step 1. It should look as
follows:
[mcu]
serial: /dev/serial/by-id/usb-Klipper_lpc1768_1FB0000802094AAF07825E5DC52000F5-if00
Note: If the device identifier has the word ‘marlin’ in it, the Klipper firmware is not loaded properly. Go back and re-load the Klipper
firmware before continuing.
https://docs.vorondesign.com/build/software/configuration.html 5/9
26/01/2024, 20:08 Software Configuration | Voron Documentation
1 Copy the device ID (e.g. usb-Klipper_lpc1768_0650000AA39C48AFABD4395DC22000F5-if00 ) from the terminal window and paste into a temporary
text file.
2 Open the configuration file and navigate to the [mcu z] section.
3 Locate serial: and replace the value with /dev/serial/by-id/ followed by your MCU’s device ID you copied in step 1. It should look as
follows:
[mcu z]
serial: /dev/serial/by-id/usb-Klipper_lpc1768_0650000AA39C48AFABD4395DC22000F5-if00
• Uncomment the position_endstop and position_max lines with values that corresponds to your printer’s size.
• Delete the other options to prevent confusion.
3 Locate [tmcXXXX stepper_x] :
• Replace XXXX with either 2208 or 2209 to match the type of TMC drivers that are installed.
For example, [tmc2209 stepper_x] for TMC2209 drivers.
4 Locate [stepper_y] :
• Uncomment the position_endstop and position_max lines with values that corresponds to your printer’s size.
• Delete the other options to prevent confusion.
5 Locate [tmcXXXX stepper_y] :
https://docs.vorondesign.com/build/software/configuration.html 6/9
26/01/2024, 20:08 Software Configuration | Voron Documentation
• Replace XXXX with either 2208 or 2209 to match the type of TMC drivers that are installed.
For example, [tmc2209 stepper_y] for TMC2209 drivers.
6 Locate [stepper_z] :
• Uncomment the position_max line that corresponds with your printer’s size
• Delete the other options to prevent confusion.
• Update the 4 [tmcXXXX stepper_zX] sections, selecting the right stepper motor driver model corresponding to each of the Z motors
respectively (stepper_z, stepper_z1, stepper_z2, stepper_z3).
7 Under [extruder]
• Verify that the sensor_type is set, matching the sensor type you’re using.
• Update [tmcXXXX extruder] in the same fashion as step 3 to match the installed stepper driver for the extruder.
Do not worry about step_distance or PID values for now. They will be updated later in the setup process.
8 Under [heater_bed] , verify the temperature sensor type is correct.
9 Under [display]
• Uncomment the display configuration section that matches the installed display.
• Delete the others to prevent confusion.
If printer is a V1:
• Under [z_tilt] and [screws_tilt_adjust] , uncomment the lines that correspond with your printer’s size
• Delete the other options to prevent confusion.
If printer is a V2:
• Under [quad_gantry_level] , uncomment the gantry_corners and points sections that correspond with your printer’s size
• Delete the other options to prevent confusion.
https://docs.vorondesign.com/build/software/configuration.html 7/9
26/01/2024, 20:08 Software Configuration | Voron Documentation
11 Exit the text editor with CTRL-X and save when prompted.
[include mainsail.cfg]
[include fluidd.cfg]
Community References
Calculating Driver Current Settings
[...]
https://docs.vorondesign.com/build/software/configuration.html 8/9
26/01/2024, 20:08 Software Configuration | Voron Documentation
If after 30-60 seconds there is no Ready message, then run STATUS in the terminal window. If Klipper comes back Not Ready it will notify if
there is a configuration issue that needs to be corrected.
https://docs.vorondesign.com/build/software/configuration.html 9/9