8

I just got a Monoprice MP Mini Delta from an Indiegogo Campaign, but it came with no printed docs.

How do I get started?

0scar
  • 32,029
  • 10
  • 59
  • 135
Brad Parks
  • 271
  • 2
  • 9

1 Answers1

9

Updated Manual

  • 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

Resources and sample files

  • A very helpful Facebook group has a bunch of files that are good sample prints. If your manual says you can print a cat.gcode you've got an old manual.
  • Note: Don't try and just google 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)
  • Another great reference site appears to be https://www.mpminidelta.com/, and this reddit

Common Problems and Solutions

The following are some problems I had and their solution

Can't print custom models

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 

First layer doesnt stick

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
  • Please try a positive offset value first.
  • Each printer will require fine tuning in regards to the offset value.
  • Start with a higher value and decrease as necessary to get good first layer adhesion.
  • Using a negative offset value may send the nozzle digging into the build plate.
Brad Parks
  • 271
  • 2
  • 9
  • 1
    This is effectively a link-only answer; on its own it does not contain any useful information for someone looking to get started. An answer is supposed to answer the question and, in this case, should help someone get started. You're just pointing the reader to other websites to get the information they need. – Tom van der Zanden Aug 14 '17 at 06:38
  • 2
    There's lots of info here - manual is on sd card, manual is very out of date, where missing files can be found, sample similar files on the internet cause printer to malfunction. That's information - did you know the answer to those questions before you read this answer? True that this ends up being links as well, but I asked and answered the question as it took me about 45 min to get my printer working by googling and trying to find info, and I would've appreciated this answer myself. Thanks! – Brad Parks Aug 14 '17 at 11:17
  • I agree and don't know what the first guy was tlaking about, unless this answer was majorly upgraded. I mean it even gives gcode to solve a problem. – user430788 Sep 19 '17 at 02:11
  • In his defense, it has been upgraded as I found more issues that were problematic (gcode being one of them!), but I still thought it was relevant enough to warrant a post ;-) – Brad Parks Sep 19 '17 at 11:52