Babystepping without an Display
Hi,
unfortunaly i've got no LCD, but i would love to use babystepping.
Is there a way to activate babystepping by pushing on my encoder button?
thanks!:))
unfortunaly i've got no LCD, but i would love to use babystepping.
Is there a way to activate babystepping by pushing on my encoder button?
thanks!:))
Comments
- M290 Z<babysteps> - Correct by adding baby steps for Z mm
but it will always have a delay of the buffer until it takes effect so not best.Encoder only can be done if you can program, also a bit hacky. Make the click select babystepping and encode be encoder then that is the only thing you can do with the encoder. Just configure lcd controller to use these keys without defining a display.
I added in uniconfig.h in void uiInitKeys():
UI_KEYS_INIT_BUTTON_LOW(48);
UI_KEYS_INIT_CLICKENCODER_LOW(50,52);
under void uiCheckKeys(uint16_t &action) i added:
UI_KEYS_BUTTON_LOW(48,UI_ACTION_Z_BABYSTEPS);
is this the right direction im going?