Welcome! Log In Create A New Profile

Advanced

Problema endstop

Posted by adwe 
Problema endstop
September 13, 2014 10:01AM
Salve allora ho un problema con gli endstop, in pratica tutte le assi si muovono solo in una direzione ma se provo a tornare indietro dice
echo:endstops hit: Y:79.94 come se avesse colpito un endstop, ma se io tengo premuto l' endstop l' asse si muove in tutte le direzioni!, penso sia un problema a livello firmware qui c' e' il mio config.h :

#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors

#ifndef ENDSTOPPULLUPS
// fine Enstop settings: Individual Pullups. will be ignored if ENDSTOPPULLUPS is defined
#define ENDSTOPPULLUP_XMAX
#define ENDSTOPPULLUP_YMAX
#define ENDSTOPPULLUP_ZMAX
#define ENDSTOPPULLUP_XMIN
#define ENDSTOPPULLUP_YMIN
//#define ENDSTOPPULLUP_ZMIN
#endif

#ifdef ENDSTOPPULLUPS
// #define ENDSTOPPULLUP_XMAX
// #define ENDSTOPPULLUP_YMAX
// #define ENDSTOPPULLUP_ZMAX
#define ENDSTOPPULLUP_XMIN
#define ENDSTOPPULLUP_YMIN
#define ENDSTOPPULLUP_ZMIN
#endif

// 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

Non riesco propio' a trovare il problema!
Re: Problema endstop
September 13, 2014 10:25AM
Non hai letto le FAQ...

Prima di tutto si provano gli end stop comando M119 se nella situazione neutra (non premuti) ti da triggered o chiuso significa che o li hai montati sul NO oppure devi invertire la logica:
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.

Se hai end stop ottici di altro tipo metti true...

Edited 1 time(s). Last edit at 09/13/2014 10:25AM by MagoKimbra.


COMPRA ITALIANO - sostieni le nostre aziende - sostieni la nostra gente - sostieni il tuo popolo - sosterrai te stesso.
Alberto C. felice possessore di una Kossel K2
My Blog - My Thingiverse
Re: Problema endstop
September 13, 2014 12:13PM
Quote
MagoKimbra
Non hai letto le FAQ...

Prima di tutto si provano gli end stop comando M119 se nella situazione neutra (non premuti) ti da triggered o chiuso significa che o li hai montati sul NO oppure devi invertire la logica:
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.

Se hai end stop ottici di altro tipo metti true...
Grazie mille ma in questo modo mi si propone un altro problema, adesso arriva fino all`endstop lo clicca, si ferma, ma se io clicco per continuare in quella direzione tenta lo stesso di andarci
Sorry, only registered users may post in this forum.

Click here to login