Aller au contenu

PETG Sakata

MKS Robin / Marlin / autoleveling


Messages recommandés

Bonjour,

 

Je viens de mettre à jour mon U20 (avec mks robin) avec les source officiel de marlin branche 2.x

Tout nickel, sur les mouvements / homing mais j'ai un soucis sur l'autoleveling (capteur capacitif) bref j'ai repris mes réglages, mais il me fait les 9 points au même endroit...

 

 

#if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)

  // Set the number of grid points per dimension.
  #define GRID_MAX_POINTS_X 3
  #define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X

// j'ai ajouté les 5 lignes en dessous, pour définir mes borne, dans le configuration.h example ça n'y été pas comme dans ma version précédente
  // Set the boundaries for probing (where the probe can reach).
  #define MIN_PROBE_EDGE_LEFT 55
  #define MIN_PROBE_EDGE_RIGHT 245
  #define MIN_PROBE_EDGE_FRONT 55
  #define MIN_PROBE_EDGE_BACK 245

  // Probe along the Y axis, advancing X after each column
  //#define PROBE_Y_FIRST

  #if ENABLED(AUTO_BED_LEVELING_BILINEAR)

    // Beyond the probed grid, continue the implied tilt?
    // Default is to maintain the height of the nearest edge.
    //#define EXTRAPOLATE_BEYOND_GRID

    //
    // Experimental Subdivision of the grid by Catmull-Rom method.
    // Synthesizes intermediate points to produce a more detailed mesh.
    //
    //#define ABL_BILINEAR_SUBDIVISION
    #if ENABLED(ABL_BILINEAR_SUBDIVISION)
      // Number of subdivisions between probe points
      #define BILINEAR_SUBDIVISIONS 3
    #endif

  #endif

#elif ENABLED(AUTO_BED_LEVELING_UBL)

vous auriez une idée d'a côté de quoi je suis passé ?

Lien vers le commentaire
Partager sur d’autres sites

Bon désolé, mais j'ai trouvé ma réponse, 

 

La gestion du probing a changé, les lignes 

 // Set the boundaries for probing (where the probe can reach).
  #define MIN_PROBE_EDGE_LEFT 55
  #define MIN_PROBE_EDGE_RIGHT 245
  #define MIN_PROBE_EDGE_FRONT 55
  #define MIN_PROBE_EDGE_BACK 245

sont complètement inutiles

 

en réglant ceci correctement, le leveling se fait parfaitement :

 

// Certain types of probes need to stay away from edges
#define MIN_PROBE_EDGE 55
Modifié (le) par 0bey
Lien vers le commentaire
Partager sur d’autres sites

Créer un compte ou se connecter pour commenter

Vous devez être membre afin de pouvoir déposer un commentaire

Créer un compte

Créez un compte sur notre communauté. C’est facile !

Créer un nouveau compte

Se connecter

Vous avez déjà un compte ? Connectez-vous ici.

Connectez-vous maintenant
×
×
  • Créer...