在提问之前,这是我的设置;
- Prusa i3(带有主板Mks Gen v1.2)
- 作为切片机
- 马林源代码
我的主要任务是将3D打印机转换为巧克力打印机。我用巧克力挤出机代替了长丝挤出机。我的问题就在那儿开始。因为,归位时,新的挤出机在y轴上稍微停止了运动。它要离开标准的20x20厘米床。其他X和Z轴正常。
因此,我按照#defines
下面的解释进行操作,但是通过归位,我什至无法产生任何毫米的差异。打印机归位时,它们都将被忽略。它停在硬件端点上,最终停在那里。
我只想为Y轴偏移10毫米。
从此开始;
// Travel limits after homing
#define X_MAX_POS 200
#define X_MIN_POS 0
#define Y_MAX_POS 190 <<<< (tested with 190 and 210)
#define Y_MIN_POS 0
#define Z_MAX_POS 200
#define Z_MIN_POS 0
和这个;
// The position of the homing switches
#define MANUAL_HOME_POSITIONS // If defined, MANUAL_*_HOME_POS below will be used
//Manual homing switch locations:
// For deltabots this means top and center of the cartesian print volume.
#define MANUAL_X_HOME_POS 0
#define MANUAL_Y_HOME_POS 10 <<< (tested with 10 or -10)
#define MANUAL_Z_HOME_POS 0
我还使用了切片器工具(重复层)设置,其中提到了与归位相关的值,但那里也没有乐趣。
任何输入高度赞赏。