Skip to content
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

Possible to implement "Z-Babystepping" to Adjustment Screen while printing? #679

Closed
seacred opened this issue May 23, 2020 · 4 comments · Fixed by #867
Closed

Possible to implement "Z-Babystepping" to Adjustment Screen while printing? #679

seacred opened this issue May 23, 2020 · 4 comments · Fixed by #867
Labels
enhancement New feature or request
Projects

Comments

@seacred
Copy link

seacred commented May 23, 2020

It would be really helpful, to implement Babystepping in the Adjustment screen to fine tune Z-Hight during printing.

@seacred seacred added the enhancement New feature or request label May 23, 2020
@UnchartedBull
Copy link
Owner

Will work on this after the v2 release.

@UnchartedBull UnchartedBull added this to To do in Future via automation May 24, 2020
@mikekscholz
Copy link

I left my custom control code originally in Issue #55 but here is my updated code that also works with Marlin 2.0.x+
I know its not a direct implementation but hopefully it helps.

controls:
-   children:
    -   children:
        -   additionalClasses: getLiveZ
            command: M290
            confirm: null
            name: Get
        -   additionalClasses: saveLiveZ
            command: M500
            confirm: null
            name: Save
        layout: horizontal
    -   default: 'Current Z Offset: ???'
        regex: Probe Offset ?Z:?([-+]?[0-9.]+)
        template: 'Current Z Offset: {0}mm'
    -   children:
        -   additionalClasses: babystepUp
            command: M290 Z0.02
            confirm: null
            name: Babystep Up
        -   additionalClasses: babystepDown
            command: M290 Z-0.02
            confirm: null
            name: Babystep Down
        -   additionalClasses: microstepUp
            command: M290 Z0.01
            confirm: null
            name: Microstep Up
        -   additionalClasses: microstepDown
            command: M290 Z-0.01
            confirm: null
            name: Microstep Down
        layout: horizontal
    layout: vertical
    name: Live-Z Probe Offset

@totalitarian
Copy link

Would love to see this

@UnchartedBull UnchartedBull removed this from To do in Future Jul 20, 2020
@UnchartedBull UnchartedBull added this to To do in v2 Release via automation Jul 20, 2020
@UnchartedBull UnchartedBull moved this from To do to In progress in v2 Release Jul 31, 2020
@UnchartedBull
Copy link
Owner

UnchartedBull commented Jul 31, 2020

Will be released with the next version. There are also some pictures attached to the PR if you want a sneak peek :)

@mikekscholz thanks for the snippet, helped a lot! 👍

v2 Release automation moved this from In progress to Done Jul 31, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
No open projects
v2 Release
  
Done
Development

Successfully merging a pull request may close this issue.

4 participants