Skip to content
Snippets Groups Projects
mesh_bed_leveling.cpp 363 B
Newer Older
  • Learn to ignore specific revisions
  • #include "mesh_bed_leveling.h"
    
    
    #if ENABLED(MESH_BED_LEVELING)
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      mesh_bed_leveling mbl;
    
    Scott Lahteine's avatar
    Scott Lahteine committed
      mesh_bed_leveling::mesh_bed_leveling() { reset(); }
          
      void mesh_bed_leveling::reset() {
    
        active = 0;
    
    Scott Lahteine's avatar
    Scott Lahteine committed
        for (int y = 0; y < MESH_NUM_Y_POINTS; y++)
          for (int x = 0; x < MESH_NUM_X_POINTS; x++)
            z_values[y][x] = 0;
      }
    
    #endif  // MESH_BED_LEVELING