Auto Livellamento Piatto April 07, 2021 02:15PM |
Registered: 3 years ago Posts: 5 |
Re: Auto Livellamento Piatto April 08, 2021 05:59AM |
Registered: 7 years ago Posts: 1,059 |
Re: Auto Livellamento Piatto April 08, 2021 10:25AM |
Registered: 3 years ago Posts: 5 |
Re: Auto Livellamento Piatto April 09, 2021 04:08AM |
Registered: 7 years ago Posts: 1,059 |
*****************************************************************************************/ /** START MESH BED LEVELING or AUTO BED LEVELING LINEAR or AUTO BED LEVELING BILINEAR or UNIFIED BED LEVELING **/ // Set the number of grid points per dimension #define GRID_MAX_POINTS_X 3 #define GRID_MAX_POINTS_Y 3 /** END MESH BED LEVELING or AUTO BED LEVELING LINEAR or AUTO BED LEVELING BILINEAR or UNIFIED BED LEVELING **/ /** START AUTO BED LEVELING LINEAR or AUTO BED LEVELING BILINEAR **/ // Set the boundaries for probing (where the probe can reach). #define LEFT_PROBE_BED_POSITION 20 #define RIGHT_PROBE_BED_POSITION 180 #define FRONT_PROBE_BED_POSITION 20 #define BACK_PROBE_BED_POSITION 180
// Configuration settings loading #include "Configuration_Overall.h" #include "Configuration_Version.h" #ifndef CONFIGURATION_OVERALL #include "Configuration_Basic.h" #include "Configuration_Overall.h" #if MECH(CARTESIAN) #include "Configuration_Cartesian.h" #elif IS_CORE #include "Configuration_Core.h" #elif MECH(DELTA) #include "Configuration_Delta.h" #elif IS_SCARA #include "Configuration_Scara.h" #elif IS_MUVE3D #include "Configuration_Muve3D.h" #endif
Re: Auto Livellamento Piatto April 10, 2021 06:11AM |
Registered: 3 years ago Posts: 5 |
Re: Auto Livellamento Piatto April 11, 2021 06:52AM |
Registered: 7 years ago Posts: 1,059 |
Re: Auto Livellamento Piatto April 12, 2021 10:58AM |
Registered: 4 years ago Posts: 66 |
Re: Auto Livellamento Piatto April 12, 2021 11:00AM |
Registered: 4 years ago Posts: 66 |