Prusa MK4 + Bed Visualizer #619
-
Hi, I have used your Bed Visualizer with my MK3s... now I have an MK4 and I'm curious if it will work with it? I'm hesitant to simply press the button and find out. I dont want to crash the nozzle or do something else bad. Please let me know if it will capture the bed level data from an MK4. |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 2 replies
-
Don't have one so can't confirm or deny. As long as you use the proper gcode for your printer for leveling there should be no issue. |
Beta Was this translation helpful? Give feedback.
-
Ok... MK4 uses G29. So I changed the collection tab commands to: @BEDLEVELVISUALIZER It runs the probe sequence across the bed, but never reports anything graphically. It just continues to say, "Please wait, retrieving current mesh". I have to hit cancel to break out of it. Any ideas, what I'm missing? |
Beta Was this translation helpful? Give feedback.
-
Those command look suspiciously similar to UBL. Try the command |
Beta Was this translation helpful? Give feedback.
-
You should move the command |
Beta Was this translation helpful? Give feedback.
-
Thanks for this post. With the following instructions I get a proper visualization.
|
Beta Was this translation helpful? Give feedback.
UPDATE:
Ok... I got something... I looked at what the Prusa Slicer was using in the start gcode: here is the updated collection code I used...
@BEDLEVELVISUALIZER ; instruct plugin to start recording responses from printer.
G29 P1
G29 P3.2 ; interpolate mbl probes
G29 P3.13 ; extrapolate mbl outside probe area
G29 A ; activate mbl
M420 V
the graphics were rendered... but wow! It gave back a lot of points and the MK4 suprisingly had a large variance. Although MK4 does a great job with bed leveling... its still nice to see what is going on with the bed.
I believe it needed the G29 P3.2 to interpolate and make a valid mesh.
Hopefully this will help others. Feedback still appreciated.