Skip Navigation

My Klipperized Mk3s and A1

I need to print some improved tubing connectors, 3 different types - 80 Pcs total, for a pair of crappy shelving units my Wife bought off of Walmart. The originals were as minimal material as possible without missing the nylon tree completely.

The Klipperized Mk3s with a .60mm nozzle is nearly as fast as the mini with a .40mm nozzle. Once again proving it's not how fast you say you can go, but how fast the parts let you go..........

12
12 comments
  • Can you explain what the effects are of "Klipperzing". I know they usually run on Marlin, right? But I'm not sure where the difference actually lies.

    • Yes, Prusa runs on Marlin which isn't a bad thing, but so does Bambu printers.

      Klipper does a few things for me.

      1. Klipper allows for a lot of customization if you want it. Everything is a text file. And your printer.cfg is easily editable. And is a cheap way to turn your Mk3s/+ into a Mk3.5 for easily under $100US-- depending on what recommended RPi you decide to buy. Accelerometers are dirt cheap. I bought the expensive recommended $20 KUSBA plus a $5 data cable because I didn't have one. The RPi 4b I already had for years.

      2. It gives the Mk3s a 32bit controller thanks to a Raspberry Pi 4b running the printer now rather than the 8bit RamBo factory board. The RamBo merely relays the moves that klipper tells it to do.

      3. I can now use an inexpensive accelerometer to setup input shaping very easily.

      4. This gives the printer the ability to print faster without a drop in quality. I went from printing 45mm2/sec to 80mm2/sec and accelerations from 1200mm2 to 4000mm2.

      5. This particular conversion is easily reversible in about 10 minutes if I should ever decide I don't like it. It's merely a matter of re-flashing the firmware to the RamBo. And reinstalling OctoPrint to the RPi.

      6. This does not mean it's now as fast as my mini. It's not and never will be. But it's far better than it was. For example, in this run of parts, when printing the same part, (identical test connector), with the same filament, the print times are within 10 minutes of each other. The only difference being the Mk3s has a .60mm nozzle installed and the Mini has a .40mm Nozzle installed. I run a .40mm nozzle in the Mini because Bambu optimizes it's printers specifically for that size. And there is no difference in tolerances and quality. The parts are perfectly interchangeable.

      If you are interested, this is the git hub I used to klipperize my Mk3s

    • With Klipper you are offloading the math onto a more capable single board computer and using the microcontroller more like a central hub to relay information and the real-time critical aspects.

      In a SBC it is hard to do real-time stuff but there is access to the much faster processor and far more advanced cores and arithmetic logic units. This makes it possible to add more shaping into the input for directions. So each axis can move very quickly near the limits of how fast the physical hardware is capable. The calculations are made to ramp the speed up and down in ways that a little 8/16 bit microcontroller is incapable of achieving. This is also why printers with a 32 bit micro are a little faster as well. The microcontrollers used are like 16-72 MHz but there is no overhead like with an operating system. However, they are also running the PID control algorithms for the bed and hotend. You need both a SBC and a microcontroller unless you get into super niche setups. OS kernel configurations have issues with real-time tasks due to some of the ways kernel space is abstracted in an OS and how the CPU scheduler juggles running process threads and interrupts in the OS and hardware. People do not typically mess with a SBC on this level like adding core isolation with a dedicated thread with the CPU scheduler set to real time. There are other potential factors like core spin up, temperature, and power management that need addressing in the kernel too for RT. This is as far as I understand it, as this is a curiosity I've barely scratched the surface of a few times. Hopefully this abstract overview kinda helps.

      Think of a microcontroller like a simplified computer from the late 1980s. It is about like an original Nintendo Gameboy but all the extras like memory and RAM are built into a single little chip and the architecture is simplified a little bit. Something like a Rπ SBC is about the same class as a 10yo smartphone. It is actually a TV set top box tuner chip with all the set top box stuff ignored and undocumented.

      Marlin is like Arduino firmware. It is just a project that is well organized and setup with an extensive configuration menu about like configuring the Linux kernel. You are prompted with options and you select what is relevant. This is then compiled in a Makefile and you upload the binary to the microcontroller just like an Arduino. The software is setup to make it easy to add similar hardware and maximize entry points so that you can try novel stuff. Unfortunately, Prusa does not run Marlin like this. They are on their own branch of Marlin that specifically makes it difficult to configure and make changes. It also makes cloning a Prusa impossible in practice because they can make changes that will break compatibility. This is the underlying reason the real hobby hacker community that originated around RepRap and the MKx name moved to projects like Voron. The limitations and changes to Marlin were due to Prusa not wanting to break upgrade compatibility and sticking with the AVR microcontroller all the way up to the MK4. They pushed the micro really hard to do both the printer and multi material stuff along with all the fine tuning. So that is kinda the legacy reason for how things evolved.

      Personally, I don't care that my printer is a slow MK3S+. It works well without ever doing a calibration any more and I can print PLA, PETG, TPU, PC, and PA/ABS/ASA with a few caveats. I don't run my printer 24/7 or even daily, so I am slower than the machine.

      I got a little Kingroon KP3S to mess around with Klipper and see if I wanted to build a Voron. I decided not to. Running Klipper means you must setup and dial in all the fine tuning details that Prusa is doing for you with the original firmware. You lose the it just works factor. That is totally fine if your priorities align with this methodology. The KP3S is capable of running Klipper on the original board after just adding the Rπ and loading the firmware. That is probably the cheapest half decent way to mess around with a project printer in Klipper. I never use the thing though.

12 comments