|
6 yıl önce | |
---|---|---|
.. | ||
Touch Mi - Marlin-bugfix-1.1.x | 6 yıl önce | |
README.md | 6 yıl önce |
I use this one on my Ender 3 with a Touch Mi
Configuration.h
and Configuration_adv.h
are based on Hotends.fr docs with some more modifications. I used Marling-bugfix-1.1.x
and not the sources provided by hotends.fr
, so i don't have the Touch Mi custom menus.
S_CURVE_ACCELERATION
is enabledPIDTEMPBED
is enabledRESTORE_LEVELING_AFTER_G28
is enabled (see G29 ABL for details)PROGMEM
and use[OctoPrint](), SDSUPPORT
is disabled but i can keep DISABLE_M503
unusedGRID_MAX_POINTS_X
& GRID_MAX_POINTS_Y
are set to 5*_PROBE_BED_POSITION
defines are updated (see Below)I've modified the *_PROBE_BED_POSITION
defines to use probe offsets
// Set the boundaries for probing (where the probe can reach).
#define LEFT_PROBE_BED_POSITION MIN_PROBE_EDGE
#define RIGHT_PROBE_BED_POSITION (X_BED_SIZE + X_PROBE_OFFSET_FROM_EXTRUDER - MIN_PROBE_EDGE)
#define FRONT_PROBE_BED_POSITION MIN_PROBE_EDGE
#define BACK_PROBE_BED_POSITION (Y_BED_SIZE + Y_PROBE_OFFSET_FROM_EXTRUDER - MIN_PROBE_EDGE)
Here the updated secion of Config.h