Change default babystep values #2700
-
Is it possible to change the default toggle values for babystepping in touchscreen mode? I recently added a TFT35 E3 V3.0.1 to my Ender 3 Pro, and while it's a huge improvement over the stock screen, the options for babystepping while printing don't seem ideal. With the stock screen, I could babystep in increments of 0.025mm, while the TFT35 can only be set at 0.01, 0.1, or 1mm. 0.01mm feels way too granular, and a 1mm adjustment feels like it's pushing the definition of "baby" :) - which leaves 0.1mm as the only somewhat usable step size, although that's often too blunt. I tried skimming through the firmware source files to see where those default babystep values are defined, and came up empty (that said, I'm very much a MARLIN/C newbie). I appreciate any feedback on whether this is possible - thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
You can adjust your own values in "Common.c" at line 75. |
Beta Was this translation helpful? Give feedback.
-
Check in the "language_xx.h" file of your choice the following:
|
Beta Was this translation helpful? Give feedback.
You can adjust your own values in "Common.c" at line 75.
const float moveLenSteps[ITEM_MOVE_LEN_NUM] = {0.01f, 0.1f, 1, 10, 100};