ultralcd.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. #ifndef ULTRALCD_H
  2. #define ULTRALCD_H
  3. #include "mesh_bed_calibration.h"
  4. #include "config.h"
  5. extern void menu_lcd_longpress_func(void);
  6. extern void menu_lcd_lcdupdate_func(void);
  7. // Call with a false parameter to suppress the LCD update from various places like the planner or the temp control.
  8. void ultralcd_init();
  9. //! LCD status severities
  10. #define LCD_STATUS_CRITICAL 3 //< Heater failure
  11. #define LCD_STATUS_ALERT 2 //< Other hardware issue
  12. #define LCD_STATUS_INFO 1 //< Message times out after a while
  13. #define LCD_STATUS_NONE 0 //< No alert message set
  14. #define LCD_STATUS_INFO_TIMEOUT 20000
  15. // Set the current status message (equivalent to LCD_STATUS_NONE)
  16. void lcd_setstatus(const char* message);
  17. void lcd_setstatuspgm(const char* message);
  18. //! return to the main status screen and display the alert message
  19. //! Beware - it has sideeffects:
  20. //! - always returns the display to the main status screen
  21. //! - always makes lcd_reset (which is slow and causes flicker)
  22. //! - does not update the message if there is one with the same (or higher) severity present
  23. void lcd_setalertstatus(const char* message, uint8_t severity = LCD_STATUS_ALERT);
  24. void lcd_setalertstatuspgm(const char* message, uint8_t severity = LCD_STATUS_ALERT);
  25. //! Get/reset the current alert level
  26. uint8_t get_message_level();
  27. void lcd_reset_alert_level();
  28. void lcd_adjust_z();
  29. void lcd_pick_babystep();
  30. void lcd_alright();
  31. void show_preheat_nozzle_warning();
  32. void lcd_wait_interact();
  33. void lcd_loading_filament();
  34. void lcd_change_success();
  35. void lcd_loading_color();
  36. void lcd_sdcard_stop();
  37. void lcd_pause_print();
  38. void lcd_pause_usb_print();
  39. void lcd_resume_print();
  40. void lcd_print_stop();
  41. void lcd_load_filament_color_check();
  42. extern void lcd_belttest();
  43. extern bool lcd_selftest();
  44. void lcd_menu_statistics();
  45. void lcd_status_screen(); // NOT static due to using inside "Marlin_main" module ("manage_inactivity()")
  46. void lcd_menu_extruder_info(); // NOT static due to using inside "Marlin_main" module ("manage_inactivity()")
  47. void lcd_menu_show_sensors_state(); // NOT static due to using inside "Marlin_main" module ("manage_inactivity()")
  48. #ifdef TMC2130
  49. bool lcd_crash_detect_enabled();
  50. void lcd_crash_detect_enable();
  51. void lcd_crash_detect_disable();
  52. #endif
  53. extern const char* lcd_display_message_fullscreen_P(const char *msg, uint8_t &nlines);
  54. extern const char* lcd_display_message_fullscreen_P(const char *msg);
  55. extern void lcd_return_to_status();
  56. extern void lcd_wait_for_click();
  57. extern bool lcd_wait_for_click_delay(uint16_t nDelay);
  58. extern void lcd_show_fullscreen_message_and_wait_P(const char *msg);
  59. // 0: no, 1: yes, -1: timeouted
  60. extern int8_t lcd_show_yes_no_and_wait(bool allow_timeouting = true, bool default_yes = false);
  61. // 0: no, 1: yes, -1: timeouted
  62. extern int8_t lcd_show_fullscreen_message_yes_no_and_wait_P(const char *msg, bool allow_timeouting = true, bool default_yes = false);
  63. extern int8_t lcd_show_multiscreen_message_two_choices_and_wait_P(const char *msg, bool allow_timeouting, bool default_yes,
  64. const char *first_choice, const char *second_choice, uint8_t second_col = 7);
  65. extern int8_t lcd_show_multiscreen_message_yes_no_and_wait_P(const char *msg, bool allow_timeouting = true, bool default_yes = false);
  66. // Ask the user to move the Z axis up to the end stoppers and let
  67. // the user confirm that it has been done.
  68. #ifndef TMC2130
  69. extern bool lcd_calibrate_z_end_stop_manual(bool only_z);
  70. #endif
  71. // Show the result of the calibration process on the LCD screen.
  72. extern void lcd_bed_calibration_show_result(BedSkewOffsetDetectionResultType result, uint8_t point_too_far_mask);
  73. extern void lcd_diag_show_end_stops();
  74. #define LCD_MESSAGEPGM(x) lcd_setstatuspgm(PSTR(x))
  75. #define LCD_ALERTMESSAGEPGM(x) lcd_setalertstatuspgm(PSTR(x))
  76. #define LCD_MESSAGERPGM(x) lcd_setstatuspgm((x))
  77. #define LCD_ALERTMESSAGERPGM(x) lcd_setalertstatuspgm((x))
  78. // To be used in lcd_commands_type.
  79. enum class LcdCommands : uint_least8_t
  80. {
  81. Idle,
  82. LoadFilament,
  83. StopPrint,
  84. FarmModeConfirm,
  85. LongPause,
  86. PidExtruder,
  87. Layer1Cal,
  88. };
  89. extern LcdCommands lcd_commands_type;
  90. extern int8_t FSensorStateMenu;
  91. enum class CustomMsg : uint_least8_t
  92. {
  93. Status, //!< status message from lcd_status_message variable
  94. MeshBedLeveling, //!< Mesh bed leveling in progress
  95. FilamentLoading, //!< Loading filament in progress
  96. PidCal, //!< PID tuning in progress
  97. TempCal, //!< PINDA temperature calibration
  98. TempCompPreheat, //!< Temperature compensation preheat
  99. M0Wait, //!< M0/M1 Wait command working even from SD
  100. M117, //!< M117 Set the status line message on the LCD
  101. Resuming, //!< Resuming message
  102. };
  103. extern CustomMsg custom_message_type;
  104. extern uint8_t custom_message_state;
  105. extern bool UserECoolEnabled();
  106. extern bool FarmOrUserECool();
  107. #ifdef TMC2130
  108. #define SILENT_MODE_NORMAL 0
  109. #define SILENT_MODE_STEALTH 1
  110. #define SILENT_MODE_OFF SILENT_MODE_NORMAL
  111. #else
  112. #define SILENT_MODE_POWER 0
  113. #define SILENT_MODE_SILENT 1
  114. #define SILENT_MODE_AUTO 2
  115. #define SILENT_MODE_OFF SILENT_MODE_POWER
  116. #endif
  117. #ifdef IR_SENSOR_ANALOG
  118. extern bool bMenuFSDetect;
  119. void printf_IRSensorAnalogBoardChange();
  120. #endif //IR_SENSOR_ANALOG
  121. extern int8_t SilentModeMenu;
  122. extern uint8_t SilentModeMenu_MMU;
  123. extern bool cancel_heatup;
  124. extern bool isPrintPaused;
  125. extern uint8_t scrollstuff;
  126. void lcd_ignore_click(bool b=true);
  127. void lcd_commands();
  128. extern bool bSettings; // flag (i.e. 'fake parameter') for 'lcd_hw_setup_menu()' function
  129. void lcd_hw_setup_menu(void); // NOT static due to using inside "util" module ("nozzle_diameter_check()")
  130. enum class FilamentAction : uint_least8_t
  131. {
  132. None, //!< 'none' state is used as flag for (filament) autoLoad (i.e. opposite for 'autoLoad' state)
  133. Load,
  134. AutoLoad,
  135. UnLoad,
  136. MmuLoad,
  137. MmuUnLoad,
  138. MmuEject,
  139. MmuCut,
  140. Preheat,
  141. Lay1Cal,
  142. };
  143. extern FilamentAction eFilamentAction;
  144. extern bool bFilamentPreheatState;
  145. extern bool bFilamentAction;
  146. void mFilamentItem(uint16_t nTemp,uint16_t nTempBed);
  147. void mFilamentItemForce();
  148. void lcd_generic_preheat_menu();
  149. void unload_filament(bool automatic = false);
  150. void lcd_wait_for_heater();
  151. void lcd_wait_for_cool_down();
  152. void lcd_move_e(); // NOT static due to usage in Marlin_main
  153. void lcd_temp_cal_show_result(bool result);
  154. #ifdef PINDA_THERMISTOR
  155. bool lcd_wait_for_pinda(float temp);
  156. #endif //PINDA_THERMISTOR
  157. char reset_menu();
  158. uint8_t choose_menu_P(const char *header, const char *item, const char *last_item = nullptr);
  159. void lcd_calibrate_pinda();
  160. void lcd_temp_calibration_set();
  161. #if (LANG_MODE != 0)
  162. void lcd_language();
  163. #endif
  164. void lcd_wizard();
  165. bool lcd_autoDepleteEnabled();
  166. //! @brief Wizard state
  167. enum class WizState : uint8_t
  168. {
  169. Run, //!< run wizard? Main entry point.
  170. Restore, //!< restore calibration status
  171. Selftest, //!< self test
  172. Xyz, //!< xyz calibration
  173. Z, //!< z calibration
  174. IsFil, //!< Is filament loaded? First step of 1st layer calibration
  175. PreheatPla, //!< waiting for preheat nozzle for PLA
  176. Preheat, //!< Preheat for any material
  177. LoadFilCold, //!< Load filament for MMU
  178. LoadFilHot, //!< Load filament without MMU
  179. IsPla, //!< Is PLA filament?
  180. Lay1CalCold, //!< First layer calibration, temperature not selected yet
  181. Lay1CalHot, //!< First layer calibration, temperature already selected
  182. RepeatLay1Cal, //!< Repeat first layer calibration?
  183. Finish, //!< Deactivate wizard
  184. };
  185. void lcd_wizard(WizState state);
  186. extern void lcd_experimental_toggle();
  187. extern void lcd_experimental_menu();
  188. #ifdef PINDA_TEMP_COMP
  189. extern void lcd_pinda_temp_compensation_toggle();
  190. #endif //PINDA_TEMP_COMP
  191. #endif //ULTRALCD_H