|
Repetier Autoleveling mehr Testpunkte 12. July 2014 03:32 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 159 |
|
Re: Repetier Autoleveling mehr Testpunkte 12. July 2014 06:57 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 103 |
|
Re: Repetier Autoleveling mehr Testpunkte 12. July 2014 09:41 |
Registrierungsdatum: 13 Jahre zuvor Beiträge: 2.469 |

|
Re: Repetier Autoleveling mehr Testpunkte 12. July 2014 09:57 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 1.518 |
|
Re: Repetier Autoleveling mehr Testpunkte 12. July 2014 10:47 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 159 |
Quote
mantus
ich hab auf alle fälle schon youtube videos gesehen wo das auto bed leveling mehrere punkte abgefahren ist.
Ist also vermutlich schon in einer FW eingebaut.
[www.youtube.com]
// with accurate bed leveling, the bed is sampled in a ACCURATE_BED_LEVELING_POINTSxACCURATE_BED_LEVELING_POINTS grid and least squares solution is calculated
// Note: this feature occupies 10'206 byte
#define ACCURATE_BED_LEVELING
#ifdef ACCURATE_BED_LEVELING
#define ACCURATE_BED_LEVELING_POINTS 9
#define ACCURATE_BED_LEVELING_GRID_X ((RIGHT_PROBE_BED_POSITION - LEFT_PROBE_BED_POSITION) / (ACCURATE_BED_LEVELING_POINTS - 1))
#define ACCURATE_BED_LEVELING_GRID_Y ((BACK_PROBE_BED_POSITION - FRONT_PROBE_BED_POSITION) / (ACCURATE_BED_LEVELING_POINTS - 1))
// NONLINEAR_BED_LEVELING means: don't try to calculate linear coefficients but instead
// compensate by interpolating between the nearest four Z probe values for each point.
// Useful for deltabots where the print surface may appear like a bowl or dome shape.
// Works best with ACCURATE_BED_LEVELING_POINTS 5 or higher.
#define NONLINEAR_BED_LEVELING
#endif
|
Re: Repetier Autoleveling mehr Testpunkte 12. July 2014 11:08 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 159 |
Quote
Le-Seaw
Nein er hat schon recht mehr Punkte um so genauer.
Weil wenn du 9-12 anfährst ist es auch egal wenn dein X nicht gerade ist.
Bei 3 Punkten sollte X aber gut sitzen und nur y schief sein.
#define FEATURE_AUTOLEVEL 1
#define Z_PROBE_X1 20
#define Z_PROBE_Y1 20
#define Z_PROBE_X2 160
#define Z_PROBE_Y2 20
#define Z_PROBE_X3 100
#define Z_PROBE_Y3 160
denke wenn du da mehr werte dazumachst fährt er sie auch ab.
vermute es aber nur da ich Marlin nutze beim Autoleveln
|
Re: Repetier Autoleveling mehr Testpunkte 12. July 2014 11:21 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 376 |
|
Re: Repetier Autoleveling mehr Testpunkte 13. July 2014 08:00 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 159 |



13:35:10.798 : Bed x: 5.00 y: 5.00 z: 1.01 13:35:20.502 : Bed x: 195.00 y: 5.00 z: 1.01 13:35:30.226 : Bed x: 195.00 y: 195.00 z: 1.01 13:35:39.940 : Bed x: 5.00 y: 195.00 z: 1.01 13:35:39.980 : Eqn coefficients: a: 0.00 b: -0.00 d: 1.01 13:35:39.980 : planeNormal x: -0.00 y: 0.00 z: 1.00 13:35:39.980 : echo:endstops hit: X:195.00 Y:36.00 Z:1.01 13:35:40.020 : N14 G1 X0 Y0 F4800 *86
#define AUTO_BED_LEVELING_GRID
// with AUTO_BED_LEVELING_GRID, the bed is sampled in a
// AUTO_BED_LEVELING_GRID_POINTSxAUTO_BED_LEVELING_GRID_POINTS grid
// and least squares solution is calculated
// Note: this feature occupies 10'206 byte
#ifdef AUTO_BED_LEVELING_GRID
// set the rectangle in which to probe
#define LEFT_PROBE_BED_POSITION 5
#define RIGHT_PROBE_BED_POSITION 195
#define BACK_PROBE_BED_POSITION 195
#define FRONT_PROBE_BED_POSITION 5
// set the number of grid points per dimension
// I wouldn't see a reason to go above 3 (=9 probing points on the bed)
#define AUTO_BED_LEVELING_GRID_POINTS 2
#else // not AUTO_BED_LEVELING_GRID
// with no grid, just probe 3 arbitrary points. A simple cross-product
// is used to esimate the plane of the print bed
#define ABL_PROBE_PT_1_X 15
#define ABL_PROBE_PT_1_Y 180
#define ABL_PROBE_PT_2_X 15
#define ABL_PROBE_PT_2_Y 20
#define ABL_PROBE_PT_3_X 170
#define ABL_PROBE_PT_3_Y 20
#endif // AUTO_BED_LEVELING_GRID
// these are the offsets to the probe relative to the extruder tip (Hotend - Probe)
#define X_PROBE_OFFSET_FROM_EXTRUDER 0
#define Y_PROBE_OFFSET_FROM_EXTRUDER 31
#define Z_PROBE_OFFSET_FROM_EXTRUDER 1
#define Z_RAISE_BEFORE_HOMING 4 // (in mm) Raise Z before homing (G28) for Probe Clearance.
// Be sure you have this distance over your Z_MAX_POS in case
#define XY_TRAVEL_SPEED 100 // X and Y axis travel speed between probes, in mm/min
#define Z_RAISE_BEFORE_PROBING 5 //How much the extruder will be raised before traveling to the first probing point.
#define Z_RAISE_BETWEEN_PROBINGS 5 //How much the extruder will be raised when traveling from between next probing points
|
Re: Repetier Autoleveling mehr Testpunkte 13. July 2014 10:48 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 159 |
Man darf sich da nicht beirren lassen, dass die Endschalter beim Home einwandfrei funktionieren.const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop. const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
Re: Repetier Autoleveling mehr Testpunkte 13. July 2014 12:31 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 1.518 |
|
Re: Repetier Autoleveling mehr Testpunkte 13. July 2014 13:07 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 159 |
Quote
mantus
obwohl sie deaktiviert sind ?
|
Re: Repetier Autoleveling mehr Testpunkte 13. July 2014 14:29 |
Registrierungsdatum: 11 Jahre zuvor Beiträge: 1.518 |
|
Re: Repetier Autoleveling mehr Testpunkte 14. July 2014 15:27 |
Registrierungsdatum: 12 Jahre zuvor Beiträge: 159 |