|
@@ -3359,6 +3359,17 @@ void kill_screen(const char* lcd_msg) {
|
3359
|
3359
|
STATIC_ITEM(MACHINE_NAME, true); // My3DPrinter
|
3360
|
3360
|
STATIC_ITEM(WEBSITE_URL, true); // www.my3dprinter.com
|
3361
|
3361
|
STATIC_ITEM(MSG_INFO_EXTRUDERS ": " STRINGIFY(EXTRUDERS), true); // Extruders: 2
|
|
3362
|
+ #if ENABLED(AUTO_BED_LEVELING_3POINT)
|
|
3363
|
+ STATIC_ITEM(MSG_3POINT_LEVELING, true); // 3-Point Leveling
|
|
3364
|
+ #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
|
|
3365
|
+ STATIC_ITEM(MSG_LINEAR_LEVELING, true); // Linear Leveling
|
|
3366
|
+ #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
|
|
3367
|
+ STATIC_ITEM(MSG_BILINEAR_LEVELING, true); // Bi-linear Leveling
|
|
3368
|
+ #elif ENABLED(AUTO_BED_LEVELING_UBL)
|
|
3369
|
+ STATIC_ITEM(MSG_UBL_LEVELING, true); // Unified Bed Leveling
|
|
3370
|
+ #elif ENABLED(MESH_BED_LEVELING)
|
|
3371
|
+ STATIC_ITEM(MSG_MESH_LEVELING, true); // Mesh Leveling
|
|
3372
|
+ #endif
|
3362
|
3373
|
END_SCREEN();
|
3363
|
3374
|
}
|
3364
|
3375
|
|