-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delay Z-Axis on Autoload #4280
Delay Z-Axis on Autoload #4280
Conversation
Commit 26369ac made some code obsolete. The behavior is now consistent in all load cases (autoload, manual, gcode, mmu). If MIN_Z_FOR_LOAD is set, it will always raise the z-axis after the fast load sequence. |
All values in bytes. Δ Delta to base
|
eeab619
to
7af3906
Compare
40d7a0a
to
c4409b8
Compare
69e4ce5
to
af19cf4
Compare
5d21f6b
to
b4c8b87
Compare
ccd833d
to
a984c7c
Compare
9d3bbd4
to
82ca402
Compare
82ca402
to
b371cb7
Compare
b371cb7
to
92b865d
Compare
92b865d
to
b3d1b21
Compare
b3d1b21
to
1d2f427
Compare
1d2f427
to
aec53ce
Compare
aec53ce
to
c364654
Compare
Delay z-axis movement when the operators hand is close to the printhead.
c364654
to
5efae44
Compare
@gudnimg @sarusani is the #4280 (review) resolved if so please mark it as "resolved". |
Looked over the changes again and the PR looks good to me. I haven't tested the changes though. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me. It would be nice to get another approval as well (@3d-gussner ?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested with MK404
- MK3S
- MK3
Delay z-axis movement when the operators hand is close to the printhead.
This is my proposed solution to resolve #4115.
The basic idea is to wait with z-axis movement until the user removed his hand from the printhead.
Instead of moving as soon as the filament sensor is triggered, the filament is first grabbed by "fast load" and after that the z-axis is moved up.
How to reproduce:
Original behavior: Printhead lifts Z position to MIN_Z_FOR_LOAD (50mm) as soon as filament sensor is triggered and then starts fast loading the filament.
New behavior: Printhead grabs filament with fast load and then moves Z axis up to MIN_Z_FOR_LOAD (50mm).