Marlin Configuration
info
- This document provides the following
- Marlin Configuration
Pin Configuration
- Reference pin configuration
- Please note that the following configuration methods can only be selected one at a time
#define Z_MIN_PROBE_PIN PC0
![]() |
![]() |
Setting Probe Pin
#define SOL1_PIN PA5
Probe Offset
- Set probe offset
#define NOZZLE_TO_PROBE_OFFSET { 0, 0, 0 }
Safe Probing Margin
#define PROBING_MARGIN 10
Disable Software Endstops
// #define MIN_SOFTWARE_ENDSTOP_Z
Set Default Logic Level for Endstops
#define Z_MIN_ENDSTOP_HIT_STATE HIGH
Number of Probing Points
- Set number of probing points
#define GRID_MAX_POINTS_X 3
#define GRID_MAX_POINTS_Y 3
Use Z_MIN Endstop Pin for Probe Signal
#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
Use Probe for Z Homing
#define USE_PROBE_FOR_Z_HOMING
Enable Safe Homing to Center
#define Z_SAFE_HOMING
Set Bed Leveling Type (Grid)
#define AUTO_BED_LEVELING_BILINEAR
Enable EEPROM Settings
#define EEPROM_SETTINGS
Enable Solenoid Probe
#define SOLENOID_PROBE
Automatically Apply Leveling Data After Homing
#defne RESTORE LEVELING AFTER G28
Slicer Software Settings
- If you need to re-level before each print job, add the following commands to the start Gcode in your slicer software:
G28;
G29;
Loading...