我的定制 3D 打印机将所有东西都倒过来打印。我猜这是一个归位问题,因为电机以正确的方向移动。
在 Pronterface 中,
- 如果我按 -Y - 床向前移动(朝向 Y 终点挡块)
- 如果我按 +Y - 床向后移动(远离 Y 限位器)
- 如果我按 -X - hotend 向左移动(朝向 X 端点)
- 如果我按 +X - hotend 向右移动(远离 X 限位器)
在坡道 1.4 上:
- X 限位器连接在第一个引脚上
- Y 限位器连接在第 3 个引脚上
- Z 限位器连接在第 5 个引脚上
(引脚 2、4 和 6 未使用(这些是用于 MAX_ENDSTOP 吗?))
下面是我的 Marlin 配置
#define X_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop.
#define Y_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop.
#define Z_MIN_ENDSTOP_INVERTING true // Set to true to invert the logic of the endstop.
#define X_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
#define Y_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
#define Z_MAX_ENDSTOP_INVERTING false // Set to true to invert the logic of the endstop.
#define Z_MIN_PROBE_ENDSTOP_INVERTING false // Set to true to invert the logic of the probe.
#define X_HOME_DIR -1
#define Y_HOME_DIR -1
#define Z_HOME_DIR -1
#define INVERT_X_DIR false
#define INVERT_Y_DIR false
#define INVERT_Z_DIR false
我附上了3张照片。
- 显示 hotend 的 Home 位置。Y 电机在后面,Y 限位器在前面。
- 显示倒印。
- Pronface 屏幕截图(显示实际的 G 代码文件)
我尝试翻转电机电缆,但这会反转电机方向我也试过 INVERT_Y_DIR true,但没有运气。
请帮我。我究竟做错了什么?