ultralcd.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. #ifndef ULTRALCD_H
  2. #define ULTRALCD_H
  3. #include "Marlin.h"
  4. #include "lcd.h"
  5. #include "conv2str.h"
  6. #include "menu.h"
  7. #include "mesh_bed_calibration.h"
  8. extern int lcd_puts_P(const char* str);
  9. extern int lcd_printf_P(const char* format, ...);
  10. extern void menu_lcd_longpress_func(void);
  11. extern void menu_lcd_charsetup_func(void);
  12. extern void menu_lcd_lcdupdate_func(void);
  13. // Call with a false parameter to suppress the LCD update from various places like the planner or the temp control.
  14. void ultralcd_init();
  15. void lcd_setstatus(const char* message);
  16. void lcd_setstatuspgm(const char* message);
  17. void lcd_setalertstatuspgm(const char* message);
  18. void lcd_reset_alert_level();
  19. uint8_t get_message_level();
  20. void lcd_adjust_z();
  21. void lcd_pick_babystep();
  22. void lcd_alright();
  23. void EEPROM_save_B(int pos, int* value);
  24. void EEPROM_read_B(int pos, int* value);
  25. void lcd_wait_interact();
  26. void lcd_change_filament();
  27. void lcd_loading_filament();
  28. void lcd_change_success();
  29. void lcd_loading_color();
  30. void lcd_sdcard_stop();
  31. void lcd_pause_print();
  32. void lcd_resume_print();
  33. void lcd_print_stop();
  34. void prusa_statistics(int _message, uint8_t _col_nr = 0);
  35. void lcd_confirm_print();
  36. unsigned char lcd_choose_color();
  37. //void lcd_mylang();
  38. extern bool lcd_selftest();
  39. void lcd_menu_statistics();
  40. extern const char* lcd_display_message_fullscreen_P(const char *msg, uint8_t &nlines);
  41. extern const char* lcd_display_message_fullscreen_P(const char *msg);
  42. extern void lcd_return_to_status();
  43. extern void lcd_wait_for_click();
  44. extern void lcd_show_fullscreen_message_and_wait_P(const char *msg);
  45. // 0: no, 1: yes, -1: timeouted
  46. extern int8_t lcd_show_fullscreen_message_yes_no_and_wait_P(const char *msg, bool allow_timeouting = true, bool default_yes = false);
  47. extern int8_t lcd_show_multiscreen_message_two_choices_and_wait_P(const char *msg, bool allow_timeouting, bool default_yes,
  48. const char *first_choice, const char *second_choice);
  49. extern int8_t lcd_show_multiscreen_message_yes_no_and_wait_P(const char *msg, bool allow_timeouting = true, bool default_yes = false);
  50. // Ask the user to move the Z axis up to the end stoppers and let
  51. // the user confirm that it has been done.
  52. #ifndef TMC2130
  53. extern bool lcd_calibrate_z_end_stop_manual(bool only_z);
  54. #endif
  55. // Show the result of the calibration process on the LCD screen.
  56. extern void lcd_bed_calibration_show_result(BedSkewOffsetDetectionResultType result, uint8_t point_too_far_mask);
  57. extern void lcd_diag_show_end_stops();
  58. #define LCD_MESSAGEPGM(x) lcd_setstatuspgm(PSTR(x))
  59. #define LCD_ALERTMESSAGEPGM(x) lcd_setalertstatuspgm(PSTR(x))
  60. #define LCD_MESSAGERPGM(x) lcd_setstatuspgm((x))
  61. #define LCD_ALERTMESSAGERPGM(x) lcd_setalertstatuspgm((x))
  62. // To be used in lcd_commands_type.
  63. #define LCD_COMMAND_IDLE 0
  64. #define LCD_COMMAND_LOAD_FILAMENT 1
  65. #define LCD_COMMAND_STOP_PRINT 2
  66. #define LCD_COMMAND_FARM_MODE_CONFIRM 4
  67. #define LCD_COMMAND_LONG_PAUSE 5
  68. #define LCD_COMMAND_PID_EXTRUDER 7
  69. #define LCD_COMMAND_V2_CAL 8
  70. extern int lcd_commands_type;
  71. extern int8_t FSensorStateMenu;
  72. #define CUSTOM_MSG_TYPE_STATUS 0 // status message from lcd_status_message variable
  73. #define CUSTOM_MSG_TYPE_MESHBL 1 // Mesh bed leveling in progress
  74. #define CUSTOM_MSG_TYPE_F_LOAD 2 // Loading filament in progress
  75. #define CUSTOM_MSG_TYPE_PIDCAL 3 // PID tuning in progress
  76. #define CUSTOM_MSG_TYPE_TEMCAL 4 // PINDA temp calibration
  77. #define CUSTOM_MSG_TYPE_TEMPRE 5 // Temp compensation preheat
  78. extern unsigned int custom_message_type;
  79. extern unsigned int custom_message_state;
  80. extern uint8_t farm_mode;
  81. extern int farm_no;
  82. extern int farm_timer;
  83. extern int farm_status;
  84. #ifdef TMC2130
  85. #define SILENT_MODE_NORMAL 0
  86. #define SILENT_MODE_STEALTH 1
  87. #define SILENT_MODE_OFF SILENT_MODE_NORMAL
  88. #else
  89. #define SILENT_MODE_POWER 0
  90. #define SILENT_MODE_SILENT 1
  91. #define SILENT_MODE_AUTO 2
  92. #define SILENT_MODE_OFF SILENT_MODE_POWER
  93. #endif
  94. extern int8_t SilentModeMenu;
  95. extern bool cancel_heatup;
  96. extern bool isPrintPaused;
  97. extern bool lcd_autoDeplete;
  98. void lcd_ignore_click(bool b=true);
  99. void lcd_commands();
  100. void change_extr(int extr);
  101. void extr_adj(int extruder);
  102. void extr_unload_all();
  103. void extr_unload_used();
  104. void extr_unload();
  105. void unload_filament();
  106. void stack_error();
  107. void lcd_printer_connected();
  108. void lcd_ping();
  109. void lcd_calibrate_extruder();
  110. void lcd_farm_sdcard_menu();
  111. //void getFileDescription(char *name, char *description);
  112. void lcd_farm_sdcard_menu_w();
  113. //void get_description();
  114. void lcd_wait_for_heater();
  115. void lcd_wait_for_cool_down();
  116. void lcd_extr_cal_reset();
  117. void lcd_temp_cal_show_result(bool result);
  118. bool lcd_wait_for_pinda(float temp);
  119. void bowden_menu();
  120. char reset_menu();
  121. uint8_t choose_menu_P(const char *header, const char *item, const char *last_item = nullptr);
  122. void lcd_pinda_calibration_menu();
  123. void lcd_calibrate_pinda();
  124. void lcd_temp_calibration_set();
  125. void display_loading();
  126. #if !SDSORT_USES_RAM
  127. void lcd_set_degree();
  128. void lcd_set_progress();
  129. #endif
  130. void lcd_language();
  131. void lcd_wizard();
  132. //! @brief Wizard state
  133. enum class WizState : uint8_t
  134. {
  135. Run, //!< run wizard? Entry point.
  136. Restore, //!< restore calibration status
  137. Selftest,
  138. Xyz, //!< xyz calibration
  139. Z, //!< z calibration
  140. IsFil, //!< Is filament loaded? Entry point for 1st layer calibration
  141. PreheatPla, //!< waiting for preheat nozzle for PLA
  142. Preheat, //!< Preheat for any material
  143. Unload, //!< Unload filament
  144. LoadFil, //!< Load filament
  145. IsPla, //!< Is PLA filament?
  146. Lay1Cal, //!< First layer calibration
  147. RepeatLay1Cal, //!< Repeat first layer calibration?
  148. Finish, //!< Deactivate wizard
  149. };
  150. void lcd_wizard(WizState state);
  151. #endif //ULTRALCD_H