wenhel / Sovol-SV06-firmware-1

A comprehensive Klipper configuration for the Sovol SV06 3D printer.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🚨 One-Stop-Shop Sovol SV06 Klipper Configuration

This repository contains the Klipper configuration and firmware for the Sovol SV06 3D printer with completely stock hardware.

I am creating these files for my personal use and cannot be held responsible for what it might do to your printer. Use at your own risk.

Highlights

  • πŸ’₯ This Klipper configuration is an endpoint, meaning that it contains everything that you could possibly need in order to have an excellent Klipper experience! πŸ’₯
  • NEW Filament runout sensor usage implemented.
  • Minimum configuration settings for Mainsail/Fluiddpi to work.
  • SuperSlicer config bundle that contains the printer configuration, as well as what are considered by many to be the best print settings available for any FDM printer (Ellis' SuperSlicer Profiles). Find the differences between the different print setting profiles here. But basically, the 45 degree profile places the seam at the back.
  • Bed model and texture to use in SuperSlicer/PrusaSlicer.
  • Macros
    • Improved mechanical gantry calibration/G34 macro that provides the user audio feedback, and time to check the calibration.
    • Misc macros: PRINT_START, CANCEL_PRINT, PRINT_END, PAUSE, RESUME.
    • Parking macros (parks the printhead at various locations): PARKFRONT, PARKFRONTLOW, PARKREAR, PARKCENTER, PARKBED.
    • Load/unload filament macros.
    • Purge line macro.

To do:

  • Replace M109/M190 with TEMPERATURE_WAIT.
  • Get the Ellis TEST_SPEED macro working.
  • Add information about directory structure.
  • Create FAQ section.
  • Get filament sensor working with hotend PCB.
  • Finalize filament sensor config and merge into master.
  • Create topic in Discussion section detailing how users should keep this repository in sync with their own Klipper config using git.
  • Explain PAUSE/RESUME extruder behaviour.
  • Integrate KAMP (Klipper Adaptive Meshing and Purging).
  • Add BEEP when filament needs changing/M600.

Stay Up-to-Date

I work on this repository all the time and a lot of new features are coming. Watch releases of this repository to be notified for future updates:

Raspberry Pi

Installation Steps

Before You Begin

  • Know what you're getting into by reading this documentation fully!
  • There is an assumption that you are connected to your host Raspberry Pi via SSH, and that your printer motherboard is connected to the host via USB.
  • Klipper must be installed on the host Raspberry Pi for everything to work. Easiest is to use a FluiddPi or MainsailOS image.
  • Your question has probably been answered already, but if it hasn't, please post in the Discussion section.
  • If you see any errors, or encounter any issues, please create an Issue, or a Pull request.
  • I would recommend searching for the word NOTE in this repository. There are roughly half a dozen short points amongst the various files that you should be aware of if you're using this configuration.

Flash Firmware

πŸ’‘ If you have already flashed klipper onto your motherboard in the past, you can skip this step

  1. Copy klipper.bin to a MicroSD card and rename to anyNewFilename.bin.
  2. Make sure the printer is off.
  3. Insert MicroSD into printer.
  4. Turn on the printer and wait a minute (usually takes 10 seconds).
  5. Turn off printer and remove MicroSD.

You may find this video useful.

⚠️ Caveat: Flashing will only work if current firmware filename (anyNewFilename.bin in this example) is different from previous flashing procedure. The .bin is also important.

Download Klipper Configuration

You can choose either of the 2 following methods.

Clone the Repository

  1. cd ~/printer_data/config
  2. Empty entire ~/printer_data/config folder. Unfortunately, for safety reasons I will not post this command here. However, in linux, you can delete files via rm filename.
  3. git clone -b master --single-branch https://github.com/bassamanator/Sovol-SV06-firmware.git .

Download the ZIP

  1. Download the ZIP file containing the Klipper configuration.
  2. The parent folder in the ZIP is Sovol-SV06-firmware-master. This is relevant in the next step.
  3. Extract only the contents of the parent folder into ~/printer_data/config.

Initial Steps

Step 1

  1. Find what port the mcu (SV06 motherboard) is connected to via ls -l /dev/serial/by-id/.
  2. Adjust the [mcu] section in printer.cfg accordingly.

Step 2

β—β˜ οΈ Your finger should be on the power switch for most of these steps β˜ οΈβ—

β—β˜ οΈ Power off if there is a collision/problem β˜ οΈβ—

πŸ’‘ I recommend no filament be loaded for any of these steps.

  1. Do a G28; home all.
    1. Check to see if X and Y max positions (G1 X223 F3000, G1 Y223 F3000) can be reached, and adjust position_max, if necessary. You can probably go all the way up to 225 for X and Y both, however, I would not recommend it.
  2. Do a G34; mechanical gantry calibration. After the controlled collision against the beam at the top, there will be a 10 second pause for you to verify that both sides of the gantry are pressed up agaisnt the stoppers at the top. You will hear a succession of beeps.
    1. Figure out your Z position_max by baby stepping your way up to the beam. The range is 250 to 261 from what I've seen, could be even higher for you. Adjust position_max, if necessary. I can go all the way to 258 over and over again, however, I would not print anything higher than 255 probably.
  3. Pid tune the bed, but first move the printhead to the center. Ideally, all Pid tuning should occur at the temperatures that you print most at.
    1. G28
    2. G1 X111 Y111 Z40 F6000
    3. PID_CALIBRATE HEATER=heater_bed TARGET=70
    4. SAVE_CONFIG (once completed)
  4. Pid tune the extruder while part cooling fan runs at 25%.
    1. G28
    2. G1 X111 Y111 Z10 F6000
    3. M106 S64
    4. PID_CALIBRATE HEATER=extruder TARGET=245
    5. SAVE_CONFIG (once completed)
  5. Adjust z_offset. Make sure your nozzle if very clean. Paper test reference.
    1. SET_HEATER_TEMPERATURE HEATER=heater_bed TARGET=60
    2. SET_HEATER_TEMPERATURE HEATER=extruder TARGET=180
    3. Proceed to next steps after both temperatures have been reached.
    4. G28
    5. PROBE_CALIBRATE
    6. SAVE_CONFIG (once completed)
  6. Create a bed mesh.
    1. SET_HEATER_TEMPERATURE HEATER=heater_bed TARGET=60
    2. SET_HEATER_TEMPERATURE HEATER=extruder TARGET=180
    3. Proceed to next steps after both temperatures have been reached.
    4. G28
    5. BED_MESH_CALIBRATE
    6. SAVE_CONFIG (once completed)

Directory Structure

This repository contains many files and folders. Some are necessary for this Klipper configuration to work, others are not.

  • Necessary items are marked with a βœ….
  • Items that can optionally be deleted are marked with a ❌.
β”œβ”€β”€ cfgs βœ…
β”‚   β”œβ”€β”€ adxl-direct.cfg
β”‚   β”œβ”€β”€ adxl-rp2040.cfg
β”‚   β”œβ”€β”€ beeper.cfg
β”‚   β”œβ”€β”€ misc-macros.cfg
β”‚   β”œβ”€β”€ MECHANICAL_GANTRY_CALIBRATION.cfg
β”‚   β”œβ”€β”€ PARKING.cfg
β”‚   └── TEST_SPEED.cfg [☠️Not ready for use☠️]
β”œβ”€β”€ images ❌
β”‚   └── githubstar.gif
β”œβ”€β”€ misc ❌
β”‚   β”œβ”€β”€ cup-border.png
β”‚   β”œβ”€β”€ klipper.bin
β”‚   β”œβ”€β”€ logo_white_stroke.png
β”‚   β”œβ”€β”€ M503-output.yml
β”‚   β”œβ”€β”€ SuperSlicer_config_bundle.ini
β”‚   β”œβ”€β”€ sv06-buildPlate.png
β”‚   β”œβ”€β”€ SV06-buildPlate.stl
β”‚   └── SV06-texture.svg
β”œβ”€β”€ moonraker.conf βœ…
β”œβ”€β”€ printer.cfg βœ…
└── README.md ❌

Ko-fi Support Me Ko-fi

If you found my work useful, please consider buying me a Ko-fi.

FAQ

How do I import a SuperSlicer configuration bundle (SuperSlicer_config_bundle.ini) into SuperSlicer?

Please see this discussion.

How do I print using SuperSlicer?

Please see this discussion.

When does beeping occur?

The printer will beep upon:

  • Filament runout.
  • Filament change/M600.
  • Upon PRINT_END.
  • MECHANICAL_GANTRY_CALIBRATION/G34.
How do I disable beeping?

Make the following changes according to your needs. All beeping will be disabled except during gantry calibration.

File cfgs/misc-macros.cfg
Section [gcode_macro _globals]
Variable variable_beeping_enabled
Disable beeping 0
Enable beeping 1
I want to use a filament sensor. How do I set it up?

You can find information about the physical setup here.

I have a simple filament sensor connected. How do I enable/disable it?

Make the following changes according to your needs.

File cfgs/misc-macros.cfg
Section [gcode_macro _globals]
Variable variable_filament_sensor_enabled
Disable sensor 0
Enable sensor 1
My filament runout sensor works, but I just started a print without any filament loaded. What gives?

A simple runout sensor can only detect a change in state. So, if you start a print without filament loaded, the printer will not know that there is no filament loaded. You should test your sensor by having filament loaded, starting a print, then cutting the filament. The expected behaviour is that the print will pause, and as long as you have beeping enabled, you will hear 3 annoying beeps.

Useful Resources

Links

Sources

ko-fi

About

A comprehensive Klipper configuration for the Sovol SV06 3D printer.