由于当您连接到 12 V 时床是温暖的,这意味着床和接线都很好。听起来您的万用表不太准确,读数为 0.5 Ω(或者您不小心测量了其他电路),但不用担心。
由于两块板都不为床供电,因此它似乎可能是固件设置。为了帮助解决这个问题,请查看您的配置文件,该pins_ramps.h
文件可能会有所帮助。
作为第一项检查,您的mks_gen_L.h
文件应如下所示;
#if HOTENDS > 2 || E_STEPPERS > 2
#error "MKS GEN L supports up to 2 hotends / E-steppers. Comment out this line to continue."
#endif
#define BOARD_NAME "MKS GEN L"
//
// Heaters / Fans
//
// Power outputs EFBF or EFBE
#define MOSFET_D_PIN 7
//
// CS Pins wired to avoid conflict with the LCD
// See https://www.thingiverse.com/asset:66604
//
#ifndef X_CS_PIN
#define X_CS_PIN 59
#endif
#ifndef Y_CS_PIN
#define Y_CS_PIN 63
#endif
#include "pins_RAMPS.h"
现在您需要确认的是您的床已连接到 D7。