Skip to content

Blog

K2 Plus Upgrade Series Part 1: All-Metal Extruder Gear Kit

Intro motivation; stock limitations; goals (reliability, higher flow, reduced wear).

Series Navigation: Part 1 (Current) · Part 2 (Nozzle Wiper) · Part 3 (Klipper & Profile)

List gear kit components, required tools, affiliate links placeholders.

  1. Disassemble stock extruder
  2. Inspect drive gears & tensioner
  3. Install all-metal gear kit
  4. Reassemble & tension spring

Common issues (slipping, grinding, inconsistent extrusion) and fixes.

Continue with Part 2: Nozzle Wiper Module or jump ahead to Part 3: Klipper Installation & Profile.

K2 Plus Upgrade Series Part 2: Nozzle Wiper Module

Why nozzle hygiene matters; benefits for automation.

Module components; mounting hardware; safety precautions.

  1. Positioning and alignment
  2. Mounting hardware torque guidance
  3. Firmware/macros adjustments (Klipper snippets placeholder)

First layer test; stringing reduction examples.

Link back to Part 1 and forward to Part 3 (Klipper install + profile).

K2 Plus Upgrade Series Part 3: Klipper Installation & OrcaSlicer Profile

Transformation benefits: speed, macro control, print quality.

Completed Part 1 & 2; hardware state summary.

Flash process; configuration file sections; CAN notes (future expansion).

Baseline settings; acceleration, input shaping references; filament presets.

Speed vs quality trade-offs; sample prints.

Summarize improvements; invite feedback; internal links to related guides.

Mastering Bed Types in OrcaSlicer: Automate Z-Offsets and Temperatures

I found a feature that is incredibly powerful for anyone running multiple build plates on a single printer: specifying bed types.

If you swap between a smooth PEI sheet, a textured plate, or a cool plate, you usually have to manually adjust your Z-offset or run a bed level every time. However, OrcaSlicer allows you to automate this process, saving your Z-offset and temperature settings based on the specific bed you select. For broader slicer tuning, visit the OrcaSlicer Tutorials Hub.

OrcaSlicer generally supports four standard bed definitions: Cool Plate, Engineering Plate, High Temp Plate, and Textured PEI Plate. Even if your specific brand of plate isn’t listed, you can use these presets as placeholders to trigger specific settings.

To enable this feature:

  1. Open OrcaSlicer and go to Printer Settings.
  2. Check the box for “Support multiple bed types”.
  3. Once enabled, you will see a dropdown menu allowing you to select your active bed type directly in the main interface.

One immediate benefit of this feature is temperature management. Different bed materials require different surface temperatures.

For example, I typically use a smooth PEI high-temp plate at 60°C. However, I recently started using the BigTreeTech MENT BQ Cryo Grip ProGlacial beds. These are double-sided (smooth and textured), but they run best about 5 to 10 degrees cooler than standard PEI.

By utilizing the bed type settings in the Filament tab, I can assign specific temperatures to specific plate types (e.g., setting the “Cool Plate” slot to 55°C). This allows me to “set it and forget it”—the slicer handles the temp change automatically based on the bed I select.

The most powerful application of this feature is automating your Z-offset. To make this work, you need to pass the bed type variable from OrcaSlicer to your printer’s start code. After implementing this, refine extrusion consistency using Flow Calibration and ringing reduction with Input Shaping.

In your OrcaSlicer machine start G-code, you need to add a specific variable so the printer knows which bed is selected. The code looks like this:

{if curr_bed_type=="Textured PEI Plate"}
SET_GCODE_OFFSET Z=-0.05
{else}
SET_GCODE_OFFSET Z=0.0
{endif}

Available bed types are:

Terminal window
"Cool Plate"
"Engineering Plate"
"High Temp Plate"
"Textured PEI Plate"

This line sends the current bed selection to your printer’s configuration. For more macro examples see the Klipper Calibration Hub.

Once the printer receives the variable, you can use conditional logic (If/Else statements) in your printer’s configuration (like Klipper macros) to adjust the Z-offset.

Based on examples found on the Creality K2 Plus forums and AI-generated code, the logic works as follows:

  • Capture the Variable: The macro grabs the uppercase variable CURR_BED_TYPE.
  • If/Else Statements: The printer checks which bed is active and applies a specific offset.
    • Example: If using a glass plate, set Z-offset to 0.
    • Example: If using Textured PEI, set Z-offset to -0.03.
  • Fallback: You can include an else statement to handle any unknown bed types.

This feature adds a layer of convenience and optimization to your workflow. Whether you are looking to automate temperature changes for Cryo Grip plates or swap between smooth and textured sheets without releveling, specifying bed types in OrcaSlicer is a game changer.

Thanks for stopping by! I’m still recovering, so I appreciate your patience if this wasn’t up to my usual standards, but I look forward to talking to you again soon.

Have questions about your start G-code? Leave a comment on the video!

Stop Guessing: I Built a FREE App for Your Best 3D Slicer Settings

Hey, this is Mike from Minimal3DP.

I’ve had a lot of time to think recently while recovering from heart surgery, and I put that time to use. Today, I want to talk about “the best 3D printer slicer settings” and what that really means.

We’ve all seen videos (even from my own channel) about the “best” settings. But when you open a modern slicer—my choice is OrcaSlicer—you’ll find hundreds, maybe thousands of different settings. The truth is, there is no single perfect setting for every scenario.

  • ✅ Why there’s no “one size fits all” slicer setting
  • ✅ How to use academic research to optimize your prints
  • ✅ How the new OrcaSlicer Expert Assistant works
  • ✅ How to prioritize settings for strength, speed, quality, or accuracy
  • ✅ What 130+ manufacturer data sheets reveal about filament properties

The Problem: Too Many Settings, Not Enough Guidance

Section titled “The Problem: Too Many Settings, Not Enough Guidance”

Instead of claiming one perfect setting exists, what we’re really doing is optimizing for a specific goal, whether that’s:

  • Aesthetics and quality - For display models and miniatures
  • Strength - For functional parts and mechanical components
  • Flexibility - For parts that need to bend or compress
  • Surface roughness - For smooth finishes or specific textures
  • Dimensional accuracy - For parts that must fit together precisely

Each goal requires different settings, and that’s where most tutorials fall short.

My Approach: Using Research, Not Just Opinion

Section titled “My Approach: Using Research, Not Just Opinion”

Rather than just giving you my opinion, I’m a big proponent of using Google Scholar. It’s a search engine for academic papers and journal articles. I typically filter my searches to find new articles (e.g., since 2021) to see what parameters affect what properties.

For example, a quick search for “FDM 3D printing process parameters” brings up articles that show exactly how slicer settings impact mechanical properties. I found one article I really like that provides a systematic survey of these parameters and their influence on part characteristics. It has a great diagram showing how settings affect:

  • Build time
  • Dimensional accuracy
  • Surface roughness
  • Flexural, compressive, and tensile strength

This research is incredibly helpful, but it’s not easy for everyone to parse. So, I started working on a program to help pull these settings from journal articles and give you a clear reference.

Introducing: The OrcaSlicer Expert Assistant

Section titled “Introducing: The OrcaSlicer Expert Assistant”

I’m excited to show you what I’ve built: The OrcaSlicer Expert Assistant.

➡️ Try the FREE app now:
https://settings.minimal3dp.com
No registration required • Works in your browser • Based on real research

While it’s named for OrcaSlicer, the principles and recommendations should work for any slicer you use, including PrusaSlicer and Cura.

The tool is designed to be simple and intuitive.

First, you select the filament you want to use. This is more than just a name—I’ve fed data from over 130 manufacturer technical data sheets into the app. I used AI to extract all the technical information (strength, heat distortion, glass transition temperature, chemical resistance, etc.) from those PDFs.

This means when you select a material like ABS, the app will give you:

Important Warnings:

  • 🔥 Heated enclosure required
  • 💧 Must be dried before use
  • 🌫️ Ventilation needed (releases fumes)

Material Benefits:

  • ✅ Good chemical resistance
  • ✅ High strength-to-weight ratio
  • ✅ Good heat resistance

You can also check out my complete filament guide for more details on each material type.

Next, you set your print priority on a scale from 0 (I don’t care) to 100 (max priority) for four key areas:

  • 💪 Strength: For functional parts, tools, and mechanical properties
  • ⚡ Speed: Great for iterating on a design and rapid prototyping
  • ✨ Quality: For display models, miniatures, and aesthetics
  • 📏 Accuracy: Critical for prints that need to fit together

The app understands that these priorities often conflict. For example, maximum speed usually reduces quality. The tool balances these trade-offs based on your priorities.

Once you hit “Get Expert Recommendations,” the tool analyzes your priorities and the filament data to give you a solid starting point.

Example 1: Dimensional Accuracy Priority

If you set Dimensional Accuracy to 100%:

  • ⚠️ The app will point out that shrinkage is a factor
  • 🐌 Recommend a slower outer wall speed (improves precision)
  • 🕸️ Recommend using the Arachne wall generator (better dimensional control)
  • 📐 Suggest layer height of 0.12 to 0.16mm (optimal for accuracy)

Example 2: Strength + Speed Priority

If you bump up Mechanical Strength and Build Time:

  • 🔥 Recommend higher print temperatures (better layer adhesion)
  • 📊 Suggest specific infill patterns (grid or honeycomb for strength)
  • ⚙️ Optimize speeds and acceleration for faster prints
  • 🎯 Balance layer height for strength vs speed trade-off

What makes this tool different from other “best settings” guides:

130+ manufacturer technical data sheets analyzed
Academic research from peer-reviewed journals
Systematic approach to parameter optimization
Material-specific recommendations based on properties
Priority-based balancing of conflicting goals

None of this is “perfect,” but it’s designed to give you a clear idea of how to set your settings in your slicer based on actual research, not just my opinion.

I’m not saying this is the be-all, end-all, but if you’re new to 3D printing and trying to figure out what settings to use, this should be a great start for you.

If you find the OrcaSlicer Expert Assistant helpful, check out my other free calculators:

I did add some affiliate links for different filaments on the side of the app. My hope is that this will help generate a little revenue that I can plow right back into my work for the channel and developing more free tools for the community.

If you’d like to support my work:

Is the OrcaSlicer Expert Assistant really free?

Yes! The app is 100% free with no registration required. It runs entirely in your browser and doesn’t collect any personal data. I may add affiliate links to filament brands to help support development.

Will this work with other slicers like PrusaSlicer or Cura?

Yes! While it’s designed for OrcaSlicer, the principles and most settings translate directly to PrusaSlicer (OrcaSlicer’s parent), Cura, and other FDM slicers. The parameter names might be slightly different, but the concepts are universal.

How accurate are the recommendations?

The recommendations are based on peer-reviewed academic research and technical data from 130+ manufacturer data sheets. However, they’re starting points that should be refined through calibration for your specific printer, material batch, and environment. Think of it as an educated starting point rather than a final answer.

What if I have multiple priorities (e.g., both strength AND quality)?

That’s exactly what the priority sliders are for! Set each priority from 0-100, and the app will balance the recommendations. For example, if you set both strength and quality to 80, it will find settings that optimize both without sacrificing too much of either.

Which filaments are included in the database?

The app includes data for major filament types (PLA, PETG, ABS, ASA, Nylon, TPU, etc.) compiled from 130+ manufacturer technical data sheets. Check my complete filament guide for detailed comparisons.

Can I request new features or report bugs?

Absolutely! Please email me at minimal3dp@gmail.com or comment on the YouTube video. I’m actively developing this tool and appreciate all feedback from the community.

Please, check out the app and let me know what you think. If you have any questions, comments, or notice any errors, please let me know.

🚀 Launch the OrcaSlicer Expert Assistant

https://settings.minimal3dp.com

Get research-backed slicer settings in seconds

After you get your recommended settings:

  1. Calibrate your printer - Ensure your printer is properly calibrated
  2. Learn OrcaSlicer features - Master the slicer’s advanced features
  3. Calculate print costs - Know the true cost of your prints
  4. Join the community - Ask questions and share results

I look forward to talking to you again soon. Thanks, and have a great day!