|
@ -243,13 +243,15 @@ void menu_info_board() { |
|
|
STATIC_ITEM_P(PSTR(MACHINE_NAME)); // My3DPrinter
|
|
|
STATIC_ITEM_P(PSTR(MACHINE_NAME)); // My3DPrinter
|
|
|
STATIC_ITEM_P(PSTR(WEBSITE_URL)); // www.my3dprinter.com
|
|
|
STATIC_ITEM_P(PSTR(WEBSITE_URL)); // www.my3dprinter.com
|
|
|
VALUE_ITEM_P(MSG_INFO_EXTRUDERS, STRINGIFY(EXTRUDERS), SS_CENTER); // Extruders: 2
|
|
|
VALUE_ITEM_P(MSG_INFO_EXTRUDERS, STRINGIFY(EXTRUDERS), SS_CENTER); // Extruders: 2
|
|
|
STATIC_ITEM( |
|
|
#if HAS_BED_LEVELING |
|
|
TERN_(AUTO_BED_LEVELING_3POINT, MSG_3POINT_LEVELING) // 3-Point Leveling
|
|
|
STATIC_ITEM( |
|
|
TERN_(AUTO_BED_LEVELING_LINEAR, MSG_LINEAR_LEVELING) // Linear Leveling
|
|
|
TERN_(AUTO_BED_LEVELING_3POINT, MSG_3POINT_LEVELING) // 3-Point Leveling
|
|
|
TERN_(AUTO_BED_LEVELING_BILINEAR, MSG_BILINEAR_LEVELING) // Bi-linear Leveling
|
|
|
TERN_(AUTO_BED_LEVELING_LINEAR, MSG_LINEAR_LEVELING) // Linear Leveling
|
|
|
TERN_(AUTO_BED_LEVELING_UBL, MSG_UBL_LEVELING) // Unified Bed Leveling
|
|
|
TERN_(AUTO_BED_LEVELING_BILINEAR, MSG_BILINEAR_LEVELING) // Bi-linear Leveling
|
|
|
TERN_(MESH_BED_LEVELING, MSG_MESH_LEVELING) // Mesh Leveling
|
|
|
TERN_(AUTO_BED_LEVELING_UBL, MSG_UBL_LEVELING) // Unified Bed Leveling
|
|
|
); |
|
|
TERN_(MESH_BED_LEVELING, MSG_MESH_LEVELING) // Mesh Leveling
|
|
|
|
|
|
); |
|
|
|
|
|
#endif |
|
|
END_SCREEN(); |
|
|
END_SCREEN(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|