Hola Buenas a todos tengo un problema con mi ramps 14 el termistor se daño mientras imprimía y por lo que veo se daño e puerto del sensor TEMP_SENSOR_0 1 ya que puse un nuevo termistor de 100k como el que venia usando hasta ahora y físicamente no lo reconoce ya que no marca temperatura. una idea era cambiar y usar el puerto del termistor 1 pero al poner el sensor _0 en 0 y el sensor_1 en 1 me da un error :
#error "TEMP_SENSOR_0 is required."
en
#if !HAS_HEATER_0
#error "HEATER_0_PIN not defined for this board."
#elif !PIN_EXISTS(TEMP_0) && !(defined(MAX6675_SS) && MAX6675_SS >= 0)
#error "TEMP_0_PIN not defined for this board."
#elif ((defined(__AVR_ATmega644P__) || defined(__AVR_ATmega1284P__)) && (!PIN_EXISTS(E0_STEP) || !PIN_EXISTS(E0_DIR)))
#error "E0_STEP_PIN or E0_DIR_PIN not defined for this board."
#elif ( !(defined(__AVR_ATmega644P__) || defined(__AVR_ATmega1284P__)) && (!PIN_EXISTS(E0_STEP) || !PIN_EXISTS(E0_DIR) || !PIN_EXISTS(E0_ENABLE)))
#error "E0_STEP_PIN, E0_DIR_PIN, or E0_ENABLE_PIN not defined for this board."
#elif TEMP_SENSOR_0 == 0
#error "TEMP_SENSOR_0 is required."
#endif
Alguien me puede ayudar a configurar el sensor 1 ? ya que el 0 aparentemente esta dañado físicamente
acá la configuración que estoy intentando
#define TEMP_SENSOR_0 0
#define TEMP_SENSOR_1 1
#define TEMP_SENSOR_2 0
#define TEMP_SENSOR_3 0
#define TEMP_SENSOR_4 0
#define TEMP_SENSOR_BED 0
#define TEMP_SENSOR_CHAMBER 0
Muchas gracias
Victor