Delta printing undersized May 19, 2020 04:08PM |
Registered: 9 years ago Posts: 893 |
//============================================================================= //============================== Movement Settings ============================ //============================================================================= // @section motion /** * Default Settings * * These settings can be reset by M502 * * Note that if EEPROM is enabled, saved values will override these. */ /** * With this option each E stepper can have its own factors for the * following movement settings. If fewer factors are given than the * total number of extruders, the last value applies to the rest. */ //#define DISTINCT_E_FACTORS /** * Default Axis Steps Per Unit (steps/mm) * Override with M92 * X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]] */ // #define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 80, 98 } // This is no longer used in Marlin 1.1.9 - it is now calculated below /** * Default Axis Steps Per Unit (steps/mm) * Override with M92 * X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]] */ // variables to calculate steps #define XYZ_FULL_STEPS_PER_ROTATION 200 // These are the setting for the stock Stepper Motors, pulleys and Belts on the AnyCubic Kossel #define XYZ_MICROSTEPS 16 #define XYZ_BELT_PITCH 2 #define XYZ_PULLEY_TEETH 20 /
Re: Delta printing undersized May 19, 2020 09:17PM |
Registered: 5 years ago Posts: 83 |
Re: Delta printing undersized May 20, 2020 05:18AM |
Registered: 9 years ago Posts: 893 |
Re: Delta printing undersized May 24, 2020 07:35AM |
Registered: 9 years ago Posts: 893 |