I just got a Monoprice MP Mini Delta from an Indiegogo Campaign, but it came with no printed docs.
How do I get started?
I just got a Monoprice MP Mini Delta from an Indiegogo Campaign, but it came with no printed docs.
How do I get started?
Turns out an out of date manual was on the sd card that was included with the printer. But it was definitely out of date, as it referenced UI items that don't exist, and files that weren't on the SD card.
An updated manual can be found here or possibly out of date here
cat.gcode
you've got an old manual.cat.gcode
as I did. The model I found rammed the print head right into the bottom of the printer. The correct model works great (actually called auto00.g on the SD card)The following are some problems I had and their solution
If you find you can print prebuilt gcodes fine (cat,viking,toothless), but can't seem to print any other models without the print head ramming into the bottom of the printer and going off to the side, you probably haven't setup the autoleveling gcode that's required. You can add something like the following line to your software, in a "startup" gcode section. This is detailed in the manual (just search for G29), and more info can be found here
; auto-levels the build plate with a overall vertical
; offset of 0.3mm with a center offset of -0.8mm
G29 C-0.8 Z0.3
If you find your first layer isn't sticking, or it seems like the plastic is balling up, you need to adjust your startup gcode line mentioned above , so it has a lower Z offset, like Z0.25 for example
G29 Z[offset] ; raises
G29 Z-[offset] ; lowers
Notes