Homing XY

Répondre
cafewah
Messages : 19
Enregistré le : 09 janv. 2019 16:15

Homing XY

Message par cafewah »

Bonjour,

Je souhaite faire un homing uniquement su XY,

je comprends bien qu'il faut modifier le config.h en modifiant le cycle de homing.

en mettant
#define HOMING_CYCLE_0 (1 << X_AXIS)
#define HOMING_CYCLE_1 (1 << Y_AXIS)


Mais je ne le trouve pas dans le fichier ?!?

Merci de votre aide
mstrens
Messages : 2611
Enregistré le : 27 févr. 2018 12:58

Re: Homing XY

Message par mstrens »

Le code à changer est à partir de la ligne 167
#define HOMING_CYCLE_0 (1<<Z_AXIS) // REQUIRED: First move Z to clear workspace.
#define HOMING_CYCLE_1 ((1<<X_AXIS)|(1<<Y_AXIS)) // OPTIONAL: Then move X,Y at the same time.
// #define HOMING_CYCLE_2 // OPTIONAL: Uncomment and add axes mask to enable
Répondre