BL-Touch mit Geeetech i3 Pro B und Marlin 1.0.9 16. April 2021 06:24 |
Registrierungsdatum: 4 Jahre zuvor Beiträge: 32 |
#if MB(ULTIMAKER) #define KNOWN_BOARD #define Z_MAX_PIN -1//32 #define Z_ENABLE_PIN 35 #define SUICIDE_PIN 54 //PIN that has to be turned on right after start, to keep power flowing. #define SERVO0_PIN 32//13 // untested
Re: BL-Touch mit Geeetech i3 Pro B und Marlin 1.0.9 16. April 2021 08:33 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
Re: BL-Touch mit Geeetech i3 Pro B und Marlin 1.0.9 16. April 2021 18:23 |
Registrierungsdatum: 4 Jahre zuvor Beiträge: 32 |
Quote
AlterBastler
In pins.h in den Zeilen 1375 und 1405
Herzl. Grüße
M280 P0 S10 ; pushes the pin down M280 P0 S90 ; pulls the pin up M280 P0 S120 ; Self test – keeps going until you do pin up/down or release alarm M280 P0 S160 ; Release alarm
/** * Probe Type * * Allen Key Probes, Servo Probes, Z-Sled Probes, FIX_MOUNTED_PROBE, etc. * Activate one of these to use Auto Bed Leveling below. */ /** * The "Manual Probe" provides a means to do "Auto" Bed Leveling without a probe. * Use G29 repeatedly, adjusting the Z height at each point with movement commands * or (with LCD_BED_LEVELING) the LCD controller. */ //#define PROBE_MANUALLY //#define MANUAL_PROBE_START_Z 0.2 /** * A Fix-Mounted Probe either doesn't deploy or needs manual deployment. * (e.g., an inductive probe or a nozzle-based probe-switch.) */ //#define FIX_MOUNTED_PROBE /** * Z Servo Probe, such as an endstop switch on a rotating arm. */ //#define Z_PROBE_SERVO_NR 0 // Defaults to SERVO 0 connector. //#define Z_SERVO_ANGLES {70,0} // Z Servo Deploy and Stow angles
Re: BL-Touch mit Geeetech i3 Pro B und Marlin 1.0.9 17. April 2021 01:19 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
#if ENABLED(BLTOUCH) #if MB(GT2560_REV_A_PLUS) #define SERVO0_PIN 11 #else #define SERVO0_PIN 32 #endif #define Z_MAX_PIN -1 #else #define Z_MAX_PIN 32 #endif
Re: BL-Touch mit Geeetech i3 Pro B und Marlin 1.0.9 17. April 2021 19:05 |
Registrierungsdatum: 4 Jahre zuvor Beiträge: 32 |
Re: BL-Touch mit Geeetech i3 Pro B und Marlin 1.0.9 20. April 2021 17:33 |
Registrierungsdatum: 4 Jahre zuvor Beiträge: 32 |
#define X_PROBE_OFFSET_FROM_EXTRUDER -43 // X offset: -left +right [of the nozzle] #define Y_PROBE_OFFSET_FROM_EXTRUDER -9 // Y offset: -front +behind [the nozzle] #define Z_PROBE_OFFSET_FROM_EXTRUDER -0.85 // Z offset: -below +above [the nozzle] // Certain types of probes need to stay away from edges #define MIN_PROBE_EDGE 10 // X and Y axis travel speed (mm/m) between probes #define XY_PROBE_SPEED 8000 // Feedrate (mm/m) for the first approach when double-probing (MULTIPLE_PROBING == 2) #define Z_PROBE_SPEED_FAST 2 // Feedrate (mm/m) for the "accurate" probe of each point #define Z_PROBE_SPEED_SLOW (Z_PROBE_SPEED_FAST / 2) // The number of probes to perform at each point. // Set to 2 for a fast/slow probe, using the second probe result. // Set to 3 or more for slow probes, averaging the results. #define MULTIPLE_PROBING 3 /** * Z probes require clearance when deploying, stowing, and moving between * probe points to avoid hitting the bed and other hardware. * Servo-mounted probes require extra space for the arm to rotate. * Inductive probes need space to keep from triggering early. * * Use these settings to specify the distance (mm) to raise the probe (or * lower the bed). The values set here apply over and above any (negative) * probe Z Offset set with Z_PROBE_OFFSET_FROM_EXTRUDER, M851, or the LCD. * Only integer values >= 1 are valid here. * * Example: `M851 Z-5` with a CLEARANCE of 4 => 9mm from bed to nozzle. * But: `M851 Z+1` with a CLEARANCE of 2 => 2mm from bed to nozzle. */ #define Z_CLEARANCE_DEPLOY_PROBE 10 // Z Clearance for Deploy/Stow #define Z_CLEARANCE_BETWEEN_PROBES 5 // Z Clearance between probe points #define Z_CLEARANCE_MULTI_PROBE 5 // Z Clearance between multiple probes #define Z_AFTER_PROBING 5 // Z position after probing is done #define Z_PROBE_LOW_POINT -2 // Farthest distance below the trigger-point to go before stopping // For M851 give a range for adjusting the Z probe offset #define Z_PROBE_OFFSET_RANGE_MIN -20 #define Z_PROBE_OFFSET_RANGE_MAX 20 // Enable the M48 repeatability test to test probe accuracy #define Z_MIN_PROBE_REPEATABILITY_TEST
Re: BL-Touch mit Geeetech i3 Pro B und Marlin 1.0.9 21. April 2021 11:06 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.610 |
Re: BL-Touch mit Geeetech i3 Pro B und Marlin 1.0.9 22. April 2021 03:54 |
Registrierungsdatum: 4 Jahre zuvor Beiträge: 32 |
//#define USE_XMAX_PLUG //#define USE_YMAX_PLUG //#define USE_ZMAX_PLUG