Buenos días, sigo con la configuración de la Prusa i3, y van apareciendo problemillas. Ya estoy en las últimas fases de la puesta a punto, pero ahora me encuentro con que los finales de carrera no actuan. Al accionarlos manualmente, se encienden los LEDs indicando que funcionan, pero no paran los motores (ninguno de ellos).
Transcribo la información que tengo.
La configuración que tengo en Marlin es la siguiente:
// The pullups are needed if you directly connect a mechanical endswitch between the signal and ground pins.
const bool X_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Y_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Z_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool X_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
//#define DISABLE_MAX_ENDSTOPS
//#define DISABLE_MIN_ENDSTOPS
He cambiado el "false" por "true", pero tampoco funciona.
Escribiendo M119 en el Monitor serie del IDE de Marlin, unas veces da esta lectura:
Estado en reposo:
Reporting endstop status
x_min: TRIGGERED
x_max: TRIGGERED
y_min: TRIGGERED
y_max: TRIGGERED
z_min: TRIGGERED
z_max: TRIGGERED
ok
Activando cada uno de los finales carrera:
Reporting endstop status
x_min: open
x_max: TRIGGERED
y_min: open
y_max: TRIGGERED
z_min: open
z_max: TRIGGERED
ok
Y otras esta:
Estado en reposo:
Reporting endstop status
x_min: TRIGGERED
y_min: TRIGGERED
z_min: TRIGGERED
ok
Activando cada uno de los finales carrera:
Reporting endstop status
x_min: open
y_min: open
z_min: open
ok
La conexión en la RAMPs es correcta (1, 3 y 5) y el modelo de endstop, es el de tres cables montado sobre una placa con LEd incorporado. Supongo que también será problema de configuración, pero ya no se donde probar.
Agradecería alguna sugerencia
Gracias por la atención.
Transcribo la información que tengo.
La configuración que tengo en Marlin es la siguiente:
// The pullups are needed if you directly connect a mechanical endswitch between the signal and ground pins.
const bool X_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Y_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Z_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool X_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
//#define DISABLE_MAX_ENDSTOPS
//#define DISABLE_MIN_ENDSTOPS
He cambiado el "false" por "true", pero tampoco funciona.
Escribiendo M119 en el Monitor serie del IDE de Marlin, unas veces da esta lectura:
Estado en reposo:
Reporting endstop status
x_min: TRIGGERED
x_max: TRIGGERED
y_min: TRIGGERED
y_max: TRIGGERED
z_min: TRIGGERED
z_max: TRIGGERED
ok
Activando cada uno de los finales carrera:
Reporting endstop status
x_min: open
x_max: TRIGGERED
y_min: open
y_max: TRIGGERED
z_min: open
z_max: TRIGGERED
ok
Y otras esta:
Estado en reposo:
Reporting endstop status
x_min: TRIGGERED
y_min: TRIGGERED
z_min: TRIGGERED
ok
Activando cada uno de los finales carrera:
Reporting endstop status
x_min: open
y_min: open
z_min: open
ok
La conexión en la RAMPs es correcta (1, 3 y 5) y el modelo de endstop, es el de tres cables montado sobre una placa con LEd incorporado. Supongo que también será problema de configuración, pero ya no se donde probar.
Agradecería alguna sugerencia
Gracias por la atención.
Comentario