077560ce4c
1) Fix of stepper control timing 2) Load / restore baby stepping after 9 point bed leveling using the planner instead of the questionable baby stepping routine. Improvement of the menu system: Use a shared menuData union to preserve memory. Adaptation of baby stepping and edit menus to menuData. Improvement of the "Toshiba FlashAir" status display. Don't force IP address query on each display refresh when in the "Support" menu. Bugfix of the baby stepping menu: Show the correct value instead of zero when the baby stepping menu is entered. New feature: Bed leveling adjustment at left / right / front / rear side. The bed adjustment feature is accessible from the Settings menu and as L R F B codes of the G80 code.
318 lines
18 KiB
C
318 lines
18 KiB
C
/**
|
|
* English
|
|
*
|
|
* LCD Menu Messages
|
|
* Please note these are limited to 17 characters!
|
|
*
|
|
*/
|
|
#ifndef LANGUAGE_EN_H
|
|
#define LANGUAGE_EN_H
|
|
|
|
#define WELCOME_MSG CUSTOM_MENDEL_NAME " ready."
|
|
#define MSG_SD_INSERTED "Card inserted"
|
|
#define MSG_SD_REMOVED "Card removed"
|
|
#define MSG_MAIN "Main"
|
|
#define MSG_AUTOSTART "Autostart"
|
|
#define MSG_DISABLE_STEPPERS "Disable steppers"
|
|
#define MSG_AUTO_HOME "Auto home"
|
|
#define MSG_SET_HOME_OFFSETS "Set home offsets"
|
|
#define MSG_SET_ORIGIN "Set origin"
|
|
#define MSG_PREHEAT_PLA "Preheat PLA"
|
|
#define MSG_PREHEAT_PLA0 "Preheat PLA 1"
|
|
#define MSG_PREHEAT_PLA1 "Preheat PLA 2"
|
|
#define MSG_PREHEAT_PLA2 "Preheat PLA 3"
|
|
#define MSG_PREHEAT_PLA012 "Preheat PLA All"
|
|
#define MSG_PREHEAT_PLA_BEDONLY "Preheat PLA Bed"
|
|
#define MSG_PREHEAT_PLA_SETTINGS "Preheat PLA conf"
|
|
#define MSG_PREHEAT_ABS "Preheat ABS"
|
|
#define MSG_PREHEAT_ABS0 "Preheat ABS 1"
|
|
#define MSG_PREHEAT_ABS1 "Preheat ABS 2"
|
|
#define MSG_PREHEAT_ABS2 "Preheat ABS 3"
|
|
#define MSG_PREHEAT_ABS012 "Preheat ABS All"
|
|
#define MSG_PREHEAT_ABS_BEDONLY "Preheat ABS Bed"
|
|
#define MSG_PREHEAT_ABS_SETTINGS "Preheat ABS conf"
|
|
#define MSG_COOLDOWN "Cooldown"
|
|
#define MSG_SWITCH_PS_ON "Switch power on"
|
|
#define MSG_SWITCH_PS_OFF "Switch power off"
|
|
#define MSG_EXTRUDE "Extrude"
|
|
#define MSG_RETRACT "Retract"
|
|
#define MSG_MOVE_AXIS "Move axis"
|
|
#define MSG_MOVE_X "Move X"
|
|
#define MSG_MOVE_Y "Move Y"
|
|
#define MSG_MOVE_Z "Move Z"
|
|
#define MSG_MOVE_E "Extruder"
|
|
#define MSG_MOVE_E1 "Extruder2"
|
|
#define MSG_MOVE_E2 "Extruder3"
|
|
#define MSG_MOVE_01MM "Move 0.1mm"
|
|
#define MSG_MOVE_1MM "Move 1mm"
|
|
#define MSG_MOVE_10MM "Move 10mm"
|
|
#define MSG_SPEED "Speed"
|
|
#define MSG_NOZZLE "Nozzle"
|
|
#define MSG_NOZZLE1 "Nozzle2"
|
|
#define MSG_NOZZLE2 "Nozzle3"
|
|
#define MSG_BED "Bed"
|
|
#define MSG_FAN_SPEED "Fan speed"
|
|
#define MSG_FLOW "Flow"
|
|
#define MSG_FLOW0 "Flow 0"
|
|
#define MSG_FLOW1 "Flow 1"
|
|
#define MSG_FLOW2 "Flow 2"
|
|
#define MSG_CONTROL "Control"
|
|
#define MSG_MIN " \002 Min"
|
|
#define MSG_MAX " \002 Max"
|
|
#define MSG_FACTOR " \002 Fact"
|
|
#define MSG_AUTOTEMP "Autotemp"
|
|
#define MSG_ON "On "
|
|
#define MSG_OFF "Off"
|
|
#define MSG_PID_P "PID-P"
|
|
#define MSG_PID_I "PID-I"
|
|
#define MSG_PID_D "PID-D"
|
|
#define MSG_PID_C "PID-C"
|
|
#define MSG_ACC "Accel"
|
|
#define MSG_VXY_JERK "Vxy-jerk"
|
|
#define MSG_VZ_JERK "Vz-jerk"
|
|
#define MSG_VE_JERK "Ve-jerk"
|
|
#define MSG_VMAX "Vmax "
|
|
#define MSG_X "x"
|
|
#define MSG_Y "y"
|
|
#define MSG_Z "z"
|
|
#define MSG_E "e"
|
|
#define MSG_VMIN "Vmin"
|
|
#define MSG_VTRAV_MIN "VTrav min"
|
|
#define MSG_AMAX "Amax "
|
|
#define MSG_A_RETRACT "A-retract"
|
|
#define MSG_XSTEPS "Xsteps/mm"
|
|
#define MSG_YSTEPS "Ysteps/mm"
|
|
#define MSG_ZSTEPS "Zsteps/mm"
|
|
#define MSG_ESTEPS "Esteps/mm"
|
|
#define MSG_TEMPERATURE "Temperature"
|
|
#define MSG_MOTION "Motion"
|
|
#define MSG_VOLUMETRIC "Filament"
|
|
#define MSG_VOLUMETRIC_ENABLED "E in mm3"
|
|
#define MSG_FILAMENT_SIZE_EXTRUDER_0 "Fil. Dia. 1"
|
|
#define MSG_FILAMENT_SIZE_EXTRUDER_1 "Fil. Dia. 2"
|
|
#define MSG_FILAMENT_SIZE_EXTRUDER_2 "Fil. Dia. 3"
|
|
#define MSG_CONTRAST "LCD contrast"
|
|
#define MSG_STORE_EPROM "Store memory"
|
|
#define MSG_LOAD_EPROM "Load memory"
|
|
#define MSG_RESTORE_FAILSAFE "Restore failsafe"
|
|
#define MSG_REFRESH "\xF8" "Refresh"
|
|
#define MSG_WATCH "Info screen"
|
|
#define MSG_PREPARE "Prepare"
|
|
#define MSG_TUNE "Tune"
|
|
#define MSG_PAUSE_PRINT "Pause print"
|
|
#define MSG_RESUME_PRINT "Resume print"
|
|
#define MSG_STOP_PRINT "Stop print"
|
|
#define MSG_CARD_MENU "Print from SD"
|
|
#define MSG_NO_CARD "No SD card"
|
|
#define MSG_DWELL "Sleep..."
|
|
#define MSG_USERWAIT "Wait for user..."
|
|
#define MSG_RESUMING "Resuming print"
|
|
#define MSG_PRINT_ABORTED "Print aborted"
|
|
#define MSG_NO_MOVE "No move."
|
|
#define MSG_KILLED "KILLED. "
|
|
#define MSG_STOPPED "STOPPED. "
|
|
#define MSG_CONTROL_RETRACT "Retract mm"
|
|
#define MSG_CONTROL_RETRACT_SWAP "Swap Re.mm"
|
|
#define MSG_CONTROL_RETRACTF "Retract V"
|
|
#define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
|
|
#define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
|
|
#define MSG_CONTROL_RETRACT_RECOVER_SWAP "S UnRet+mm"
|
|
#define MSG_CONTROL_RETRACT_RECOVERF "UnRet V"
|
|
#define MSG_AUTORETRACT "AutoRetr."
|
|
#define MSG_FILAMENTCHANGE "Change filament"
|
|
#define MSG_INIT_SDCARD "Init. SD card"
|
|
#define MSG_CNG_SDCARD "Change SD card"
|
|
#define MSG_ZPROBE_OUT "Z probe out. bed"
|
|
#define MSG_POSITION_UNKNOWN "Home X/Y before Z"
|
|
#define MSG_ZPROBE_ZOFFSET "Z Offset"
|
|
#define MSG_BABYSTEP_X "Babystep X"
|
|
#define MSG_BABYSTEP_Y "Babystep Y"
|
|
#define MSG_BABYSTEP_Z "Live adjust Z"
|
|
#define MSG_ENDSTOP_ABORT "Endstop abort"
|
|
#define MSG_ADJUSTZ "Auto adjust Z ?"
|
|
#define MSG_PICK_Z "Pick print"
|
|
|
|
#define MSG_SETTINGS "Settings"
|
|
#define MSG_PREHEAT "Preheat"
|
|
#define MSG_UNLOAD_FILAMENT "Unload filament"
|
|
#define MSG_LOAD_FILAMENT "Load filament"
|
|
|
|
#define MSG_RECTRACT "Rectract"
|
|
#define MSG_ERROR "ERROR:"
|
|
#define MSG_PREHEAT_NOZZLE "Preheat the nozzle!"
|
|
#define MSG_SUPPORT "Support"
|
|
#define MSG_CORRECTLY "Changed correctly?"
|
|
#define MSG_YES "Yes"
|
|
#define MSG_NO "No"
|
|
#define MSG_NOT_LOADED "Filament not loaded"
|
|
#define MSG_NOT_COLOR "Color not clear"
|
|
#define MSG_LOADING_FILAMENT "Loading filament"
|
|
#define MSG_PLEASE_WAIT "Please wait"
|
|
#define MSG_LOADING_COLOR "Loading color"
|
|
#define MSG_CHANGE_SUCCESS "Change success!"
|
|
#define MSG_PRESS "And press the knob"
|
|
#define MSG_INSERT_FILAMENT "Insert filament"
|
|
#define MSG_CHANGING_FILAMENT "Changing filament!"
|
|
|
|
|
|
#define MSG_SILENT_MODE_ON "Mode [silent]"
|
|
#define MSG_SILENT_MODE_OFF "Mode [high power]"
|
|
#define MSG_REBOOT "Reboot the printer"
|
|
#define MSG_TAKE_EFFECT " for take effect"
|
|
|
|
#define MSG_Enqueing "enqueing \""
|
|
#define MSG_POWERUP "PowerUp"
|
|
#define MSG_EXTERNAL_RESET " External Reset"
|
|
#define MSG_BROWNOUT_RESET " Brown out Reset"
|
|
#define MSG_WATCHDOG_RESET " Watchdog Reset"
|
|
#define MSG_SOFTWARE_RESET " Software Reset"
|
|
#define MSG_AUTHOR " | Author: "
|
|
#define MSG_CONFIGURATION_VER " Last Updated: "
|
|
#define MSG_FREE_MEMORY " Free Memory: "
|
|
#define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
|
|
#define MSG_OK "ok"
|
|
#define MSG_FILE_SAVED "Done saving file."
|
|
#define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line: "
|
|
#define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line: "
|
|
#define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line: "
|
|
#define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line: "
|
|
#define MSG_FILE_PRINTED "Done printing file"
|
|
#define MSG_BEGIN_FILE_LIST "Begin file list"
|
|
#define MSG_END_FILE_LIST "End file list"
|
|
#define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
|
|
#define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
|
|
#define MSG_M200_INVALID_EXTRUDER "M200 Invalid extruder "
|
|
#define MSG_M218_INVALID_EXTRUDER "M218 Invalid extruder "
|
|
#define MSG_M221_INVALID_EXTRUDER "M221 Invalid extruder "
|
|
#define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature"
|
|
#define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
|
|
#define MSG_HEATING "Heating"
|
|
#define MSG_HEATING_COMPLETE "Heating done."
|
|
#define MSG_BED_HEATING "Bed Heating"
|
|
#define MSG_BED_DONE "Bed done"
|
|
#define MSG_M115_REPORT "FIRMWARE_NAME:Marlin V1.0.2; Sprinter/grbl mashup for gen6 FIRMWARE_URL:" FIRMWARE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" CUSTOM_MENDEL_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n"
|
|
#define MSG_COUNT_X " Count X: "
|
|
#define MSG_ERR_KILLED "Printer halted. kill() called!"
|
|
#define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)"
|
|
#define MSG_RESEND "Resend: "
|
|
#define MSG_UNKNOWN_COMMAND "Unknown command: \""
|
|
#define MSG_ACTIVE_EXTRUDER "Active Extruder: "
|
|
#define MSG_INVALID_EXTRUDER "Invalid extruder"
|
|
#define MSG_X_MIN "x_min: "
|
|
#define MSG_X_MAX "x_max: "
|
|
#define MSG_Y_MIN "y_min: "
|
|
#define MSG_Y_MAX "y_max: "
|
|
#define MSG_Z_MIN "z_min: "
|
|
#define MSG_Z_MAX "z_max: "
|
|
#define MSG_M119_REPORT "Reporting endstop status"
|
|
#define MSG_ENDSTOP_HIT "TRIGGERED"
|
|
#define MSG_ENDSTOP_OPEN "open"
|
|
#define MSG_HOTEND_OFFSET "Hotend offsets:"
|
|
|
|
#define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
|
|
#define MSG_SD_INIT_FAIL "SD init fail"
|
|
#define MSG_SD_VOL_INIT_FAIL "volume.init failed"
|
|
#define MSG_SD_OPENROOT_FAIL "openRoot failed"
|
|
#define MSG_SD_CARD_OK "SD card ok"
|
|
#define MSG_SD_WORKDIR_FAIL "workDir open failed"
|
|
#define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
|
|
#define MSG_SD_FILE_OPENED "File opened: "
|
|
#define MSG_SD_SIZE " Size: "
|
|
#define MSG_SD_FILE_SELECTED "File selected"
|
|
#define MSG_SD_WRITE_TO_FILE "Writing to file: "
|
|
#define MSG_SD_PRINTING_BYTE "SD printing byte "
|
|
#define MSG_SD_NOT_PRINTING "Not SD printing"
|
|
#define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
|
|
#define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir: "
|
|
|
|
#define MSG_STEPPER_TOO_HIGH "Steprate too high: "
|
|
#define MSG_ENDSTOPS_HIT "endstops hit: "
|
|
#define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
|
|
#define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
|
|
#define MSG_BABYSTEPPING_X "Babystepping X"
|
|
#define MSG_BABYSTEPPING_Y "Babystepping Y"
|
|
#define MSG_BABYSTEPPING_Z "Adjusting Z"
|
|
#define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
|
|
|
|
#define MSG_LANGUAGE_NAME "English"
|
|
#define MSG_LANGUAGE_SELECT "Select language "
|
|
#define MSG_PRUSA3D "prusa3d.com"
|
|
#define MSG_PRUSA3D_FORUM "forum.prusa3d.com"
|
|
#define MSG_PRUSA3D_HOWTO "howto.prusa3d.com"
|
|
|
|
#define MSG_SELFTEST_ERROR "Selftest error !"
|
|
#define MSG_SELFTEST_PLEASECHECK "Please check :"
|
|
#define MSG_SELFTEST_NOTCONNECTED "Not connected"
|
|
#define MSG_SELFTEST_HEATERTHERMISTOR "Heater/Thermistor"
|
|
#define MSG_SELFTEST_BEDHEATER "Bed / Heater"
|
|
#define MSG_SELFTEST_WIRINGERROR "Wiring error"
|
|
#define MSG_SELFTEST_ENDSTOPS "Endstops"
|
|
#define MSG_SELFTEST_MOTOR "Motor"
|
|
#define MSG_SELFTEST_ENDSTOP "Endstop"
|
|
#define MSG_SELFTEST_ENDSTOP_NOTHIT "Endstop not hit"
|
|
#define MSG_SELFTEST_OK "Self test OK"
|
|
#define MSG_STATS_TOTALFILAMENT "Total filament :"
|
|
#define MSG_STATS_TOTALPRINTTIME "Total print time :"
|
|
#define MSG_STATS_FILAMENTUSED "Filament used: "
|
|
#define MSG_STATS_PRINTTIME "Print time: "
|
|
#define MSG_SELFTEST_START "Self test start "
|
|
#define MSG_SELFTEST_CHECK_ENDSTOPS "Checking endstops"
|
|
#define MSG_SELFTEST_CHECK_HOTEND "Checking hotend "
|
|
#define MSG_SELFTEST_CHECK_X "Checking X axis "
|
|
#define MSG_SELFTEST_CHECK_Y "Checking Y axis "
|
|
#define MSG_SELFTEST_CHECK_Z "Checking Z axis "
|
|
#define MSG_SELFTEST_CHECK_BED "Checking bed "
|
|
#define MSG_SELFTEST_CHECK_ALLCORRECT "All correct "
|
|
#define MSG_SELFTEST "Selftest "
|
|
#define MSG_SELFTEST_FAILED "Selftest failed "
|
|
#define MSG_STATISTICS "Statistics "
|
|
#define MSG_USB_PRINTING "USB printing "
|
|
#define MSG_HOMEYZ "Calibrate Z"
|
|
#define MSG_HOMEYZ_PROGRESS "Calibrating Z"
|
|
#define MSG_HOMEYZ_DONE "Calibration done"
|
|
|
|
#define MSG_SHOW_END_STOPS "Show end stops"
|
|
#define MSG_CALIBRATE_BED "Calibrate X/Y"
|
|
#define MSG_CALIBRATE_BED_RESET "Reset X/Y calibr."
|
|
|
|
#define MSG_MOVE_CARRIAGE_TO_THE_TOP "Calibrating X/Y. Move Z carriage up to the end stoppers. Click when done."
|
|
#define MSG_CONFIRM_NOZZLE_CLEAN "Please clean the nozzle for calibration. Click when done."
|
|
#define MSG_CONFIRM_CARRIAGE_AT_THE_TOP "Are left and right Z~carriages all up?"
|
|
|
|
#define MSG_FIND_BED_OFFSET_AND_SKEW_LINE1 "Searching bed"
|
|
#define MSG_FIND_BED_OFFSET_AND_SKEW_LINE2 "calibration point"
|
|
#define MSG_FIND_BED_OFFSET_AND_SKEW_LINE3 " of 4"
|
|
#define MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE1 "Improving bed"
|
|
#define MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE2 "calibration point"
|
|
#define MSG_IMPROVE_BED_OFFSET_AND_SKEW_LINE3 " of 9"
|
|
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_POINT_NOT_FOUND "X/Y calibration failed. Bed calibration point was not found."
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_FITTING_FAILED "X/Y calibration failed. Please consult the manual."
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_PERFECT "X/Y calibration ok. X/Y axes are perpendicular."
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_SKEW_MILD "X/Y calibration all right. X/Y axes are slightly skewed."
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_SKEW_EXTREME "X/Y skewed severly. Skew will be corrected automatically."
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_FAILED_FRONT_LEFT_FAR "X/Y calibration failed. Left front calibration point not reachable."
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_FAILED_FRONT_RIGHT_FAR "X/Y calibration failed. Right front calibration point not reachable."
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_FAILED_FRONT_BOTH_FAR "X/Y calibration failed. Front calibration points not reachable."
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_LEFT_FAR "X/Y calibration compromised. Left front calibration point not reachable."
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_RIGHT_FAR "X/Y calibration compromised. Right front calibration point not reachable."
|
|
#define MSG_BED_SKEW_OFFSET_DETECTION_WARNING_FRONT_BOTH_FAR "X/Y calibration compromised. Front calibration points not reachable."
|
|
|
|
#define MSG_BED_LEVELING_FAILED_POINT_LOW "Bed leveling failed. Sensor didnt trigger. Debris on nozzle? Waiting for reset."
|
|
#define MSG_BED_LEVELING_FAILED_POINT_HIGH "Bed leveling failed. Sensor triggered too high. Waiting for reset."
|
|
#define MSG_BED_LEVELING_FAILED_PROBE_DISCONNECTED "Bed leveling failed. Sensor disconnected or cable broken. Waiting for reset."
|
|
|
|
#define MSG_NEW_FIRMWARE_AVAILABLE "New firmware version available:"
|
|
#define MSG_NEW_FIRMWARE_PLEASE_UPGRADE "Please upgrade."
|
|
|
|
#define MSG_BABYSTEP_Z_NOT_SET "Printer has not been calibrated yet. Run calibration G-code to adjust Z height."
|
|
|
|
#define MSG_BED_CORRECTION_MENU "Bed level correct"
|
|
#define MSG_BED_CORRECTION_LEFT "Left side um"
|
|
#define MSG_BED_CORRECTION_RIGHT "Right side um"
|
|
#define MSG_BED_CORRECTION_FRONT "Front side um"
|
|
#define MSG_BED_CORRECTION_REAR "Rear side um"
|
|
#define MSG_BED_CORRECTION_RESET "Reset"
|
|
|
|
#endif // LANGUAGE_EN_H
|