My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ultralcd.cpp 63KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869
  1. #include "ultralcd.h"
  2. #ifdef ULTRA_LCD
  3. #include "Marlin.h"
  4. #include "language.h"
  5. #include "cardreader.h"
  6. #include "temperature.h"
  7. #include "stepper.h"
  8. #include "ConfigurationStore.h"
  9. int8_t encoderDiff; /* encoderDiff is updated from interrupt context and added to encoderPosition every LCD update */
  10. bool encoderRateMultiplierEnabled;
  11. int32_t lastEncoderMovementMillis;
  12. /* Configuration settings */
  13. int plaPreheatHotendTemp;
  14. int plaPreheatHPBTemp;
  15. int plaPreheatFanSpeed;
  16. int absPreheatHotendTemp;
  17. int absPreheatHPBTemp;
  18. int absPreheatFanSpeed;
  19. #ifdef FILAMENT_LCD_DISPLAY
  20. unsigned long message_millis = 0;
  21. #endif
  22. /* !Configuration settings */
  23. //Function pointer to menu functions.
  24. typedef void (*menuFunc_t)();
  25. uint8_t lcd_status_message_level;
  26. char lcd_status_message[LCD_WIDTH+1] = WELCOME_MSG;
  27. #ifdef DOGLCD
  28. #include "dogm_lcd_implementation.h"
  29. #else
  30. #include "ultralcd_implementation_hitachi_HD44780.h"
  31. #endif
  32. // The main status screen
  33. static void lcd_status_screen();
  34. #ifdef ULTIPANEL
  35. extern bool powersupply;
  36. static float manual_feedrate[] = MANUAL_FEEDRATE;
  37. static void lcd_main_menu();
  38. static void lcd_tune_menu();
  39. static void lcd_prepare_menu();
  40. static void lcd_move_menu();
  41. static void lcd_control_menu();
  42. static void lcd_control_temperature_menu();
  43. static void lcd_control_temperature_preheat_pla_settings_menu();
  44. static void lcd_control_temperature_preheat_abs_settings_menu();
  45. static void lcd_control_motion_menu();
  46. static void lcd_control_volumetric_menu();
  47. #ifdef DOGLCD
  48. static void lcd_set_contrast();
  49. #endif
  50. #ifdef FWRETRACT
  51. static void lcd_control_retract_menu();
  52. #endif
  53. static void lcd_sdcard_menu();
  54. #ifdef DELTA_CALIBRATION_MENU
  55. static void lcd_delta_calibrate_menu();
  56. #endif
  57. #if defined(MANUAL_BED_LEVELING)
  58. #include "mesh_bed_leveling.h"
  59. static void _lcd_level_bed();
  60. static void _lcd_level_bed_homing();
  61. static void lcd_level_bed();
  62. #endif
  63. static void lcd_quick_feedback();//Cause an LCD refresh, and give the user visual or audible feedback that something has happened
  64. /* Different types of actions that can be used in menu items. */
  65. static void menu_action_back(menuFunc_t data);
  66. static void menu_action_submenu(menuFunc_t data);
  67. static void menu_action_gcode(const char* pgcode);
  68. static void menu_action_function(menuFunc_t data);
  69. static void menu_action_sdfile(const char* filename, char* longFilename);
  70. static void menu_action_sddirectory(const char* filename, char* longFilename);
  71. static void menu_action_setting_edit_bool(const char* pstr, bool* ptr);
  72. static void menu_action_setting_edit_int3(const char* pstr, int* ptr, int minValue, int maxValue);
  73. static void menu_action_setting_edit_float3(const char* pstr, float* ptr, float minValue, float maxValue);
  74. static void menu_action_setting_edit_float32(const char* pstr, float* ptr, float minValue, float maxValue);
  75. static void menu_action_setting_edit_float43(const char* pstr, float* ptr, float minValue, float maxValue);
  76. static void menu_action_setting_edit_float5(const char* pstr, float* ptr, float minValue, float maxValue);
  77. static void menu_action_setting_edit_float51(const char* pstr, float* ptr, float minValue, float maxValue);
  78. static void menu_action_setting_edit_float52(const char* pstr, float* ptr, float minValue, float maxValue);
  79. static void menu_action_setting_edit_long5(const char* pstr, unsigned long* ptr, unsigned long minValue, unsigned long maxValue);
  80. static void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, menuFunc_t callbackFunc);
  81. static void menu_action_setting_edit_callback_int3(const char* pstr, int* ptr, int minValue, int maxValue, menuFunc_t callbackFunc);
  82. static void menu_action_setting_edit_callback_float3(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  83. static void menu_action_setting_edit_callback_float32(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  84. static void menu_action_setting_edit_callback_float43(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  85. static void menu_action_setting_edit_callback_float5(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  86. static void menu_action_setting_edit_callback_float51(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  87. static void menu_action_setting_edit_callback_float52(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  88. static void menu_action_setting_edit_callback_long5(const char* pstr, unsigned long* ptr, unsigned long minValue, unsigned long maxValue, menuFunc_t callbackFunc);
  89. #define ENCODER_FEEDRATE_DEADZONE 10
  90. #if !defined(LCD_I2C_VIKI)
  91. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  92. #define ENCODER_STEPS_PER_MENU_ITEM 5
  93. #endif
  94. #ifndef ENCODER_PULSES_PER_STEP
  95. #define ENCODER_PULSES_PER_STEP 1
  96. #endif
  97. #else
  98. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  99. #define ENCODER_STEPS_PER_MENU_ITEM 2 // VIKI LCD rotary encoder uses a different number of steps per rotation
  100. #endif
  101. #ifndef ENCODER_PULSES_PER_STEP
  102. #define ENCODER_PULSES_PER_STEP 1
  103. #endif
  104. #endif
  105. /* Helper macros for menus */
  106. /**
  107. * START_MENU generates the init code for a menu function
  108. */
  109. #define START_MENU() do { \
  110. encoderRateMultiplierEnabled = false; \
  111. if (encoderPosition > 0x8000) encoderPosition = 0; \
  112. uint8_t encoderLine = encoderPosition / ENCODER_STEPS_PER_MENU_ITEM; \
  113. if (encoderLine < currentMenuViewOffset) currentMenuViewOffset = encoderLine; \
  114. uint8_t _lineNr = currentMenuViewOffset, _menuItemNr; \
  115. bool wasClicked = LCD_CLICKED, itemSelected; \
  116. if (wasClicked) lcd_quick_feedback(); \
  117. for (uint8_t _drawLineNr = 0; _drawLineNr < LCD_HEIGHT; _drawLineNr++, _lineNr++) { \
  118. _menuItemNr = 0;
  119. /**
  120. * MENU_ITEM generates draw & handler code for a menu item, potentially calling:
  121. *
  122. * lcd_implementation_drawmenu_[type](sel, row, label, arg3...)
  123. * menu_action_[type](arg3...)
  124. *
  125. * Examples:
  126. * MENU_ITEM(back, MSG_WATCH, lcd_status_screen)
  127. * lcd_implementation_drawmenu_back(sel, row, PSTR(MSG_WATCH), lcd_status_screen)
  128. * menu_action_back(lcd_status_screen)
  129. *
  130. * MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause)
  131. * lcd_implementation_drawmenu_function(sel, row, PSTR(MSG_PAUSE_PRINT), lcd_sdcard_pause)
  132. * menu_action_function(lcd_sdcard_pause)
  133. *
  134. * MENU_ITEM_EDIT(int3, MSG_SPEED, &feedmultiply, 10, 999)
  135. * MENU_ITEM(setting_edit_int3, MSG_SPEED, PSTR(MSG_SPEED), &feedmultiply, 10, 999)
  136. * lcd_implementation_drawmenu_setting_edit_int3(sel, row, PSTR(MSG_SPEED), PSTR(MSG_SPEED), &feedmultiply, 10, 999)
  137. * menu_action_setting_edit_int3(PSTR(MSG_SPEED), &feedmultiply, 10, 999)
  138. *
  139. */
  140. #define MENU_ITEM(type, label, args...) do { \
  141. if (_menuItemNr == _lineNr) { \
  142. itemSelected = encoderLine == _menuItemNr; \
  143. if (lcdDrawUpdate) \
  144. lcd_implementation_drawmenu_ ## type(itemSelected, _drawLineNr, PSTR(label), ## args); \
  145. if (wasClicked && itemSelected) { \
  146. menu_action_ ## type(args); \
  147. return; \
  148. } \
  149. } \
  150. _menuItemNr++; \
  151. } while(0)
  152. #ifdef ENCODER_RATE_MULTIPLIER
  153. /**
  154. * MENU_MULTIPLIER_ITEM generates drawing and handling code for a multiplier menu item
  155. */
  156. #define MENU_MULTIPLIER_ITEM(type, label, args...) do { \
  157. if (_menuItemNr == _lineNr) { \
  158. itemSelected = encoderLine == _menuItemNr; \
  159. if (lcdDrawUpdate) \
  160. lcd_implementation_drawmenu_ ## type(itemSelected, _drawLineNr, PSTR(label), ## args); \
  161. if (wasClicked && itemSelected) { \
  162. encoderRateMultiplierEnabled = true; \
  163. lastEncoderMovementMillis = 0; \
  164. menu_action_ ## type(args); \
  165. return; \
  166. } \
  167. } \
  168. _menuItemNr++; \
  169. } while(0)
  170. #endif //ENCODER_RATE_MULTIPLIER
  171. #define MENU_ITEM_DUMMY() do { _menuItemNr++; } while(0)
  172. #define MENU_ITEM_EDIT(type, label, args...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label), ## args)
  173. #define MENU_ITEM_EDIT_CALLBACK(type, label, args...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## args)
  174. #ifdef ENCODER_RATE_MULTIPLIER
  175. #define MENU_MULTIPLIER_ITEM_EDIT(type, label, args...) MENU_MULTIPLIER_ITEM(setting_edit_ ## type, label, PSTR(label), ## args)
  176. #define MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(type, label, args...) MENU_MULTIPLIER_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## args)
  177. #else //!ENCODER_RATE_MULTIPLIER
  178. #define MENU_MULTIPLIER_ITEM_EDIT(type, label, args...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label), ## args)
  179. #define MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(type, label, args...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## args)
  180. #endif //!ENCODER_RATE_MULTIPLIER
  181. #define END_MENU() \
  182. if (encoderLine >= _menuItemNr) { encoderPosition = _menuItemNr * ENCODER_STEPS_PER_MENU_ITEM - 1; encoderLine = encoderPosition / ENCODER_STEPS_PER_MENU_ITEM; }\
  183. if (encoderLine >= currentMenuViewOffset + LCD_HEIGHT) { currentMenuViewOffset = encoderLine - LCD_HEIGHT + 1; lcdDrawUpdate = 1; _lineNr = currentMenuViewOffset - 1; _drawLineNr = -1; } \
  184. } } while(0)
  185. /** Used variables to keep track of the menu */
  186. #ifndef REPRAPWORLD_KEYPAD
  187. volatile uint8_t buttons; // Bits of the pressed buttons.
  188. #else
  189. volatile uint8_t buttons_reprapworld_keypad; // The reprapworld_keypad shift register values
  190. #endif
  191. #ifdef LCD_HAS_SLOW_BUTTONS
  192. volatile uint8_t slow_buttons; // Bits of the pressed buttons.
  193. #endif
  194. uint8_t currentMenuViewOffset; /* scroll offset in the current menu */
  195. uint32_t blocking_enc;
  196. uint8_t lastEncoderBits;
  197. uint32_t encoderPosition;
  198. #if (SDCARDDETECT > 0)
  199. bool lcd_oldcardstatus;
  200. #endif
  201. #endif // ULTIPANEL
  202. menuFunc_t currentMenu = lcd_status_screen; /* function pointer to the currently active menu */
  203. uint32_t lcd_next_update_millis;
  204. uint8_t lcd_status_update_delay;
  205. bool ignore_click = false;
  206. bool wait_for_unclick;
  207. uint8_t lcdDrawUpdate = 2; /* Set to none-zero when the LCD needs to draw, decreased after every draw. Set to 2 in LCD routines so the LCD gets at least 1 full redraw (first redraw is partial) */
  208. //prevMenu and prevEncoderPosition are used to store the previous menu location when editing settings.
  209. menuFunc_t prevMenu = NULL;
  210. uint16_t prevEncoderPosition;
  211. //Variables used when editing values.
  212. const char* editLabel;
  213. void* editValue;
  214. int32_t minEditValue, maxEditValue;
  215. menuFunc_t callbackFunc;
  216. // place-holders for Ki and Kd edits
  217. float raw_Ki, raw_Kd;
  218. static void lcd_goto_menu(menuFunc_t menu, const uint32_t encoder=0, const bool feedback=true) {
  219. if (currentMenu != menu) {
  220. currentMenu = menu;
  221. encoderPosition = encoder;
  222. if (feedback) lcd_quick_feedback();
  223. // For LCD_PROGRESS_BAR re-initialize the custom characters
  224. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT) && !defined(DOGLCD)
  225. lcd_set_custom_characters(menu == lcd_status_screen);
  226. #endif
  227. }
  228. }
  229. /* Main status screen. It's up to the implementation specific part to show what is needed. As this is very display dependent */
  230. static void lcd_status_screen()
  231. {
  232. encoderRateMultiplierEnabled = false;
  233. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT) && !defined(DOGLCD)
  234. uint16_t mil = millis();
  235. #ifndef PROGRESS_MSG_ONCE
  236. if (mil > progressBarTick + PROGRESS_BAR_MSG_TIME + PROGRESS_BAR_BAR_TIME) {
  237. progressBarTick = mil;
  238. }
  239. #endif
  240. #if PROGRESS_MSG_EXPIRE > 0
  241. // keep the message alive if paused, count down otherwise
  242. if (messageTick > 0) {
  243. if (card.isFileOpen()) {
  244. if (IS_SD_PRINTING) {
  245. if ((mil-messageTick) >= PROGRESS_MSG_EXPIRE) {
  246. lcd_status_message[0] = '\0';
  247. messageTick = 0;
  248. }
  249. }
  250. else {
  251. messageTick += LCD_UPDATE_INTERVAL;
  252. }
  253. }
  254. else {
  255. messageTick = 0;
  256. }
  257. }
  258. #endif
  259. #endif //LCD_PROGRESS_BAR
  260. if (lcd_status_update_delay)
  261. lcd_status_update_delay--;
  262. else
  263. lcdDrawUpdate = 1;
  264. if (lcdDrawUpdate) {
  265. lcd_implementation_status_screen();
  266. lcd_status_update_delay = 10; /* redraw the main screen every second. This is easier then trying keep track of all things that change on the screen */
  267. }
  268. #ifdef ULTIPANEL
  269. bool current_click = LCD_CLICKED;
  270. if (ignore_click) {
  271. if (wait_for_unclick) {
  272. if (!current_click) {
  273. ignore_click = wait_for_unclick = false;
  274. }
  275. else {
  276. current_click = false;
  277. }
  278. }
  279. else if (current_click) {
  280. lcd_quick_feedback();
  281. wait_for_unclick = true;
  282. current_click = false;
  283. }
  284. }
  285. if (current_click)
  286. {
  287. lcd_goto_menu(lcd_main_menu);
  288. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  289. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT) && !defined(DOGLCD)
  290. currentMenu == lcd_status_screen
  291. #endif
  292. );
  293. #ifdef FILAMENT_LCD_DISPLAY
  294. message_millis = millis(); // get status message to show up for a while
  295. #endif
  296. }
  297. #ifdef ULTIPANEL_FEEDMULTIPLY
  298. // Dead zone at 100% feedrate
  299. if ((feedmultiply < 100 && (feedmultiply + int(encoderPosition)) > 100) ||
  300. (feedmultiply > 100 && (feedmultiply + int(encoderPosition)) < 100))
  301. {
  302. encoderPosition = 0;
  303. feedmultiply = 100;
  304. }
  305. if (feedmultiply == 100 && int(encoderPosition) > ENCODER_FEEDRATE_DEADZONE)
  306. {
  307. feedmultiply += int(encoderPosition) - ENCODER_FEEDRATE_DEADZONE;
  308. encoderPosition = 0;
  309. }
  310. else if (feedmultiply == 100 && int(encoderPosition) < -ENCODER_FEEDRATE_DEADZONE)
  311. {
  312. feedmultiply += int(encoderPosition) + ENCODER_FEEDRATE_DEADZONE;
  313. encoderPosition = 0;
  314. }
  315. else if (feedmultiply != 100)
  316. {
  317. feedmultiply += int(encoderPosition);
  318. encoderPosition = 0;
  319. }
  320. #endif //ULTIPANEL_FEEDMULTIPLY
  321. if (feedmultiply < 10)
  322. feedmultiply = 10;
  323. else if (feedmultiply > 999)
  324. feedmultiply = 999;
  325. #endif //ULTIPANEL
  326. }
  327. #ifdef ULTIPANEL
  328. static void lcd_return_to_status() { lcd_goto_menu(lcd_status_screen, 0, false); }
  329. static void lcd_sdcard_pause() { card.pauseSDPrint(); }
  330. static void lcd_sdcard_resume() { card.startFileprint(); }
  331. static void lcd_sdcard_stop() {
  332. quickStop();
  333. card.sdprinting = false;
  334. card.closefile();
  335. autotempShutdown();
  336. cancel_heatup = true;
  337. lcd_setstatus(MSG_PRINT_ABORTED);
  338. }
  339. /* Menu implementation */
  340. static void lcd_main_menu() {
  341. START_MENU();
  342. MENU_ITEM(back, MSG_WATCH, lcd_status_screen);
  343. if (movesplanned() || IS_SD_PRINTING) {
  344. MENU_ITEM(submenu, MSG_TUNE, lcd_tune_menu);
  345. }
  346. else {
  347. MENU_ITEM(submenu, MSG_PREPARE, lcd_prepare_menu);
  348. #ifdef DELTA_CALIBRATION_MENU
  349. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE, lcd_delta_calibrate_menu);
  350. #endif
  351. }
  352. MENU_ITEM(submenu, MSG_CONTROL, lcd_control_menu);
  353. #ifdef SDSUPPORT
  354. if (card.cardOK) {
  355. if (card.isFileOpen()) {
  356. if (card.sdprinting)
  357. MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause);
  358. else
  359. MENU_ITEM(function, MSG_RESUME_PRINT, lcd_sdcard_resume);
  360. MENU_ITEM(function, MSG_STOP_PRINT, lcd_sdcard_stop);
  361. }
  362. else {
  363. MENU_ITEM(submenu, MSG_CARD_MENU, lcd_sdcard_menu);
  364. #if SDCARDDETECT < 1
  365. MENU_ITEM(gcode, MSG_CNG_SDCARD, PSTR("M21")); // SD-card changed by user
  366. #endif
  367. }
  368. }
  369. else {
  370. MENU_ITEM(submenu, MSG_NO_CARD, lcd_sdcard_menu);
  371. #if SDCARDDETECT < 1
  372. MENU_ITEM(gcode, MSG_INIT_SDCARD, PSTR("M21")); // Manually initialize the SD-card via user interface
  373. #endif
  374. }
  375. #endif //SDSUPPORT
  376. END_MENU();
  377. }
  378. #if defined( SDSUPPORT ) && defined( MENU_ADDAUTOSTART )
  379. static void lcd_autostart_sd() {
  380. card.autostart_index = 0;
  381. card.setroot();
  382. card.checkautostart(true);
  383. }
  384. #endif
  385. void lcd_set_home_offsets() {
  386. for(int8_t i=0; i < NUM_AXIS; i++) {
  387. if (i != E_AXIS) {
  388. home_offset[i] -= current_position[i];
  389. current_position[i] = 0.0;
  390. }
  391. }
  392. plan_set_position(0.0, 0.0, 0.0, current_position[E_AXIS]);
  393. // Audio feedback
  394. enquecommands_P(PSTR("M300 S659 P200\nM300 S698 P200"));
  395. lcd_return_to_status();
  396. }
  397. #ifdef BABYSTEPPING
  398. static void _lcd_babystep(int axis, const char *msg) {
  399. if (encoderPosition != 0) {
  400. babystepsTodo[axis] += (int)encoderPosition;
  401. encoderPosition = 0;
  402. lcdDrawUpdate = 1;
  403. }
  404. if (lcdDrawUpdate) lcd_implementation_drawedit(msg, "");
  405. if (LCD_CLICKED) lcd_goto_menu(lcd_tune_menu);
  406. }
  407. static void lcd_babystep_x() { _lcd_babystep(X_AXIS, PSTR(MSG_BABYSTEPPING_X)); }
  408. static void lcd_babystep_y() { _lcd_babystep(Y_AXIS, PSTR(MSG_BABYSTEPPING_Y)); }
  409. static void lcd_babystep_z() { _lcd_babystep(Z_AXIS, PSTR(MSG_BABYSTEPPING_Z)); }
  410. #endif //BABYSTEPPING
  411. static void lcd_tune_menu() {
  412. START_MENU();
  413. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  414. MENU_ITEM_EDIT(int3, MSG_SPEED, &feedmultiply, 10, 999);
  415. #if TEMP_SENSOR_0 != 0
  416. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
  417. #endif
  418. #if TEMP_SENSOR_1 != 0
  419. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N2, &target_temperature[1], 0, HEATER_1_MAXTEMP - 15);
  420. #endif
  421. #if TEMP_SENSOR_2 != 0
  422. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N3, &target_temperature[2], 0, HEATER_2_MAXTEMP - 15);
  423. #endif
  424. #if TEMP_SENSOR_3 != 0
  425. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N4, &target_temperature[3], 0, HEATER_3_MAXTEMP - 15);
  426. #endif
  427. #if TEMP_SENSOR_BED != 0
  428. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);
  429. #endif
  430. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
  431. MENU_ITEM_EDIT(int3, MSG_FLOW, &extrudemultiply, 10, 999);
  432. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F0, &extruder_multiply[0], 10, 999);
  433. #if TEMP_SENSOR_1 != 0
  434. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F1, &extruder_multiply[1], 10, 999);
  435. #endif
  436. #if TEMP_SENSOR_2 != 0
  437. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F2, &extruder_multiply[2], 10, 999);
  438. #endif
  439. #if TEMP_SENSOR_3 != 0
  440. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F3, &extruder_multiply[3], 10, 999);
  441. #endif
  442. #ifdef BABYSTEPPING
  443. #ifdef BABYSTEP_XY
  444. MENU_ITEM(submenu, MSG_BABYSTEP_X, lcd_babystep_x);
  445. MENU_ITEM(submenu, MSG_BABYSTEP_Y, lcd_babystep_y);
  446. #endif //BABYSTEP_XY
  447. MENU_ITEM(submenu, MSG_BABYSTEP_Z, lcd_babystep_z);
  448. #endif
  449. #ifdef FILAMENTCHANGEENABLE
  450. MENU_ITEM(gcode, MSG_FILAMENTCHANGE, PSTR("M600"));
  451. #endif
  452. END_MENU();
  453. }
  454. void _lcd_preheat(int endnum, const float temph, const float tempb, const int fan) {
  455. if (temph > 0) setTargetHotend(temph, endnum);
  456. setTargetBed(tempb);
  457. fanSpeed = fan;
  458. lcd_return_to_status();
  459. setWatch(); // heater sanity check timer
  460. }
  461. void lcd_preheat_pla0() { _lcd_preheat(0, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  462. void lcd_preheat_abs0() { _lcd_preheat(0, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  463. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_BED != 0 //more than one extruder present
  464. #if TEMP_SENSOR_1 != 0
  465. void lcd_preheat_pla1() { _lcd_preheat(1, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  466. void lcd_preheat_abs1() { _lcd_preheat(1, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  467. #endif
  468. #if TEMP_SENSOR_2 != 0
  469. void lcd_preheat_pla2() { _lcd_preheat(2, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  470. void lcd_preheat_abs2() { _lcd_preheat(2, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  471. #endif
  472. #if TEMP_SENSOR_3 != 0
  473. void lcd_preheat_pla3() { _lcd_preheat(3, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  474. void lcd_preheat_abs3() { _lcd_preheat(3, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  475. #endif
  476. void lcd_preheat_pla0123() {
  477. setTargetHotend0(plaPreheatHotendTemp);
  478. setTargetHotend1(plaPreheatHotendTemp);
  479. setTargetHotend2(plaPreheatHotendTemp);
  480. _lcd_preheat(3, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed);
  481. }
  482. void lcd_preheat_abs0123() {
  483. setTargetHotend0(absPreheatHotendTemp);
  484. setTargetHotend1(absPreheatHotendTemp);
  485. setTargetHotend2(absPreheatHotendTemp);
  486. _lcd_preheat(3, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed);
  487. }
  488. #if TEMP_SENSOR_0 != 0
  489. void lcd_preheat_pla_bedonly() { _lcd_preheat(0, 0, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  490. void lcd_preheat_abs_bedonly() { _lcd_preheat(0, 0, absPreheatHPBTemp, absPreheatFanSpeed); }
  491. static void lcd_preheat_pla_menu() {
  492. START_MENU();
  493. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  494. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H1, lcd_preheat_pla0);
  495. #if TEMP_SENSOR_1 != 0
  496. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H2, lcd_preheat_pla1);
  497. #endif
  498. #if TEMP_SENSOR_2 != 0
  499. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H3, lcd_preheat_pla2);
  500. #endif
  501. #if TEMP_SENSOR_3 != 0
  502. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H4, lcd_preheat_pla3);
  503. #endif
  504. MENU_ITEM(function, MSG_PREHEAT_PLA_ALL, lcd_preheat_pla0123);
  505. #if TEMP_SENSOR_BED != 0
  506. MENU_ITEM(function, MSG_PREHEAT_PLA_BEDONLY, lcd_preheat_pla_bedonly);
  507. #endif
  508. END_MENU();
  509. }
  510. static void lcd_preheat_abs_menu() {
  511. START_MENU();
  512. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  513. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H1, lcd_preheat_abs0);
  514. #if TEMP_SENSOR_1 != 0
  515. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H2, lcd_preheat_abs1);
  516. #endif
  517. #if TEMP_SENSOR_2 != 0
  518. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H3, lcd_preheat_abs2);
  519. #endif
  520. #if TEMP_SENSOR_3 != 0
  521. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H4, lcd_preheat_abs3);
  522. #endif
  523. MENU_ITEM(function, MSG_PREHEAT_ABS_ALL, lcd_preheat_abs0123);
  524. #if TEMP_SENSOR_BED != 0
  525. MENU_ITEM(function, MSG_PREHEAT_ABS_BEDONLY, lcd_preheat_abs_bedonly);
  526. #endif
  527. END_MENU();
  528. }
  529. #endif
  530. #endif // more than one temperature sensor present
  531. void lcd_cooldown() {
  532. setTargetHotend0(0);
  533. setTargetHotend1(0);
  534. setTargetHotend2(0);
  535. setTargetHotend3(0);
  536. setTargetBed(0);
  537. fanSpeed = 0;
  538. lcd_return_to_status();
  539. }
  540. static void lcd_prepare_menu() {
  541. START_MENU();
  542. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  543. #if defined( SDSUPPORT ) && defined( MENU_ADDAUTOSTART )
  544. MENU_ITEM(function, MSG_AUTOSTART, lcd_autostart_sd);
  545. #endif
  546. MENU_ITEM(gcode, MSG_DISABLE_STEPPERS, PSTR("M84"));
  547. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  548. MENU_ITEM(function, MSG_SET_HOME_OFFSETS, lcd_set_home_offsets);
  549. //MENU_ITEM(gcode, MSG_SET_ORIGIN, PSTR("G92 X0 Y0 Z0"));
  550. #if TEMP_SENSOR_0 != 0
  551. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_BED != 0
  552. MENU_ITEM(submenu, MSG_PREHEAT_PLA, lcd_preheat_pla_menu);
  553. MENU_ITEM(submenu, MSG_PREHEAT_ABS, lcd_preheat_abs_menu);
  554. #else
  555. MENU_ITEM(function, MSG_PREHEAT_PLA, lcd_preheat_pla0);
  556. MENU_ITEM(function, MSG_PREHEAT_ABS, lcd_preheat_abs0);
  557. #endif
  558. #endif
  559. MENU_ITEM(function, MSG_COOLDOWN, lcd_cooldown);
  560. #if defined(POWER_SUPPLY) && POWER_SUPPLY > 0 && defined(PS_ON_PIN) && PS_ON_PIN > -1
  561. if (powersupply) {
  562. MENU_ITEM(gcode, MSG_SWITCH_PS_OFF, PSTR("M81"));
  563. }
  564. else {
  565. MENU_ITEM(gcode, MSG_SWITCH_PS_ON, PSTR("M80"));
  566. }
  567. #endif
  568. MENU_ITEM(submenu, MSG_MOVE_AXIS, lcd_move_menu);
  569. #if defined(MANUAL_BED_LEVELING)
  570. MENU_ITEM(submenu, MSG_LEVEL_BED, lcd_level_bed);
  571. #endif
  572. END_MENU();
  573. }
  574. #ifdef DELTA_CALIBRATION_MENU
  575. static void lcd_delta_calibrate_menu()
  576. {
  577. START_MENU();
  578. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  579. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  580. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_X, PSTR("G0 F8000 X-77.94 Y-45 Z0"));
  581. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_Y, PSTR("G0 F8000 X77.94 Y-45 Z0"));
  582. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_Z, PSTR("G0 F8000 X0 Y90 Z0"));
  583. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_CENTER, PSTR("G0 F8000 X0 Y0 Z0"));
  584. END_MENU();
  585. }
  586. #endif // DELTA_CALIBRATION_MENU
  587. float move_menu_scale;
  588. static void lcd_move_menu_axis();
  589. static void _lcd_move(const char *name, int axis, int min, int max) {
  590. if (encoderPosition != 0) {
  591. refresh_cmd_timeout();
  592. current_position[axis] += float((int)encoderPosition) * move_menu_scale;
  593. if (min_software_endstops && current_position[axis] < min) current_position[axis] = min;
  594. if (max_software_endstops && current_position[axis] > max) current_position[axis] = max;
  595. encoderPosition = 0;
  596. #ifdef DELTA
  597. calculate_delta(current_position);
  598. plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS], manual_feedrate[axis]/60, active_extruder);
  599. #else
  600. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[axis]/60, active_extruder);
  601. #endif
  602. lcdDrawUpdate = 1;
  603. }
  604. if (lcdDrawUpdate) lcd_implementation_drawedit(name, ftostr31(current_position[axis]));
  605. if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
  606. }
  607. static void lcd_move_x() { _lcd_move(PSTR("X"), X_AXIS, X_MIN_POS, X_MAX_POS); }
  608. static void lcd_move_y() { _lcd_move(PSTR("Y"), Y_AXIS, Y_MIN_POS, Y_MAX_POS); }
  609. static void lcd_move_z() { _lcd_move(PSTR("Z"), Z_AXIS, Z_MIN_POS, Z_MAX_POS); }
  610. static void lcd_move_e() {
  611. if (encoderPosition != 0) {
  612. current_position[E_AXIS] += float((int)encoderPosition) * move_menu_scale;
  613. encoderPosition = 0;
  614. #ifdef DELTA
  615. calculate_delta(current_position);
  616. plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS], manual_feedrate[E_AXIS]/60, active_extruder);
  617. #else
  618. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[E_AXIS]/60, active_extruder);
  619. #endif
  620. lcdDrawUpdate = 1;
  621. }
  622. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR("Extruder"), ftostr31(current_position[E_AXIS]));
  623. if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
  624. }
  625. static void lcd_move_menu_axis() {
  626. START_MENU();
  627. MENU_ITEM(back, MSG_MOVE_AXIS, lcd_move_menu);
  628. MENU_ITEM(submenu, MSG_MOVE_X, lcd_move_x);
  629. MENU_ITEM(submenu, MSG_MOVE_Y, lcd_move_y);
  630. if (move_menu_scale < 10.0) {
  631. MENU_ITEM(submenu, MSG_MOVE_Z, lcd_move_z);
  632. MENU_ITEM(submenu, MSG_MOVE_E, lcd_move_e);
  633. }
  634. END_MENU();
  635. }
  636. static void lcd_move_menu_10mm() {
  637. move_menu_scale = 10.0;
  638. lcd_move_menu_axis();
  639. }
  640. static void lcd_move_menu_1mm() {
  641. move_menu_scale = 1.0;
  642. lcd_move_menu_axis();
  643. }
  644. static void lcd_move_menu_01mm() {
  645. move_menu_scale = 0.1;
  646. lcd_move_menu_axis();
  647. }
  648. static void lcd_move_menu() {
  649. START_MENU();
  650. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  651. MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm);
  652. MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm);
  653. MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm);
  654. //TODO:X,Y,Z,E
  655. END_MENU();
  656. }
  657. static void lcd_control_menu() {
  658. START_MENU();
  659. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  660. MENU_ITEM(submenu, MSG_TEMPERATURE, lcd_control_temperature_menu);
  661. MENU_ITEM(submenu, MSG_MOTION, lcd_control_motion_menu);
  662. MENU_ITEM(submenu, MSG_VOLUMETRIC, lcd_control_volumetric_menu);
  663. #ifdef DOGLCD
  664. //MENU_ITEM_EDIT(int3, MSG_CONTRAST, &lcd_contrast, 0, 63);
  665. MENU_ITEM(submenu, MSG_CONTRAST, lcd_set_contrast);
  666. #endif
  667. #ifdef FWRETRACT
  668. MENU_ITEM(submenu, MSG_RETRACT, lcd_control_retract_menu);
  669. #endif
  670. #ifdef EEPROM_SETTINGS
  671. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  672. MENU_ITEM(function, MSG_LOAD_EPROM, Config_RetrieveSettings);
  673. #endif
  674. MENU_ITEM(function, MSG_RESTORE_FAILSAFE, Config_ResetDefault);
  675. END_MENU();
  676. }
  677. #ifdef PIDTEMP
  678. // Helpers for editing PID Ki & Kd values
  679. // grab the PID value out of the temp variable; scale it; then update the PID driver
  680. void copy_and_scalePID_i(int e) {
  681. PID_PARAM(Ki, e) = scalePID_i(raw_Ki);
  682. updatePID();
  683. }
  684. void copy_and_scalePID_d(int e) {
  685. PID_PARAM(Kd, e) = scalePID_d(raw_Kd);
  686. updatePID();
  687. }
  688. void copy_and_scalePID_i_E1() { copy_and_scalePID_i(0); }
  689. void copy_and_scalePID_d_E1() { copy_and_scalePID_d(0); }
  690. #ifdef PID_PARAMS_PER_EXTRUDER
  691. #if EXTRUDERS > 1
  692. void copy_and_scalePID_i_E2() { copy_and_scalePID_i(1); }
  693. void copy_and_scalePID_d_E2() { copy_and_scalePID_d(1); }
  694. #if EXTRUDERS > 2
  695. void copy_and_scalePID_i_E3() { copy_and_scalePID_i(2); }
  696. void copy_and_scalePID_d_E3() { copy_and_scalePID_d(2); }
  697. #if EXTRUDERS > 3
  698. void copy_and_scalePID_i_E4() { copy_and_scalePID_i(3); }
  699. void copy_and_scalePID_d_E4() { copy_and_scalePID_d(3); }
  700. #endif //EXTRUDERS > 3
  701. #endif //EXTRUDERS > 2
  702. #endif //EXTRUDERS > 1
  703. #endif //PID_PARAMS_PER_EXTRUDER
  704. #endif //PIDTEMP
  705. static void lcd_control_temperature_menu() {
  706. START_MENU();
  707. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  708. #if TEMP_SENSOR_0 != 0
  709. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
  710. #endif
  711. #if EXTRUDERS > 1
  712. #if TEMP_SENSOR_1 != 0
  713. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N2, &target_temperature[1], 0, HEATER_1_MAXTEMP - 15);
  714. #endif
  715. #if EXTRUDERS > 2
  716. #if TEMP_SENSOR_2 != 0
  717. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N3, &target_temperature[2], 0, HEATER_2_MAXTEMP - 15);
  718. #endif
  719. #if EXTRUDERS > 3
  720. #if TEMP_SENSOR_3 != 0
  721. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N4, &target_temperature[3], 0, HEATER_3_MAXTEMP - 15);
  722. #endif
  723. #endif // EXTRUDERS > 3
  724. #endif // EXTRUDERS > 2
  725. #endif // EXTRUDERS > 1
  726. #if TEMP_SENSOR_BED != 0
  727. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);
  728. #endif
  729. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
  730. #if defined(AUTOTEMP) && (TEMP_SENSOR_0 != 0)
  731. MENU_ITEM_EDIT(bool, MSG_AUTOTEMP, &autotemp_enabled);
  732. MENU_ITEM_EDIT(float3, MSG_MIN, &autotemp_min, 0, HEATER_0_MAXTEMP - 15);
  733. MENU_ITEM_EDIT(float3, MSG_MAX, &autotemp_max, 0, HEATER_0_MAXTEMP - 15);
  734. MENU_ITEM_EDIT(float32, MSG_FACTOR, &autotemp_factor, 0.0, 1.0);
  735. #endif
  736. #ifdef PIDTEMP
  737. // set up temp variables - undo the default scaling
  738. raw_Ki = unscalePID_i(PID_PARAM(Ki,0));
  739. raw_Kd = unscalePID_d(PID_PARAM(Kd,0));
  740. MENU_ITEM_EDIT(float52, MSG_PID_P, &PID_PARAM(Kp,0), 1, 9990);
  741. // i is typically a small value so allows values below 1
  742. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E1);
  743. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D, &raw_Kd, 1, 9990, copy_and_scalePID_d_E1);
  744. #ifdef PID_ADD_EXTRUSION_RATE
  745. MENU_ITEM_EDIT(float3, MSG_PID_C, &PID_PARAM(Kc,0), 1, 9990);
  746. #endif//PID_ADD_EXTRUSION_RATE
  747. #ifdef PID_PARAMS_PER_EXTRUDER
  748. #if EXTRUDERS > 1
  749. // set up temp variables - undo the default scaling
  750. raw_Ki = unscalePID_i(PID_PARAM(Ki,1));
  751. raw_Kd = unscalePID_d(PID_PARAM(Kd,1));
  752. MENU_ITEM_EDIT(float52, MSG_PID_P MSG_E2, &PID_PARAM(Kp,1), 1, 9990);
  753. // i is typically a small value so allows values below 1
  754. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I MSG_E2, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E2);
  755. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D MSG_E2, &raw_Kd, 1, 9990, copy_and_scalePID_d_E2);
  756. #ifdef PID_ADD_EXTRUSION_RATE
  757. MENU_ITEM_EDIT(float3, MSG_PID_C MSG_E2, &PID_PARAM(Kc,1), 1, 9990);
  758. #endif//PID_ADD_EXTRUSION_RATE
  759. #if EXTRUDERS > 2
  760. // set up temp variables - undo the default scaling
  761. raw_Ki = unscalePID_i(PID_PARAM(Ki,2));
  762. raw_Kd = unscalePID_d(PID_PARAM(Kd,2));
  763. MENU_ITEM_EDIT(float52, MSG_PID_P MSG_E3, &PID_PARAM(Kp,2), 1, 9990);
  764. // i is typically a small value so allows values below 1
  765. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I MSG_E3, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E3);
  766. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D MSG_E3, &raw_Kd, 1, 9990, copy_and_scalePID_d_E3);
  767. #ifdef PID_ADD_EXTRUSION_RATE
  768. MENU_ITEM_EDIT(float3, MSG_PID_C MSG_E3, &PID_PARAM(Kc,2), 1, 9990);
  769. #endif//PID_ADD_EXTRUSION_RATE
  770. #if EXTRUDERS > 3
  771. // set up temp variables - undo the default scaling
  772. raw_Ki = unscalePID_i(PID_PARAM(Ki,3));
  773. raw_Kd = unscalePID_d(PID_PARAM(Kd,3));
  774. MENU_ITEM_EDIT(float52, MSG_PID_P MSG_E4, &PID_PARAM(Kp,3), 1, 9990);
  775. // i is typically a small value so allows values below 1
  776. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I MSG_E4, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E4);
  777. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D MSG_E4, &raw_Kd, 1, 9990, copy_and_scalePID_d_E4);
  778. #ifdef PID_ADD_EXTRUSION_RATE
  779. MENU_ITEM_EDIT(float3, MSG_PID_C MSG_E4, &PID_PARAM(Kc,3), 1, 9990);
  780. #endif//PID_ADD_EXTRUSION_RATE
  781. #endif//EXTRUDERS > 3
  782. #endif//EXTRUDERS > 2
  783. #endif//EXTRUDERS > 1
  784. #endif //PID_PARAMS_PER_EXTRUDER
  785. #endif//PIDTEMP
  786. MENU_ITEM(submenu, MSG_PREHEAT_PLA_SETTINGS, lcd_control_temperature_preheat_pla_settings_menu);
  787. MENU_ITEM(submenu, MSG_PREHEAT_ABS_SETTINGS, lcd_control_temperature_preheat_abs_settings_menu);
  788. END_MENU();
  789. }
  790. static void lcd_control_temperature_preheat_pla_settings_menu() {
  791. START_MENU();
  792. MENU_ITEM(back, MSG_TEMPERATURE, lcd_control_temperature_menu);
  793. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &plaPreheatFanSpeed, 0, 255);
  794. #if TEMP_SENSOR_0 != 0
  795. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &plaPreheatHotendTemp, 0, HEATER_0_MAXTEMP - 15);
  796. #endif
  797. #if TEMP_SENSOR_BED != 0
  798. MENU_ITEM_EDIT(int3, MSG_BED, &plaPreheatHPBTemp, 0, BED_MAXTEMP - 15);
  799. #endif
  800. #ifdef EEPROM_SETTINGS
  801. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  802. #endif
  803. END_MENU();
  804. }
  805. static void lcd_control_temperature_preheat_abs_settings_menu() {
  806. START_MENU();
  807. MENU_ITEM(back, MSG_TEMPERATURE, lcd_control_temperature_menu);
  808. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &absPreheatFanSpeed, 0, 255);
  809. #if TEMP_SENSOR_0 != 0
  810. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &absPreheatHotendTemp, 0, HEATER_0_MAXTEMP - 15);
  811. #endif
  812. #if TEMP_SENSOR_BED != 0
  813. MENU_ITEM_EDIT(int3, MSG_BED, &absPreheatHPBTemp, 0, BED_MAXTEMP - 15);
  814. #endif
  815. #ifdef EEPROM_SETTINGS
  816. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  817. #endif
  818. END_MENU();
  819. }
  820. static void lcd_control_motion_menu() {
  821. START_MENU();
  822. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  823. #ifdef ENABLE_AUTO_BED_LEVELING
  824. MENU_ITEM_EDIT(float32, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX);
  825. #endif
  826. MENU_ITEM_EDIT(float5, MSG_ACC, &acceleration, 10, 99000);
  827. MENU_ITEM_EDIT(float3, MSG_VXY_JERK, &max_xy_jerk, 1, 990);
  828. MENU_ITEM_EDIT(float52, MSG_VZ_JERK, &max_z_jerk, 0.1, 990);
  829. MENU_ITEM_EDIT(float3, MSG_VE_JERK, &max_e_jerk, 1, 990);
  830. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_X, &max_feedrate[X_AXIS], 1, 999);
  831. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Y, &max_feedrate[Y_AXIS], 1, 999);
  832. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Z, &max_feedrate[Z_AXIS], 1, 999);
  833. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E, &max_feedrate[E_AXIS], 1, 999);
  834. MENU_ITEM_EDIT(float3, MSG_VMIN, &minimumfeedrate, 0, 999);
  835. MENU_ITEM_EDIT(float3, MSG_VTRAV_MIN, &mintravelfeedrate, 0, 999);
  836. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_X, &max_acceleration_units_per_sq_second[X_AXIS], 100, 99000, reset_acceleration_rates);
  837. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Y, &max_acceleration_units_per_sq_second[Y_AXIS], 100, 99000, reset_acceleration_rates);
  838. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Z, &max_acceleration_units_per_sq_second[Z_AXIS], 10, 99000, reset_acceleration_rates);
  839. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E, &max_acceleration_units_per_sq_second[E_AXIS], 100, 99000, reset_acceleration_rates);
  840. MENU_ITEM_EDIT(float5, MSG_A_RETRACT, &retract_acceleration, 100, 99000);
  841. MENU_ITEM_EDIT(float5, MSG_A_TRAVEL, &travel_acceleration, 100, 99000);
  842. MENU_ITEM_EDIT(float52, MSG_XSTEPS, &axis_steps_per_unit[X_AXIS], 5, 9999);
  843. MENU_ITEM_EDIT(float52, MSG_YSTEPS, &axis_steps_per_unit[Y_AXIS], 5, 9999);
  844. MENU_ITEM_EDIT(float51, MSG_ZSTEPS, &axis_steps_per_unit[Z_AXIS], 5, 9999);
  845. MENU_ITEM_EDIT(float51, MSG_ESTEPS, &axis_steps_per_unit[E_AXIS], 5, 9999);
  846. #ifdef ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  847. MENU_ITEM_EDIT(bool, MSG_ENDSTOP_ABORT, &abort_on_endstop_hit);
  848. #endif
  849. #ifdef SCARA
  850. MENU_ITEM_EDIT(float74, MSG_XSCALE, &axis_scaling[X_AXIS],0.5,2);
  851. MENU_ITEM_EDIT(float74, MSG_YSCALE, &axis_scaling[Y_AXIS],0.5,2);
  852. #endif
  853. END_MENU();
  854. }
  855. static void lcd_control_volumetric_menu() {
  856. START_MENU();
  857. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  858. MENU_ITEM_EDIT_CALLBACK(bool, MSG_VOLUMETRIC_ENABLED, &volumetric_enabled, calculate_volumetric_multipliers);
  859. if (volumetric_enabled) {
  860. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_SIZE_EXTRUDER_0, &filament_size[0], 1.5, 3.25, calculate_volumetric_multipliers);
  861. #if EXTRUDERS > 1
  862. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_SIZE_EXTRUDER_1, &filament_size[1], 1.5, 3.25, calculate_volumetric_multipliers);
  863. #if EXTRUDERS > 2
  864. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_SIZE_EXTRUDER_2, &filament_size[2], 1.5, 3.25, calculate_volumetric_multipliers);
  865. #if EXTRUDERS > 3
  866. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_SIZE_EXTRUDER_3, &filament_size[3], 1.5, 3.25, calculate_volumetric_multipliers);
  867. #endif //EXTRUDERS > 3
  868. #endif //EXTRUDERS > 2
  869. #endif //EXTRUDERS > 1
  870. }
  871. END_MENU();
  872. }
  873. #ifdef DOGLCD
  874. static void lcd_set_contrast() {
  875. if (encoderPosition != 0) {
  876. lcd_contrast -= encoderPosition;
  877. if (lcd_contrast < 0) lcd_contrast = 0;
  878. else if (lcd_contrast > 63) lcd_contrast = 63;
  879. encoderPosition = 0;
  880. lcdDrawUpdate = 1;
  881. u8g.setContrast(lcd_contrast);
  882. }
  883. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(MSG_CONTRAST), itostr2(lcd_contrast));
  884. if (LCD_CLICKED) lcd_goto_menu(lcd_control_menu);
  885. }
  886. #endif //DOGLCD
  887. #ifdef FWRETRACT
  888. static void lcd_control_retract_menu() {
  889. START_MENU();
  890. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  891. MENU_ITEM_EDIT(bool, MSG_AUTORETRACT, &autoretract_enabled);
  892. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT, &retract_length, 0, 100);
  893. #if EXTRUDERS > 1
  894. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_SWAP, &retract_length_swap, 0, 100);
  895. #endif
  896. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACTF, &retract_feedrate, 1, 999);
  897. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_ZLIFT, &retract_zlift, 0, 999);
  898. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER, &retract_recover_length, 0, 100);
  899. #if EXTRUDERS > 1
  900. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER_SWAP, &retract_recover_length_swap, 0, 100);
  901. #endif
  902. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACT_RECOVERF, &retract_recover_feedrate, 1, 999);
  903. END_MENU();
  904. }
  905. #endif //FWRETRACT
  906. #if SDCARDDETECT == -1
  907. static void lcd_sd_refresh() {
  908. card.initsd();
  909. currentMenuViewOffset = 0;
  910. }
  911. #endif
  912. static void lcd_sd_updir() {
  913. card.updir();
  914. currentMenuViewOffset = 0;
  915. }
  916. void lcd_sdcard_menu() {
  917. if (lcdDrawUpdate == 0 && LCD_CLICKED == 0) return; // nothing to do (so don't thrash the SD card)
  918. uint16_t fileCnt = card.getnrfilenames();
  919. START_MENU();
  920. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  921. card.getWorkDirName();
  922. if (card.filename[0] == '/') {
  923. #if SDCARDDETECT == -1
  924. MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
  925. #endif
  926. }
  927. else {
  928. MENU_ITEM(function, LCD_STR_FOLDER "..", lcd_sd_updir);
  929. }
  930. for(uint16_t i = 0; i < fileCnt; i++) {
  931. if (_menuItemNr == _lineNr) {
  932. #ifndef SDCARD_RATHERRECENTFIRST
  933. card.getfilename(i);
  934. #else
  935. card.getfilename(fileCnt-1-i);
  936. #endif
  937. if (card.filenameIsDir)
  938. MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
  939. else
  940. MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
  941. }
  942. else {
  943. MENU_ITEM_DUMMY();
  944. }
  945. }
  946. END_MENU();
  947. }
  948. #define menu_edit_type(_type, _name, _strFunc, scale) \
  949. bool _menu_edit_ ## _name () { \
  950. bool isClicked = LCD_CLICKED; \
  951. if ((int32_t)encoderPosition < 0) encoderPosition = 0; \
  952. if ((int32_t)encoderPosition > maxEditValue) encoderPosition = maxEditValue; \
  953. if (lcdDrawUpdate) \
  954. lcd_implementation_drawedit(editLabel, _strFunc(((_type)((int32_t)encoderPosition + minEditValue)) / scale)); \
  955. if (isClicked) { \
  956. *((_type*)editValue) = ((_type)((int32_t)encoderPosition + minEditValue)) / scale; \
  957. lcd_goto_menu(prevMenu, prevEncoderPosition); \
  958. } \
  959. return isClicked; \
  960. } \
  961. void menu_edit_ ## _name () { _menu_edit_ ## _name(); } \
  962. void menu_edit_callback_ ## _name () { if (_menu_edit_ ## _name ()) (*callbackFunc)(); } \
  963. static void _menu_action_setting_edit_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue) { \
  964. prevMenu = currentMenu; \
  965. prevEncoderPosition = encoderPosition; \
  966. \
  967. lcdDrawUpdate = 2; \
  968. currentMenu = menu_edit_ ## _name; \
  969. \
  970. editLabel = pstr; \
  971. editValue = ptr; \
  972. minEditValue = minValue * scale; \
  973. maxEditValue = maxValue * scale - minEditValue; \
  974. encoderPosition = (*ptr) * scale - minEditValue; \
  975. } \
  976. static void menu_action_setting_edit_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue) { \
  977. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  978. currentMenu = menu_edit_ ## _name; \
  979. }\
  980. static void menu_action_setting_edit_callback_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue, menuFunc_t callback) { \
  981. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  982. currentMenu = menu_edit_callback_ ## _name; \
  983. callbackFunc = callback; \
  984. }
  985. menu_edit_type(int, int3, itostr3, 1)
  986. menu_edit_type(float, float3, ftostr3, 1)
  987. menu_edit_type(float, float32, ftostr32, 100)
  988. menu_edit_type(float, float43, ftostr43, 1000)
  989. menu_edit_type(float, float5, ftostr5, 0.01)
  990. menu_edit_type(float, float51, ftostr51, 10)
  991. menu_edit_type(float, float52, ftostr52, 100)
  992. menu_edit_type(unsigned long, long5, ftostr5, 0.01)
  993. #ifdef REPRAPWORLD_KEYPAD
  994. static void reprapworld_keypad_move_z_up() {
  995. encoderPosition = 1;
  996. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  997. lcd_move_z();
  998. }
  999. static void reprapworld_keypad_move_z_down() {
  1000. encoderPosition = -1;
  1001. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1002. lcd_move_z();
  1003. }
  1004. static void reprapworld_keypad_move_x_left() {
  1005. encoderPosition = -1;
  1006. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1007. lcd_move_x();
  1008. }
  1009. static void reprapworld_keypad_move_x_right() {
  1010. encoderPosition = 1;
  1011. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1012. lcd_move_x();
  1013. }
  1014. static void reprapworld_keypad_move_y_down() {
  1015. encoderPosition = 1;
  1016. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1017. lcd_move_y();
  1018. }
  1019. static void reprapworld_keypad_move_y_up() {
  1020. encoderPosition = -1;
  1021. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1022. lcd_move_y();
  1023. }
  1024. static void reprapworld_keypad_move_home() {
  1025. enquecommands_P((PSTR("G28"))); // move all axis home
  1026. }
  1027. #endif //REPRAPWORLD_KEYPAD
  1028. /** End of menus **/
  1029. static void lcd_quick_feedback() {
  1030. lcdDrawUpdate = 2;
  1031. blocking_enc = millis() + 500;
  1032. #ifdef LCD_USE_I2C_BUZZER
  1033. #ifndef LCD_FEEDBACK_FREQUENCY_HZ
  1034. #define LCD_FEEDBACK_FREQUENCY_HZ 100
  1035. #endif
  1036. #ifndef LCD_FEEDBACK_FREQUENCY_DURATION_MS
  1037. #define LCD_FEEDBACK_FREQUENCY_DURATION_MS (1000/6)
  1038. #endif
  1039. lcd_buzz(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
  1040. #elif defined(BEEPER) && BEEPER > -1
  1041. SET_OUTPUT(BEEPER);
  1042. #ifndef LCD_FEEDBACK_FREQUENCY_HZ
  1043. #define LCD_FEEDBACK_FREQUENCY_HZ 500
  1044. #endif
  1045. #ifndef LCD_FEEDBACK_FREQUENCY_DURATION_MS
  1046. #define LCD_FEEDBACK_FREQUENCY_DURATION_MS 50
  1047. #endif
  1048. const unsigned int delay = 1000000 / LCD_FEEDBACK_FREQUENCY_HZ / 2;
  1049. int i = LCD_FEEDBACK_FREQUENCY_DURATION_MS * LCD_FEEDBACK_FREQUENCY_HZ / 1000;
  1050. while (i--) {
  1051. WRITE(BEEPER,HIGH);
  1052. delayMicroseconds(delay);
  1053. WRITE(BEEPER,LOW);
  1054. delayMicroseconds(delay);
  1055. }
  1056. #endif
  1057. }
  1058. /** Menu action functions **/
  1059. static void menu_action_back(menuFunc_t data) { lcd_goto_menu(data); }
  1060. static void menu_action_submenu(menuFunc_t data) { lcd_goto_menu(data); }
  1061. static void menu_action_gcode(const char* pgcode) { enquecommands_P(pgcode); }
  1062. static void menu_action_function(menuFunc_t data) { (*data)(); }
  1063. static void menu_action_sdfile(const char* filename, char* longFilename) {
  1064. char cmd[30];
  1065. char* c;
  1066. sprintf_P(cmd, PSTR("M23 %s"), filename);
  1067. for(c = &cmd[4]; *c; c++) *c = tolower(*c);
  1068. enquecommand(cmd);
  1069. enquecommands_P(PSTR("M24"));
  1070. lcd_return_to_status();
  1071. }
  1072. static void menu_action_sddirectory(const char* filename, char* longFilename) {
  1073. card.chdir(filename);
  1074. encoderPosition = 0;
  1075. }
  1076. static void menu_action_setting_edit_bool(const char* pstr, bool* ptr) { *ptr = !(*ptr); }
  1077. static void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, menuFunc_t callback) {
  1078. menu_action_setting_edit_bool(pstr, ptr);
  1079. (*callback)();
  1080. }
  1081. #endif //ULTIPANEL
  1082. /** LCD API **/
  1083. void lcd_init() {
  1084. lcd_implementation_init();
  1085. #ifdef NEWPANEL
  1086. SET_INPUT(BTN_EN1);
  1087. SET_INPUT(BTN_EN2);
  1088. WRITE(BTN_EN1,HIGH);
  1089. WRITE(BTN_EN2,HIGH);
  1090. #if BTN_ENC > 0
  1091. SET_INPUT(BTN_ENC);
  1092. WRITE(BTN_ENC,HIGH);
  1093. #endif
  1094. #ifdef REPRAPWORLD_KEYPAD
  1095. pinMode(SHIFT_CLK,OUTPUT);
  1096. pinMode(SHIFT_LD,OUTPUT);
  1097. pinMode(SHIFT_OUT,INPUT);
  1098. WRITE(SHIFT_OUT,HIGH);
  1099. WRITE(SHIFT_LD,HIGH);
  1100. #endif
  1101. #else // Not NEWPANEL
  1102. #ifdef SR_LCD_2W_NL // Non latching 2 wire shift register
  1103. pinMode (SR_DATA_PIN, OUTPUT);
  1104. pinMode (SR_CLK_PIN, OUTPUT);
  1105. #elif defined(SHIFT_CLK)
  1106. pinMode(SHIFT_CLK,OUTPUT);
  1107. pinMode(SHIFT_LD,OUTPUT);
  1108. pinMode(SHIFT_EN,OUTPUT);
  1109. pinMode(SHIFT_OUT,INPUT);
  1110. WRITE(SHIFT_OUT,HIGH);
  1111. WRITE(SHIFT_LD,HIGH);
  1112. WRITE(SHIFT_EN,LOW);
  1113. #endif // SR_LCD_2W_NL
  1114. #endif//!NEWPANEL
  1115. #if defined(SDSUPPORT) && defined(SDCARDDETECT) && (SDCARDDETECT > 0)
  1116. pinMode(SDCARDDETECT, INPUT);
  1117. WRITE(SDCARDDETECT, HIGH);
  1118. lcd_oldcardstatus = IS_SD_INSERTED;
  1119. #endif //(SDCARDDETECT > 0)
  1120. #ifdef LCD_HAS_SLOW_BUTTONS
  1121. slow_buttons = 0;
  1122. #endif
  1123. lcd_buttons_update();
  1124. #ifdef ULTIPANEL
  1125. encoderDiff = 0;
  1126. #endif
  1127. }
  1128. int lcd_strlen(char *s) {
  1129. int i = 0, j = 0;
  1130. while (s[i]) {
  1131. if ((s[i] & 0xc0) != 0x80) j++;
  1132. i++;
  1133. }
  1134. return j;
  1135. }
  1136. int lcd_strlen_P(const char *s) {
  1137. int j = 0;
  1138. while (pgm_read_byte(s)) {
  1139. if ((pgm_read_byte(s) & 0xc0) != 0x80) j++;
  1140. s++;
  1141. }
  1142. return j;
  1143. }
  1144. void lcd_update() {
  1145. static unsigned long timeoutToStatus = 0;
  1146. #ifdef LCD_HAS_SLOW_BUTTONS
  1147. slow_buttons = lcd_implementation_read_slow_buttons(); // buttons which take too long to read in interrupt context
  1148. #endif
  1149. lcd_buttons_update();
  1150. #if (SDCARDDETECT > 0)
  1151. if (IS_SD_INSERTED != lcd_oldcardstatus && lcd_detected()) {
  1152. lcdDrawUpdate = 2;
  1153. lcd_oldcardstatus = IS_SD_INSERTED;
  1154. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  1155. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT) && !defined(DOGLCD)
  1156. currentMenu == lcd_status_screen
  1157. #endif
  1158. );
  1159. if (lcd_oldcardstatus) {
  1160. card.initsd();
  1161. LCD_MESSAGEPGM(MSG_SD_INSERTED);
  1162. }
  1163. else {
  1164. card.release();
  1165. LCD_MESSAGEPGM(MSG_SD_REMOVED);
  1166. }
  1167. }
  1168. #endif//CARDINSERTED
  1169. uint32_t ms = millis();
  1170. if (ms > lcd_next_update_millis) {
  1171. #ifdef ULTIPANEL
  1172. #ifdef REPRAPWORLD_KEYPAD
  1173. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) reprapworld_keypad_move_z_up();
  1174. if (REPRAPWORLD_KEYPAD_MOVE_Z_DOWN) reprapworld_keypad_move_z_down();
  1175. if (REPRAPWORLD_KEYPAD_MOVE_X_LEFT) reprapworld_keypad_move_x_left();
  1176. if (REPRAPWORLD_KEYPAD_MOVE_X_RIGHT) reprapworld_keypad_move_x_right();
  1177. if (REPRAPWORLD_KEYPAD_MOVE_Y_DOWN) reprapworld_keypad_move_y_down();
  1178. if (REPRAPWORLD_KEYPAD_MOVE_Y_UP) reprapworld_keypad_move_y_up();
  1179. if (REPRAPWORLD_KEYPAD_MOVE_HOME) reprapworld_keypad_move_home();
  1180. #endif
  1181. bool encoderPastThreshold = (abs(encoderDiff) >= ENCODER_PULSES_PER_STEP);
  1182. if (encoderPastThreshold || LCD_CLICKED) {
  1183. if (encoderPastThreshold) {
  1184. int32_t encoderMultiplier = 1;
  1185. #ifdef ENCODER_RATE_MULTIPLIER
  1186. if (encoderRateMultiplierEnabled) {
  1187. int32_t encoderMovementSteps = abs(encoderDiff) / ENCODER_PULSES_PER_STEP;
  1188. if (lastEncoderMovementMillis != 0) {
  1189. // Note that the rate is always calculated between to passes through the
  1190. // loop and that the abs of the encoderDiff value is tracked.
  1191. float encoderStepRate = (float)(encoderMovementSteps) / ((float)(ms - lastEncoderMovementMillis)) * 1000.0;
  1192. if (encoderStepRate >= ENCODER_100X_STEPS_PER_SEC) encoderMultiplier = 100;
  1193. else if (encoderStepRate >= ENCODER_10X_STEPS_PER_SEC) encoderMultiplier = 10;
  1194. #ifdef ENCODER_RATE_MULTIPLIER_DEBUG
  1195. SERIAL_ECHO_START;
  1196. SERIAL_ECHO("Enc Step Rate: ");
  1197. SERIAL_ECHO(encoderStepRate);
  1198. SERIAL_ECHO(" Multiplier: ");
  1199. SERIAL_ECHO(encoderMultiplier);
  1200. SERIAL_ECHO(" ENCODER_10X_STEPS_PER_SEC: ");
  1201. SERIAL_ECHO(ENCODER_10X_STEPS_PER_SEC);
  1202. SERIAL_ECHO(" ENCODER_100X_STEPS_PER_SEC: ");
  1203. SERIAL_ECHOLN(ENCODER_100X_STEPS_PER_SEC);
  1204. #endif //ENCODER_RATE_MULTIPLIER_DEBUG
  1205. }
  1206. lastEncoderMovementMillis = ms;
  1207. }
  1208. #endif //ENCODER_RATE_MULTIPLIER
  1209. lcdDrawUpdate = 1;
  1210. encoderPosition += (encoderDiff * encoderMultiplier) / ENCODER_PULSES_PER_STEP;
  1211. encoderDiff = 0;
  1212. }
  1213. timeoutToStatus = ms + LCD_TIMEOUT_TO_STATUS;
  1214. }
  1215. #endif //ULTIPANEL
  1216. #ifdef DOGLCD // Changes due to different driver architecture of the DOGM display
  1217. blink++; // Variable for fan animation and alive dot
  1218. u8g.firstPage();
  1219. do {
  1220. lcd_setFont(FONT_MENU);
  1221. u8g.setPrintPos(125, 0);
  1222. if (blink % 2) u8g.setColorIndex(1); else u8g.setColorIndex(0); // Set color for the alive dot
  1223. u8g.drawPixel(127, 63); // draw alive dot
  1224. u8g.setColorIndex(1); // black on white
  1225. (*currentMenu)();
  1226. if (!lcdDrawUpdate) break; // Terminate display update, when nothing new to draw. This must be done before the last dogm.next()
  1227. } while( u8g.nextPage() );
  1228. #else
  1229. (*currentMenu)();
  1230. #endif
  1231. #ifdef LCD_HAS_STATUS_INDICATORS
  1232. lcd_implementation_update_indicators();
  1233. #endif
  1234. #ifdef ULTIPANEL
  1235. if (currentMenu != lcd_status_screen &&
  1236. #if defined(MANUAL_BED_LEVELING)
  1237. currentMenu != _lcd_level_bed &&
  1238. currentMenu != _lcd_level_bed_homing &&
  1239. #endif // MANUAL_BED_LEVELING
  1240. millis() > timeoutToStatus) {
  1241. lcd_return_to_status();
  1242. lcdDrawUpdate = 2;
  1243. }
  1244. #endif //ULTIPANEL
  1245. if (lcdDrawUpdate == 2) lcd_implementation_clear();
  1246. if (lcdDrawUpdate) lcdDrawUpdate--;
  1247. lcd_next_update_millis = millis() + LCD_UPDATE_INTERVAL;
  1248. }
  1249. }
  1250. void lcd_ignore_click(bool b) {
  1251. ignore_click = b;
  1252. wait_for_unclick = false;
  1253. }
  1254. void lcd_finishstatus() {
  1255. int len = lcd_strlen(lcd_status_message);
  1256. if (len > 0) {
  1257. while (len < LCD_WIDTH) {
  1258. lcd_status_message[len++] = ' ';
  1259. }
  1260. }
  1261. lcd_status_message[LCD_WIDTH] = '\0';
  1262. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT) && !defined(DOGLCD)
  1263. #if PROGRESS_MSG_EXPIRE > 0
  1264. messageTick =
  1265. #endif
  1266. progressBarTick = millis();
  1267. #endif
  1268. lcdDrawUpdate = 2;
  1269. #ifdef FILAMENT_LCD_DISPLAY
  1270. message_millis = millis(); //get status message to show up for a while
  1271. #endif
  1272. }
  1273. void lcd_setstatus(const char* message) {
  1274. if (lcd_status_message_level > 0) return;
  1275. strncpy(lcd_status_message, message, LCD_WIDTH);
  1276. lcd_finishstatus();
  1277. }
  1278. void lcd_setstatuspgm(const char* message) {
  1279. if (lcd_status_message_level > 0) return;
  1280. strncpy_P(lcd_status_message, message, LCD_WIDTH);
  1281. lcd_finishstatus();
  1282. }
  1283. void lcd_setalertstatuspgm(const char* message) {
  1284. lcd_setstatuspgm(message);
  1285. lcd_status_message_level = 1;
  1286. #ifdef ULTIPANEL
  1287. lcd_return_to_status();
  1288. #endif
  1289. }
  1290. void lcd_reset_alert_level() { lcd_status_message_level = 0; }
  1291. #ifdef DOGLCD
  1292. void lcd_setcontrast(uint8_t value) {
  1293. lcd_contrast = value & 63;
  1294. u8g.setContrast(lcd_contrast);
  1295. }
  1296. #endif
  1297. #ifdef ULTIPANEL
  1298. ////////////////////////
  1299. // Setup Rotary Encoder Bit Values (for two pin encoders to indicate movement)
  1300. // These values are independent of which pins are used for EN_A and EN_B indications
  1301. // The rotary encoder part is also independent to the chipset used for the LCD
  1302. #if defined(EN_A) && defined(EN_B)
  1303. #define encrot0 0
  1304. #define encrot1 2
  1305. #define encrot2 3
  1306. #define encrot3 1
  1307. #endif
  1308. /* Warning: This function is called from interrupt context */
  1309. void lcd_buttons_update() {
  1310. #ifdef NEWPANEL
  1311. uint8_t newbutton = 0;
  1312. if (READ(BTN_EN1) == 0) newbutton |= EN_A;
  1313. if (READ(BTN_EN2) == 0) newbutton |= EN_B;
  1314. #if BTN_ENC > 0
  1315. if (millis() > blocking_enc && READ(BTN_ENC) == 0) newbutton |= EN_C;
  1316. #endif
  1317. buttons = newbutton;
  1318. #ifdef LCD_HAS_SLOW_BUTTONS
  1319. buttons |= slow_buttons;
  1320. #endif
  1321. #ifdef REPRAPWORLD_KEYPAD
  1322. // for the reprapworld_keypad
  1323. uint8_t newbutton_reprapworld_keypad=0;
  1324. WRITE(SHIFT_LD, LOW);
  1325. WRITE(SHIFT_LD, HIGH);
  1326. for(int8_t i = 0; i < 8; i++) {
  1327. newbutton_reprapworld_keypad >>= 1;
  1328. if (READ(SHIFT_OUT)) newbutton_reprapworld_keypad |= BIT(7);
  1329. WRITE(SHIFT_CLK, HIGH);
  1330. WRITE(SHIFT_CLK, LOW);
  1331. }
  1332. buttons_reprapworld_keypad=~newbutton_reprapworld_keypad; //invert it, because a pressed switch produces a logical 0
  1333. #endif
  1334. #else //read it from the shift register
  1335. uint8_t newbutton = 0;
  1336. WRITE(SHIFT_LD, LOW);
  1337. WRITE(SHIFT_LD, HIGH);
  1338. unsigned char tmp_buttons = 0;
  1339. for(int8_t i=0; i<8; i++) {
  1340. newbutton >>= 1;
  1341. if (READ(SHIFT_OUT)) newbutton |= BIT(7);
  1342. WRITE(SHIFT_CLK, HIGH);
  1343. WRITE(SHIFT_CLK, LOW);
  1344. }
  1345. buttons = ~newbutton; //invert it, because a pressed switch produces a logical 0
  1346. #endif //!NEWPANEL
  1347. //manage encoder rotation
  1348. uint8_t enc=0;
  1349. if (buttons & EN_A) enc |= B01;
  1350. if (buttons & EN_B) enc |= B10;
  1351. if (enc != lastEncoderBits) {
  1352. switch(enc) {
  1353. case encrot0:
  1354. if (lastEncoderBits==encrot3) encoderDiff++;
  1355. else if (lastEncoderBits==encrot1) encoderDiff--;
  1356. break;
  1357. case encrot1:
  1358. if (lastEncoderBits==encrot0) encoderDiff++;
  1359. else if (lastEncoderBits==encrot2) encoderDiff--;
  1360. break;
  1361. case encrot2:
  1362. if (lastEncoderBits==encrot1) encoderDiff++;
  1363. else if (lastEncoderBits==encrot3) encoderDiff--;
  1364. break;
  1365. case encrot3:
  1366. if (lastEncoderBits==encrot2) encoderDiff++;
  1367. else if (lastEncoderBits==encrot0) encoderDiff--;
  1368. break;
  1369. }
  1370. }
  1371. lastEncoderBits = enc;
  1372. }
  1373. bool lcd_detected(void) {
  1374. #if (defined(LCD_I2C_TYPE_MCP23017) || defined(LCD_I2C_TYPE_MCP23008)) && defined(DETECT_DEVICE)
  1375. return lcd.LcdDetected() == 1;
  1376. #else
  1377. return true;
  1378. #endif
  1379. }
  1380. void lcd_buzz(long duration, uint16_t freq) {
  1381. #ifdef LCD_USE_I2C_BUZZER
  1382. lcd.buzz(duration,freq);
  1383. #endif
  1384. }
  1385. bool lcd_clicked() { return LCD_CLICKED; }
  1386. #endif //ULTIPANEL
  1387. /********************************/
  1388. /** Float conversion utilities **/
  1389. /********************************/
  1390. // convert float to string with +123.4 format
  1391. char conv[8];
  1392. char *ftostr3(const float &x)
  1393. {
  1394. return itostr3((int)x);
  1395. }
  1396. char *itostr2(const uint8_t &x)
  1397. {
  1398. //sprintf(conv,"%5.1f",x);
  1399. int xx=x;
  1400. conv[0]=(xx/10)%10+'0';
  1401. conv[1]=(xx)%10+'0';
  1402. conv[2]=0;
  1403. return conv;
  1404. }
  1405. // Convert float to string with 123.4 format, dropping sign
  1406. char *ftostr31(const float &x)
  1407. {
  1408. int xx=x*10;
  1409. conv[0]=(xx>=0)?'+':'-';
  1410. xx=abs(xx);
  1411. conv[1]=(xx/1000)%10+'0';
  1412. conv[2]=(xx/100)%10+'0';
  1413. conv[3]=(xx/10)%10+'0';
  1414. conv[4]='.';
  1415. conv[5]=(xx)%10+'0';
  1416. conv[6]=0;
  1417. return conv;
  1418. }
  1419. // Convert float to string with 123.4 format
  1420. char *ftostr31ns(const float &x)
  1421. {
  1422. int xx=x*10;
  1423. //conv[0]=(xx>=0)?'+':'-';
  1424. xx=abs(xx);
  1425. conv[0]=(xx/1000)%10+'0';
  1426. conv[1]=(xx/100)%10+'0';
  1427. conv[2]=(xx/10)%10+'0';
  1428. conv[3]='.';
  1429. conv[4]=(xx)%10+'0';
  1430. conv[5]=0;
  1431. return conv;
  1432. }
  1433. char *ftostr32(const float &x)
  1434. {
  1435. long xx=x*100;
  1436. if (xx >= 0)
  1437. conv[0]=(xx/10000)%10+'0';
  1438. else
  1439. conv[0]='-';
  1440. xx=abs(xx);
  1441. conv[1]=(xx/1000)%10+'0';
  1442. conv[2]=(xx/100)%10+'0';
  1443. conv[3]='.';
  1444. conv[4]=(xx/10)%10+'0';
  1445. conv[5]=(xx)%10+'0';
  1446. conv[6]=0;
  1447. return conv;
  1448. }
  1449. // Convert float to string with 1.234 format
  1450. char *ftostr43(const float &x)
  1451. {
  1452. long xx = x * 1000;
  1453. if (xx >= 0)
  1454. conv[0] = (xx / 1000) % 10 + '0';
  1455. else
  1456. conv[0] = '-';
  1457. xx = abs(xx);
  1458. conv[1] = '.';
  1459. conv[2] = (xx / 100) % 10 + '0';
  1460. conv[3] = (xx / 10) % 10 + '0';
  1461. conv[4] = (xx) % 10 + '0';
  1462. conv[5] = 0;
  1463. return conv;
  1464. }
  1465. //Float to string with 1.23 format
  1466. char *ftostr12ns(const float &x)
  1467. {
  1468. long xx=x*100;
  1469. xx=abs(xx);
  1470. conv[0]=(xx/100)%10+'0';
  1471. conv[1]='.';
  1472. conv[2]=(xx/10)%10+'0';
  1473. conv[3]=(xx)%10+'0';
  1474. conv[4]=0;
  1475. return conv;
  1476. }
  1477. // convert float to space-padded string with -_23.4_ format
  1478. char *ftostr32sp(const float &x) {
  1479. long xx = abs(x * 100);
  1480. uint8_t dig;
  1481. if (x < 0) { // negative val = -_0
  1482. conv[0] = '-';
  1483. dig = (xx / 1000) % 10;
  1484. conv[1] = dig ? '0' + dig : ' ';
  1485. }
  1486. else { // positive val = __0
  1487. dig = (xx / 10000) % 10;
  1488. if (dig) {
  1489. conv[0] = '0' + dig;
  1490. conv[1] = '0' + (xx / 1000) % 10;
  1491. }
  1492. else {
  1493. conv[0] = ' ';
  1494. dig = (xx / 1000) % 10;
  1495. conv[1] = dig ? '0' + dig : ' ';
  1496. }
  1497. }
  1498. conv[2] = '0' + (xx / 100) % 10; // lsd always
  1499. dig = xx % 10;
  1500. if (dig) { // 2 decimal places
  1501. conv[5] = '0' + dig;
  1502. conv[4] = '0' + (xx / 10) % 10;
  1503. conv[3] = '.';
  1504. }
  1505. else { // 1 or 0 decimal place
  1506. dig = (xx / 10) % 10;
  1507. if (dig) {
  1508. conv[4] = '0' + dig;
  1509. conv[3] = '.';
  1510. }
  1511. else {
  1512. conv[3] = conv[4] = ' ';
  1513. }
  1514. conv[5] = ' ';
  1515. }
  1516. conv[6] = '\0';
  1517. return conv;
  1518. }
  1519. char *itostr31(const int &xx)
  1520. {
  1521. conv[0]=(xx>=0)?'+':'-';
  1522. conv[1]=(xx/1000)%10+'0';
  1523. conv[2]=(xx/100)%10+'0';
  1524. conv[3]=(xx/10)%10+'0';
  1525. conv[4]='.';
  1526. conv[5]=(xx)%10+'0';
  1527. conv[6]=0;
  1528. return conv;
  1529. }
  1530. // Convert int to rj string with 123 or -12 format
  1531. char *itostr3(const int &x)
  1532. {
  1533. int xx = x;
  1534. if (xx < 0) {
  1535. conv[0]='-';
  1536. xx = -xx;
  1537. } else if (xx >= 100)
  1538. conv[0]=(xx/100)%10+'0';
  1539. else
  1540. conv[0]=' ';
  1541. if (xx >= 10)
  1542. conv[1]=(xx/10)%10+'0';
  1543. else
  1544. conv[1]=' ';
  1545. conv[2]=(xx)%10+'0';
  1546. conv[3]=0;
  1547. return conv;
  1548. }
  1549. // Convert int to lj string with 123 format
  1550. char *itostr3left(const int &xx)
  1551. {
  1552. if (xx >= 100)
  1553. {
  1554. conv[0]=(xx/100)%10+'0';
  1555. conv[1]=(xx/10)%10+'0';
  1556. conv[2]=(xx)%10+'0';
  1557. conv[3]=0;
  1558. }
  1559. else if (xx >= 10)
  1560. {
  1561. conv[0]=(xx/10)%10+'0';
  1562. conv[1]=(xx)%10+'0';
  1563. conv[2]=0;
  1564. }
  1565. else
  1566. {
  1567. conv[0]=(xx)%10+'0';
  1568. conv[1]=0;
  1569. }
  1570. return conv;
  1571. }
  1572. // Convert int to rj string with 1234 format
  1573. char *itostr4(const int &xx) {
  1574. conv[0] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  1575. conv[1] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  1576. conv[2] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  1577. conv[3] = xx % 10 + '0';
  1578. conv[4] = 0;
  1579. return conv;
  1580. }
  1581. // Convert float to rj string with 12345 format
  1582. char *ftostr5(const float &x) {
  1583. long xx = abs(x);
  1584. conv[0] = xx >= 10000 ? (xx / 10000) % 10 + '0' : ' ';
  1585. conv[1] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  1586. conv[2] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  1587. conv[3] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  1588. conv[4] = xx % 10 + '0';
  1589. conv[5] = 0;
  1590. return conv;
  1591. }
  1592. // Convert float to string with +1234.5 format
  1593. char *ftostr51(const float &x)
  1594. {
  1595. long xx=x*10;
  1596. conv[0]=(xx>=0)?'+':'-';
  1597. xx=abs(xx);
  1598. conv[1]=(xx/10000)%10+'0';
  1599. conv[2]=(xx/1000)%10+'0';
  1600. conv[3]=(xx/100)%10+'0';
  1601. conv[4]=(xx/10)%10+'0';
  1602. conv[5]='.';
  1603. conv[6]=(xx)%10+'0';
  1604. conv[7]=0;
  1605. return conv;
  1606. }
  1607. // Convert float to string with +123.45 format
  1608. char *ftostr52(const float &x)
  1609. {
  1610. long xx=x*100;
  1611. conv[0]=(xx>=0)?'+':'-';
  1612. xx=abs(xx);
  1613. conv[1]=(xx/10000)%10+'0';
  1614. conv[2]=(xx/1000)%10+'0';
  1615. conv[3]=(xx/100)%10+'0';
  1616. conv[4]='.';
  1617. conv[5]=(xx/10)%10+'0';
  1618. conv[6]=(xx)%10+'0';
  1619. conv[7]=0;
  1620. return conv;
  1621. }
  1622. #if defined(MANUAL_BED_LEVELING)
  1623. static int _lcd_level_bed_position;
  1624. static void _lcd_level_bed()
  1625. {
  1626. if (encoderPosition != 0) {
  1627. refresh_cmd_timeout();
  1628. current_position[Z_AXIS] += float((int)encoderPosition) * 0.05;
  1629. if (min_software_endstops && current_position[Z_AXIS] < Z_MIN_POS) current_position[Z_AXIS] = Z_MIN_POS;
  1630. if (max_software_endstops && current_position[Z_AXIS] > Z_MAX_POS) current_position[Z_AXIS] = Z_MAX_POS;
  1631. encoderPosition = 0;
  1632. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[Z_AXIS]/60, active_extruder);
  1633. lcdDrawUpdate = 1;
  1634. }
  1635. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR("Z"), ftostr32(current_position[Z_AXIS]));
  1636. static bool debounce_click = false;
  1637. if (LCD_CLICKED) {
  1638. if (!debounce_click) {
  1639. debounce_click = true;
  1640. int ix = _lcd_level_bed_position % MESH_NUM_X_POINTS;
  1641. int iy = _lcd_level_bed_position / MESH_NUM_X_POINTS;
  1642. mbl.set_z(ix, iy, current_position[Z_AXIS]);
  1643. _lcd_level_bed_position++;
  1644. if (_lcd_level_bed_position == MESH_NUM_X_POINTS*MESH_NUM_Y_POINTS) {
  1645. current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
  1646. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[X_AXIS]/60, active_extruder);
  1647. mbl.active = 1;
  1648. enquecommands_P(PSTR("G28"));
  1649. lcd_return_to_status();
  1650. } else {
  1651. current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
  1652. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[X_AXIS]/60, active_extruder);
  1653. ix = _lcd_level_bed_position % MESH_NUM_X_POINTS;
  1654. iy = _lcd_level_bed_position / MESH_NUM_X_POINTS;
  1655. if (iy&1) { // Zig zag
  1656. ix = (MESH_NUM_X_POINTS - 1) - ix;
  1657. }
  1658. current_position[X_AXIS] = mbl.get_x(ix);
  1659. current_position[Y_AXIS] = mbl.get_y(iy);
  1660. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[X_AXIS]/60, active_extruder);
  1661. lcdDrawUpdate = 1;
  1662. }
  1663. }
  1664. } else {
  1665. debounce_click = false;
  1666. }
  1667. }
  1668. static void _lcd_level_bed_homing()
  1669. {
  1670. if (axis_known_position[X_AXIS] &&
  1671. axis_known_position[Y_AXIS] &&
  1672. axis_known_position[Z_AXIS]) {
  1673. current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
  1674. plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
  1675. current_position[X_AXIS] = MESH_MIN_X;
  1676. current_position[Y_AXIS] = MESH_MIN_Y;
  1677. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[X_AXIS]/60, active_extruder);
  1678. _lcd_level_bed_position = 0;
  1679. lcd_goto_menu(_lcd_level_bed);
  1680. }
  1681. }
  1682. static void lcd_level_bed()
  1683. {
  1684. axis_known_position[X_AXIS] = false;
  1685. axis_known_position[Y_AXIS] = false;
  1686. axis_known_position[Z_AXIS] = false;
  1687. mbl.reset();
  1688. enquecommands_P(PSTR("G28"));
  1689. lcd_goto_menu(_lcd_level_bed_homing);
  1690. }
  1691. #endif // MANUAL_BED_LEVELING
  1692. #endif //ULTRA_LCD