在提问之前,这是我的设置;
- Prusa i3(带主板 Mks Gen v1.2)
- Repetier 作为切片器
- 马林源代码
我的主要任务是将我的 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
我还使用了切片器工具 (Repetier)设置,其中提到了与归位相关的值,但也没有任何乐趣。
任何输入高度赞赏。