Marlin Configuration
info
- This document provides the following
- Marlin configuration
Pin Configuration
- Reference pin configuration
- Please note that the following configuration method can only be chosen one
#define Z_MIN_PROBE_PIN PC0
![]() |
![]() |
Set Probe Pin
#define SOL1_PIN PA5
Probe Offset
- Set probe offset
#define NOZZLE_TO_PROBE_OFFSET { 0, 0, 0 }
Safe Edge Distance
#define PROBING_MARGIN 10
Disable Soft Limits
// #define MIN_SOFTWARE_ENDSTOP_Z
Set Default Logic Level for Limit Switches
#define Z_MIN_ENDSTOP_HIT_STATE HIGH
Number of Probe Points
- Set number of probe points
#define GRID_MAX_POINTS_X 3
#define GRID_MAX_POINTS_Y 3
Use Z_MIN Limit Switch for Probe Signal
#define Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
Use Probe Data for Z Homing
#define USE_PROBE_FOR_Z_HOMING
Enable Center Z Homing
#define Z_SAFE_HOMING
Set Heated Bed Leveling Type (Grid)
#define AUTO_BED_LEVELING_BILINEAR
Enable EEPROM Settings
#define EEPROM_SETTINGS
Enable Electromagnetic Probe
#define SOLENOID_PROBE
Automatically Apply Leveling Data After Homing
#defne RESTORE LEVELING AFTER G28
Slicing Software Settings
- If you need to re-level before each print task, add the following instructions in the start Gcode of the slicing software:
G28;
G29;
Loading...