ultralcd.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. struct EditMenuParentState
  14. {
  15. //prevMenu and prevEncoderPosition are used to store the previous menu location when editing settings.
  16. menu_func_t prevMenu;
  17. uint16_t prevEncoderPosition;
  18. //Variables used when editing values.
  19. const char* editLabel;
  20. void* editValue;
  21. int32_t minEditValue, maxEditValue;
  22. // menu_func_t callbackFunc;
  23. };
  24. union MenuData
  25. {
  26. struct BabyStep
  27. {
  28. // 29B total
  29. int8_t status;
  30. int babystepMem[3];
  31. float babystepMemMM[3];
  32. } babyStep;
  33. struct SupportMenu
  34. {
  35. // 6B+16B=22B total
  36. int8_t status;
  37. bool is_flash_air;
  38. uint8_t ip[4];
  39. char ip_str[3*4+3+1];
  40. } supportMenu;
  41. struct AdjustBed
  42. {
  43. // 6+13+16=35B
  44. // editMenuParentState is used when an edit menu is entered, so it knows
  45. // the return menu and encoder state.
  46. struct EditMenuParentState editMenuParentState;
  47. int8_t status;
  48. int8_t left;
  49. int8_t right;
  50. int8_t front;
  51. int8_t rear;
  52. int left2;
  53. int right2;
  54. int front2;
  55. int rear2;
  56. } adjustBed;
  57. struct TuneMenu
  58. {
  59. // editMenuParentState is used when an edit menu is entered, so it knows
  60. // the return menu and encoder state.
  61. struct EditMenuParentState editMenuParentState;
  62. // To recognize, whether the menu has been just initialized.
  63. int8_t status;
  64. // Backup of extrudemultiply, to recognize, that the value has been changed and
  65. // it needs to be applied.
  66. int16_t extrudemultiply;
  67. } tuneMenu;
  68. // editMenuParentState is used when an edit menu is entered, so it knows
  69. // the return menu and encoder state.
  70. struct EditMenuParentState editMenuParentState;
  71. struct AutoLoadFilamentMenu
  72. {
  73. //ShortTimer timer;
  74. char dummy;
  75. } autoLoadFilamentMenu;
  76. struct _Lcd_moveMenu
  77. {
  78. bool initialized;
  79. bool endstopsEnabledPrevious;
  80. } _lcd_moveMenu;
  81. struct sdcard_menu_t
  82. {
  83. uint8_t viewState;
  84. } sdcard_menu;
  85. menu_data_edit_t edit_menu;
  86. };
  87. // State of the currently active menu.
  88. // C Union manages sharing of the static memory by all the menus.
  89. extern union MenuData menuData;
  90. // Call with a false parameter to suppress the LCD update from various places like the planner or the temp control.
  91. void ultralcd_init();
  92. void lcd_setstatus(const char* message);
  93. void lcd_setstatuspgm(const char* message);
  94. void lcd_setalertstatuspgm(const char* message);
  95. void lcd_reset_alert_level();
  96. uint8_t get_message_level();
  97. void lcd_adjust_z();
  98. void lcd_pick_babystep();
  99. void lcd_alright();
  100. void EEPROM_save_B(int pos, int* value);
  101. void EEPROM_read_B(int pos, int* value);
  102. void lcd_wait_interact();
  103. void lcd_change_filament();
  104. void lcd_loading_filament();
  105. void lcd_change_success();
  106. void lcd_loading_color();
  107. void lcd_sdcard_stop();
  108. void lcd_sdcard_pause();
  109. void lcd_print_stop();
  110. void prusa_statistics(int _message, uint8_t _col_nr = 0);
  111. void lcd_confirm_print();
  112. unsigned char lcd_choose_color();
  113. //void lcd_mylang();
  114. extern bool lcd_selftest();
  115. void lcd_menu_statistics();
  116. extern const char* lcd_display_message_fullscreen_P(const char *msg, uint8_t &nlines);
  117. extern const char* lcd_display_message_fullscreen_P(const char *msg);
  118. extern void lcd_wait_for_click();
  119. extern void lcd_show_fullscreen_message_and_wait_P(const char *msg);
  120. // 0: no, 1: yes, -1: timeouted
  121. extern int8_t lcd_show_fullscreen_message_yes_no_and_wait_P(const char *msg, bool allow_timeouting = true, bool default_yes = false);
  122. extern int8_t lcd_show_multiscreen_message_yes_no_and_wait_P(const char *msg, bool allow_timeouting = true, bool default_yes = false);
  123. // Ask the user to move the Z axis up to the end stoppers and let
  124. // the user confirm that it has been done.
  125. #ifndef TMC2130
  126. extern bool lcd_calibrate_z_end_stop_manual(bool only_z);
  127. #endif
  128. // Show the result of the calibration process on the LCD screen.
  129. extern void lcd_bed_calibration_show_result(BedSkewOffsetDetectionResultType result, uint8_t point_too_far_mask);
  130. extern void lcd_diag_show_end_stops();
  131. #define LCD_MESSAGEPGM(x) lcd_setstatuspgm(PSTR(x))
  132. #define LCD_ALERTMESSAGEPGM(x) lcd_setalertstatuspgm(PSTR(x))
  133. #define LCD_MESSAGERPGM(x) lcd_setstatuspgm((x))
  134. #define LCD_ALERTMESSAGERPGM(x) lcd_setalertstatuspgm((x))
  135. // To be used in lcd_commands_type.
  136. #define LCD_COMMAND_IDLE 0
  137. #define LCD_COMMAND_LOAD_FILAMENT 1
  138. #define LCD_COMMAND_STOP_PRINT 2
  139. #define LCD_COMMAND_FARM_MODE_CONFIRM 4
  140. #define LCD_COMMAND_LONG_PAUSE 5
  141. #define LCD_COMMAND_LONG_PAUSE_RESUME 6
  142. #define LCD_COMMAND_PID_EXTRUDER 7
  143. #define LCD_COMMAND_V2_CAL 8
  144. extern int lcd_commands_type;
  145. extern uint8_t farm_mode;
  146. extern int farm_no;
  147. extern int farm_timer;
  148. extern int farm_status;
  149. #ifdef TMC2130
  150. #define SILENT_MODE_NORMAL 0
  151. #define SILENT_MODE_STEALTH 1
  152. #define SILENT_MODE_OFF SILENT_MODE_NORMAL
  153. #else
  154. #define SILENT_MODE_POWER 0
  155. #define SILENT_MODE_SILENT 1
  156. #define SILENT_MODE_AUTO 2
  157. #define SILENT_MODE_OFF SILENT_MODE_POWER
  158. #endif
  159. extern int8_t SilentModeMenu;
  160. extern bool cancel_heatup;
  161. extern bool isPrintPaused;
  162. void lcd_ignore_click(bool b=true);
  163. void lcd_commands();
  164. void change_extr(int extr);
  165. void extr_adj(int extruder);
  166. void extr_unload_all();
  167. void extr_unload_used();
  168. void extr_unload();
  169. void unload_filament();
  170. void stack_error();
  171. void lcd_printer_connected();
  172. void lcd_ping();
  173. void lcd_calibrate_extruder();
  174. void lcd_farm_sdcard_menu();
  175. //void getFileDescription(char *name, char *description);
  176. void lcd_farm_sdcard_menu_w();
  177. //void get_description();
  178. void lcd_wait_for_heater();
  179. void lcd_wait_for_cool_down();
  180. void adjust_bed_reset();
  181. void lcd_extr_cal_reset();
  182. void lcd_temp_cal_show_result(bool result);
  183. bool lcd_wait_for_pinda(float temp);
  184. union MenuData;
  185. void bowden_menu();
  186. char reset_menu();
  187. char choose_extruder_menu();
  188. void lcd_pinda_calibration_menu();
  189. void lcd_calibrate_pinda();
  190. void lcd_temp_calibration_set();
  191. void display_loading();
  192. #if !SDSORT_USES_RAM
  193. void lcd_set_degree();
  194. void lcd_set_progress();
  195. #endif
  196. void lcd_language();
  197. void lcd_wizard();
  198. void lcd_wizard(int state);
  199. #endif //ULTRALCD_H