Fluttering Z height when Arc Welder is on (first layer) #252
Replies: 3 comments 9 replies
-
The only reason that the Z would be adjusting on the first layer would be
the mesh bed settings you have set.
Read more here:
https://marlinfw.org/docs/gcode/G029-ubl.html
And M420 also has more info:
https://marlinfw.org/docs/gcode/M420.html
I have the exact same printer. The z-mesh bed levelling fade height will
also stop adjusting Z higher up on the model (generally 2mm is the
default).
Likely nothing to do with arcwelder, except that you may have mesh bed
levelling turned on in the start gcode in Cura when you are slicing using
arcwelder. .
- Just a fellow Arcwelder user
…On Thu, Dec 29, 2022 at 2:06 PM Dizzybird ***@***.***> wrote:
Hello, I'm sorry if this has already been addressed, but I was not able to
find a solution yet. I have Arc Welder installed on Cura slicer as well
I've used it on Octoprint. The issue I am running into is Z height is
moving and/or fluttering up and down, but only for the first layer. I can
see the bed moving up and down by very small increments when it is printing
the first layer. I have tried it with the Cura plugin as well on the
Octoprint plugin. I don't have this issue unless I turn on Arc Welding
feature. If I disable it, the issue goes away.
Any thoughts on why this is happening? I'm all ears and thank you for any
response one may have to assist!
My printer is an Ender 5 plus with updated Marlin Firmware
I only have this issue with Arc Welding on
I do NOT have Z hop on or any other feature that would cause this (that I
know of)
First layer is acceptable at best but ultimately have been turning Arc
welder off and then issue goes away
—
Reply to this email directly, view it on GitHub
<#252>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE5J4UG7CZAVHJE6AYUAVADWPXOMZANCNFSM6AAAAAATMKMC54>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
1 reply
-
If anyone has any ideas on why this would be happening, I would love to know the answer. I can't seem to find much info on ArcWelder troubleshooting for Z height issues. |
Beta Was this translation helpful? Give feedback.
7 replies
-
You have to enable arcs when you compile firmware. If you can see console
output from your printer, command M115 's report should show arcs as a
value of one if it was compiled as arcs.
Previously, the developer of ArcWelderLib and I were examining strange
behaviors with arc commands on Creality printers. We came to understand it
as caused by command truncation. The stock firmware could only hold like 60
character command in its buffer. Since arc commands were longer
(especially with dynamic precision), the command buffer would overrun,
causing partial truncation, and the first 3-10 characters would be
dropped. A third person suggested a new Marlin setting in the nightly
builds that specifically targeted this issue.
So we used the nightly build from that point in time to compile new
firmware for our ender printers that would enable long arcs. I also
increased the communication buffer to like 1023 bytes and turned on Serial
XON/XOFF or something. Without reexamining my own github history on
arcwelder, I don't remember the dates of that.
Boosted the firmware line processing speed from like 125 lines per second
with 3% retries to 420 lines per second with 0.1% retries in testing
(RepetierServer offers this communication testing functionality).
Anyway, overall, arcwelder is really just a gcode compression algorithm,
which offers very little improvements in print quality unless you're
dealing with print stuttering or if you just really want more
human-readable gcode.
…On Fri, Dec 30, 2022, 5:18 PM Dizzybird ***@***.***> wrote:
To answer your question about these settings. I did not change any
firmware settings or command length. I do not have Dynamic Precision on.
The only Enable Arcs I see is "enable travel arcs", and it is not on. Where
do I enable Arcs, and M115 outputs "arcs: 1" in the list?
—
Reply to this email directly, view it on GitHub
<#252 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE5J4UBVGZTQYXUBH4E2FLLWP5NUPANCNFSM6AAAAAATMKMC54>
.
You are receiving this because you commented.Message ID:
***@***.***
.com>
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Dizzybird
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I'm sorry if this has already been addressed, but I was not able to find a solution yet. I have Arc Welder installed on Cura slicer as well I've used it on Octoprint. The issue I am running into is Z height is moving and/or fluttering up and down, but only for the first layer. I can see the bed moving up and down by very small increments when it is printing the first layer. I have tried it with the Cura plugin as well on the Octoprint plugin. I don't have this issue unless I turn on Arc Welding feature. If I disable it, the issue goes away.
Any thoughts on why this is happening? I'm all ears and thank you for any response one may have to assist!
My printer is an Ender 5 plus with updated Marlin Firmware
I only have this issue with Arc Welding on
I do NOT have Z hop on or any other feature that would cause this (that I know of)
First layer is acceptable at best but ultimately have been turning Arc welder off and then issue goes away
Beta Was this translation helpful? Give feedback.
All reactions