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 144KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #include "ultralcd.h"
  23. #if ENABLED(ULTRA_LCD)
  24. #include "Marlin.h"
  25. #include "language.h"
  26. #include "cardreader.h"
  27. #include "temperature.h"
  28. #include "stepper.h"
  29. #include "configuration_store.h"
  30. #include "utility.h"
  31. #if HAS_BUZZER && DISABLED(LCD_USE_I2C_BUZZER)
  32. #include "buzzer.h"
  33. #endif
  34. #if ENABLED(PRINTCOUNTER)
  35. #include "printcounter.h"
  36. #include "duration_t.h"
  37. #endif
  38. #if ENABLED(BLTOUCH)
  39. #include "endstops.h"
  40. #endif
  41. int lcd_preheat_hotend_temp[2], lcd_preheat_bed_temp[2], lcd_preheat_fan_speed[2];
  42. #if ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
  43. millis_t previous_lcd_status_ms = 0;
  44. #endif
  45. #if ENABLED(BABYSTEPPING)
  46. long babysteps_done = 0;
  47. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  48. static void lcd_babystep_zoffset();
  49. #else
  50. static void lcd_babystep_z();
  51. #endif
  52. #endif
  53. uint8_t lcd_status_message_level;
  54. char lcd_status_message[3 * (LCD_WIDTH) + 1] = WELCOME_MSG; // worst case is kana with up to 3*LCD_WIDTH+1
  55. #if ENABLED(STATUS_MESSAGE_SCROLLING)
  56. uint8_t status_scroll_pos = 0;
  57. #endif
  58. #if ENABLED(DOGLCD)
  59. #include "ultralcd_impl_DOGM.h"
  60. #include <U8glib.h>
  61. #else
  62. #include "ultralcd_impl_HD44780.h"
  63. #endif
  64. // The main status screen
  65. void lcd_status_screen();
  66. millis_t next_lcd_update_ms;
  67. uint8_t lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; // Set when the LCD needs to draw, decrements after every draw. Set to 2 in LCD routines so the LCD gets at least 1 full redraw (first redraw is partial)
  68. uint16_t max_display_update_time = 0;
  69. #if ENABLED(DOGLCD)
  70. bool drawing_screen = false;
  71. #endif
  72. #if ENABLED(DAC_STEPPER_CURRENT)
  73. #include "stepper_dac.h" //was dac_mcp4728.h MarlinMain uses stepper dac for the m-codes
  74. int16_t driverPercent[XYZE];
  75. #endif
  76. #if ENABLED(ULTIPANEL)
  77. #ifndef TALL_FONT_CORRECTION
  78. #define TALL_FONT_CORRECTION 0
  79. #endif
  80. // Function pointer to menu functions.
  81. typedef void (*screenFunc_t)();
  82. #if HAS_POWER_SWITCH
  83. extern bool powersupply_on;
  84. #endif
  85. #if ENABLED(AUTO_BED_LEVELING_UBL)
  86. #include "ubl.h"
  87. #endif
  88. ////////////////////////////////////////////
  89. ///////////////// Menu Tree ////////////////
  90. ////////////////////////////////////////////
  91. void lcd_main_menu();
  92. void lcd_tune_menu();
  93. void lcd_prepare_menu();
  94. void lcd_move_menu();
  95. void lcd_control_menu();
  96. void lcd_control_temperature_menu();
  97. void lcd_control_temperature_preheat_material1_settings_menu();
  98. void lcd_control_temperature_preheat_material2_settings_menu();
  99. void lcd_control_motion_menu();
  100. void lcd_control_filament_menu();
  101. #if ENABLED(LCD_INFO_MENU)
  102. #if ENABLED(PRINTCOUNTER)
  103. void lcd_info_stats_menu();
  104. #endif
  105. void lcd_info_thermistors_menu();
  106. void lcd_info_board_menu();
  107. void lcd_info_menu();
  108. #endif // LCD_INFO_MENU
  109. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  110. void lcd_advanced_pause_toocold_menu();
  111. void lcd_advanced_pause_option_menu();
  112. void lcd_advanced_pause_init_message();
  113. void lcd_advanced_pause_unload_message();
  114. void lcd_advanced_pause_insert_message();
  115. void lcd_advanced_pause_load_message();
  116. void lcd_advanced_pause_heat_nozzle();
  117. void lcd_advanced_pause_extrude_message();
  118. void lcd_advanced_pause_resume_message();
  119. #endif
  120. #if ENABLED(DAC_STEPPER_CURRENT)
  121. void dac_driver_commit();
  122. void dac_driver_getValues();
  123. void lcd_dac_menu();
  124. void lcd_dac_write_eeprom();
  125. #endif
  126. #if ENABLED(FWRETRACT)
  127. void lcd_control_retract_menu();
  128. #endif
  129. #if ENABLED(DELTA_CALIBRATION_MENU)
  130. void lcd_delta_calibrate_menu();
  131. #endif
  132. #if ENABLED(MESH_BED_LEVELING) && ENABLED(LCD_BED_LEVELING)
  133. #include "mesh_bed_leveling.h"
  134. extern void mesh_probing_done();
  135. #endif
  136. ////////////////////////////////////////////
  137. //////////// Menu System Actions ///////////
  138. ////////////////////////////////////////////
  139. #define menu_action_back(dummy) _menu_action_back()
  140. void _menu_action_back();
  141. void menu_action_submenu(screenFunc_t data);
  142. void menu_action_gcode(const char* pgcode);
  143. void menu_action_function(screenFunc_t data);
  144. #define DECLARE_MENU_EDIT_TYPE(_type, _name) \
  145. bool _menu_edit_ ## _name(); \
  146. void menu_edit_ ## _name(); \
  147. void menu_edit_callback_ ## _name(); \
  148. void _menu_action_setting_edit_ ## _name(const char * const pstr, _type* const ptr, const _type minValue, const _type maxValue); \
  149. void menu_action_setting_edit_ ## _name(const char * const pstr, _type * const ptr, const _type minValue, const _type maxValue); \
  150. void menu_action_setting_edit_callback_ ## _name(const char * const pstr, _type * const ptr, const _type minValue, const _type maxValue, const screenFunc_t callback, const bool live=false); \
  151. typedef void _name##_void
  152. DECLARE_MENU_EDIT_TYPE(int, int3);
  153. DECLARE_MENU_EDIT_TYPE(float, float3);
  154. DECLARE_MENU_EDIT_TYPE(float, float32);
  155. DECLARE_MENU_EDIT_TYPE(float, float43);
  156. DECLARE_MENU_EDIT_TYPE(float, float5);
  157. DECLARE_MENU_EDIT_TYPE(float, float51);
  158. DECLARE_MENU_EDIT_TYPE(float, float52);
  159. DECLARE_MENU_EDIT_TYPE(float, float62);
  160. DECLARE_MENU_EDIT_TYPE(unsigned long, long5);
  161. void menu_action_setting_edit_bool(const char* pstr, bool* ptr);
  162. void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, screenFunc_t callbackFunc);
  163. #if ENABLED(SDSUPPORT)
  164. void lcd_sdcard_menu();
  165. void menu_action_sdfile(const char* filename, char* longFilename);
  166. void menu_action_sddirectory(const char* filename, char* longFilename);
  167. #endif
  168. ////////////////////////////////////////////
  169. //////////// Menu System Macros ////////////
  170. ////////////////////////////////////////////
  171. #ifndef ENCODER_FEEDRATE_DEADZONE
  172. #define ENCODER_FEEDRATE_DEADZONE 10
  173. #endif
  174. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  175. #define ENCODER_STEPS_PER_MENU_ITEM 5
  176. #endif
  177. #ifndef ENCODER_PULSES_PER_STEP
  178. #define ENCODER_PULSES_PER_STEP 1
  179. #endif
  180. /**
  181. * MENU_ITEM generates draw & handler code for a menu item, potentially calling:
  182. *
  183. * lcd_implementation_drawmenu_[type](sel, row, label, arg3...)
  184. * menu_action_[type](arg3...)
  185. *
  186. * Examples:
  187. * MENU_ITEM(back, MSG_WATCH, 0 [dummy parameter] )
  188. * or
  189. * MENU_BACK(MSG_WATCH)
  190. * lcd_implementation_drawmenu_back(sel, row, PSTR(MSG_WATCH))
  191. * menu_action_back()
  192. *
  193. * MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause)
  194. * lcd_implementation_drawmenu_function(sel, row, PSTR(MSG_PAUSE_PRINT), lcd_sdcard_pause)
  195. * menu_action_function(lcd_sdcard_pause)
  196. *
  197. * MENU_ITEM_EDIT(int3, MSG_SPEED, &feedrate_percentage, 10, 999)
  198. * MENU_ITEM(setting_edit_int3, MSG_SPEED, PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  199. * lcd_implementation_drawmenu_setting_edit_int3(sel, row, PSTR(MSG_SPEED), PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  200. * menu_action_setting_edit_int3(PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  201. *
  202. */
  203. #define _MENU_ITEM_PART_1(TYPE, LABEL, ...) \
  204. if (_menuLineNr == _thisItemNr) { \
  205. if (lcdDrawUpdate) \
  206. lcd_implementation_drawmenu_ ## TYPE(encoderLine == _thisItemNr, _lcdLineNr, PSTR(LABEL), ## __VA_ARGS__); \
  207. if (lcd_clicked && encoderLine == _thisItemNr) {
  208. #define _MENU_ITEM_PART_2(TYPE, ...) \
  209. menu_action_ ## TYPE(__VA_ARGS__); \
  210. if (screen_changed) return; \
  211. } \
  212. } \
  213. ++_thisItemNr
  214. #define MENU_ITEM(TYPE, LABEL, ...) do { \
  215. _skipStatic = false; \
  216. _MENU_ITEM_PART_1(TYPE, LABEL, ## __VA_ARGS__); \
  217. _MENU_ITEM_PART_2(TYPE, ## __VA_ARGS__); \
  218. } while(0)
  219. #define MENU_BACK(LABEL) MENU_ITEM(back, LABEL, 0)
  220. // Used to print static text with no visible cursor.
  221. // Parameters: label [, bool center [, bool invert [, char *value] ] ]
  222. #define STATIC_ITEM(LABEL, ...) \
  223. if (_menuLineNr == _thisItemNr) { \
  224. if (_skipStatic && encoderLine <= _thisItemNr) { \
  225. encoderPosition += ENCODER_STEPS_PER_MENU_ITEM; \
  226. ++encoderLine; \
  227. } \
  228. if (lcdDrawUpdate) \
  229. lcd_implementation_drawmenu_static(_lcdLineNr, PSTR(LABEL), ## __VA_ARGS__); \
  230. } \
  231. ++_thisItemNr
  232. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  233. bool encoderRateMultiplierEnabled;
  234. #define ENCODER_RATE_MULTIPLY(F) (encoderRateMultiplierEnabled = F)
  235. //#define ENCODER_RATE_MULTIPLIER_DEBUG // If defined, output the encoder steps per second value
  236. /**
  237. * MENU_MULTIPLIER_ITEM generates drawing and handling code for a multiplier menu item
  238. */
  239. #define MENU_MULTIPLIER_ITEM(type, label, ...) do { \
  240. _MENU_ITEM_PART_1(type, label, ## __VA_ARGS__); \
  241. encoderRateMultiplierEnabled = true; \
  242. lastEncoderMovementMillis = 0; \
  243. _MENU_ITEM_PART_2(type, ## __VA_ARGS__); \
  244. } while(0)
  245. #else // !ENCODER_RATE_MULTIPLIER
  246. #define ENCODER_RATE_MULTIPLY(F) NOOP
  247. #endif // !ENCODER_RATE_MULTIPLIER
  248. #define MENU_ITEM_DUMMY() do { _thisItemNr++; } while(0)
  249. #define MENU_ITEM_EDIT(type, label, ...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label), ## __VA_ARGS__)
  250. #define MENU_ITEM_EDIT_CALLBACK(type, label, ...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## __VA_ARGS__)
  251. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  252. #define MENU_MULTIPLIER_ITEM_EDIT(type, label, ...) MENU_MULTIPLIER_ITEM(setting_edit_ ## type, label, PSTR(label), ## __VA_ARGS__)
  253. #define MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(type, label, ...) MENU_MULTIPLIER_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## __VA_ARGS__)
  254. #else // !ENCODER_RATE_MULTIPLIER
  255. #define MENU_MULTIPLIER_ITEM_EDIT(type, label, ...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label), ## __VA_ARGS__)
  256. #define MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(type, label, ...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## __VA_ARGS__)
  257. #endif // !ENCODER_RATE_MULTIPLIER
  258. /**
  259. * START_SCREEN_OR_MENU generates init code for a screen or menu
  260. *
  261. * encoderLine is the position based on the encoder
  262. * encoderTopLine is the top menu line to display
  263. * _lcdLineNr is the index of the LCD line (e.g., 0-3)
  264. * _menuLineNr is the menu item to draw and process
  265. * _thisItemNr is the index of each MENU_ITEM or STATIC_ITEM
  266. * _countedItems is the total number of items in the menu (after one call)
  267. */
  268. #define START_SCREEN_OR_MENU(LIMIT) \
  269. ENCODER_DIRECTION_MENUS(); \
  270. ENCODER_RATE_MULTIPLY(false); \
  271. if (encoderPosition > 0x8000) encoderPosition = 0; \
  272. static int8_t _countedItems = 0; \
  273. int8_t encoderLine = encoderPosition / (ENCODER_STEPS_PER_MENU_ITEM); \
  274. if (_countedItems > 0 && encoderLine >= _countedItems - (LIMIT)) { \
  275. encoderLine = max(0, _countedItems - (LIMIT)); \
  276. encoderPosition = encoderLine * (ENCODER_STEPS_PER_MENU_ITEM); \
  277. }
  278. #define SCREEN_OR_MENU_LOOP() \
  279. int8_t _menuLineNr = encoderTopLine, _thisItemNr; \
  280. for (int8_t _lcdLineNr = 0; _lcdLineNr < LCD_HEIGHT - (TALL_FONT_CORRECTION); _lcdLineNr++, _menuLineNr++) { \
  281. _thisItemNr = 0
  282. /**
  283. * START_SCREEN Opening code for a screen having only static items.
  284. * Do simplified scrolling of the entire screen.
  285. *
  286. * START_MENU Opening code for a screen with menu items.
  287. * Scroll as-needed to keep the selected line in view.
  288. */
  289. #define START_SCREEN() \
  290. START_SCREEN_OR_MENU(LCD_HEIGHT - (TALL_FONT_CORRECTION)); \
  291. encoderTopLine = encoderLine; \
  292. bool _skipStatic = false; \
  293. SCREEN_OR_MENU_LOOP()
  294. #define START_MENU() \
  295. START_SCREEN_OR_MENU(1); \
  296. screen_changed = false; \
  297. NOMORE(encoderTopLine, encoderLine); \
  298. if (encoderLine >= encoderTopLine + LCD_HEIGHT - (TALL_FONT_CORRECTION)) { \
  299. encoderTopLine = encoderLine - (LCD_HEIGHT - (TALL_FONT_CORRECTION) - 1); \
  300. } \
  301. bool _skipStatic = true; \
  302. SCREEN_OR_MENU_LOOP()
  303. #define END_SCREEN() \
  304. } \
  305. _countedItems = _thisItemNr
  306. #define END_MENU() \
  307. } \
  308. _countedItems = _thisItemNr; \
  309. UNUSED(_skipStatic)
  310. ////////////////////////////////////////////
  311. ///////////// Global Variables /////////////
  312. ////////////////////////////////////////////
  313. /**
  314. * REVERSE_MENU_DIRECTION
  315. *
  316. * To reverse the menu direction we need a general way to reverse
  317. * the direction of the encoder everywhere. So encoderDirection is
  318. * added to allow the encoder to go the other way.
  319. *
  320. * This behavior is limited to scrolling Menus and SD card listings,
  321. * and is disabled in other contexts.
  322. */
  323. #if ENABLED(REVERSE_MENU_DIRECTION)
  324. int8_t encoderDirection = 1;
  325. #define ENCODER_DIRECTION_NORMAL() (encoderDirection = 1)
  326. #define ENCODER_DIRECTION_MENUS() (encoderDirection = -1)
  327. #else
  328. #define ENCODER_DIRECTION_NORMAL() ;
  329. #define ENCODER_DIRECTION_MENUS() ;
  330. #endif
  331. // Encoder Movement
  332. volatile int8_t encoderDiff; // Updated in lcd_buttons_update, added to encoderPosition every LCD update
  333. uint32_t encoderPosition;
  334. millis_t lastEncoderMovementMillis = 0;
  335. // Button States
  336. bool lcd_clicked, wait_for_unclick;
  337. volatile uint8_t buttons;
  338. millis_t next_button_update_ms;
  339. #if ENABLED(REPRAPWORLD_KEYPAD)
  340. volatile uint8_t buttons_reprapworld_keypad;
  341. #endif
  342. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  343. volatile uint8_t slow_buttons;
  344. #endif
  345. // Menu System Navigation
  346. screenFunc_t currentScreen = lcd_status_screen;
  347. int8_t encoderTopLine;
  348. typedef struct {
  349. screenFunc_t menu_function;
  350. uint32_t encoder_position;
  351. } menuPosition;
  352. menuPosition screen_history[6];
  353. uint8_t screen_history_depth = 0;
  354. bool screen_changed, defer_return_to_status;
  355. // Value Editing
  356. const char *editLabel;
  357. void *editValue;
  358. int32_t minEditValue, maxEditValue;
  359. screenFunc_t callbackFunc;
  360. bool liveEdit;
  361. // Manual Moves
  362. const float manual_feedrate_mm_m[] = MANUAL_FEEDRATE;
  363. millis_t manual_move_start_time = 0;
  364. int8_t manual_move_axis = (int8_t)NO_AXIS;
  365. #if EXTRUDERS > 1
  366. int8_t manual_move_e_index = 0;
  367. #else
  368. #define manual_move_e_index 0
  369. #endif
  370. #if PIN_EXISTS(SD_DETECT)
  371. uint8_t lcd_sd_status;
  372. #endif
  373. #if ENABLED(PIDTEMP)
  374. float raw_Ki, raw_Kd; // place-holders for Ki and Kd edits
  375. #endif
  376. /**
  377. * General function to go directly to a screen
  378. */
  379. void lcd_goto_screen(screenFunc_t screen, const uint32_t encoder = 0) {
  380. if (currentScreen != screen) {
  381. #if ENABLED(DOUBLECLICK_FOR_Z_BABYSTEPPING) && ENABLED(BABYSTEPPING)
  382. static millis_t doubleclick_expire_ms = 0;
  383. // Going to lcd_main_menu from status screen? Remember first click time.
  384. // Going back to status screen within a very short time? Go to Z babystepping.
  385. if (screen == lcd_main_menu) {
  386. if (currentScreen == lcd_status_screen)
  387. doubleclick_expire_ms = millis() + DOUBLECLICK_MAX_INTERVAL;
  388. }
  389. else if (screen == lcd_status_screen && currentScreen == lcd_main_menu && PENDING(millis(), doubleclick_expire_ms))
  390. screen =
  391. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  392. lcd_babystep_zoffset
  393. #else
  394. lcd_babystep_z
  395. #endif
  396. ;
  397. #endif
  398. currentScreen = screen;
  399. encoderPosition = encoder;
  400. if (screen == lcd_status_screen) {
  401. defer_return_to_status = false;
  402. screen_history_depth = 0;
  403. }
  404. lcd_implementation_clear();
  405. #if ENABLED(LCD_PROGRESS_BAR)
  406. // For LCD_PROGRESS_BAR re-initialize custom characters
  407. lcd_set_custom_characters(screen == lcd_status_screen);
  408. #endif
  409. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  410. screen_changed = true;
  411. #if ENABLED(DOGLCD)
  412. drawing_screen = false;
  413. #endif
  414. }
  415. }
  416. /**
  417. * Show "Moving..." till moves are done, then revert to previous display.
  418. */
  419. static const char moving[] PROGMEM = MSG_MOVING;
  420. static const char *sync_message = moving;
  421. //
  422. // Display the synchronize screen until moves are
  423. // finished, and don't return to the caller until
  424. // done. ** This blocks the command queue! **
  425. //
  426. void _lcd_synchronize() {
  427. static bool no_reentry = false;
  428. if (lcdDrawUpdate) lcd_implementation_drawmenu_static(LCD_HEIGHT >= 4 ? 1 : 0, sync_message);
  429. if (no_reentry) return;
  430. // Make this the current handler till all moves are done
  431. no_reentry = true;
  432. screenFunc_t old_screen = currentScreen;
  433. lcd_goto_screen(_lcd_synchronize);
  434. stepper.synchronize();
  435. no_reentry = false;
  436. lcd_goto_screen(old_screen);
  437. }
  438. // Display the synchronize screen with a custom message
  439. // ** This blocks the command queue! **
  440. void lcd_synchronize(const char * const msg=NULL) {
  441. sync_message = msg ? msg : moving;
  442. _lcd_synchronize();
  443. }
  444. void lcd_return_to_status() { lcd_goto_screen(lcd_status_screen); }
  445. void lcd_save_previous_screen() {
  446. if (screen_history_depth < COUNT(screen_history)) {
  447. screen_history[screen_history_depth].menu_function = currentScreen;
  448. screen_history[screen_history_depth].encoder_position = encoderPosition;
  449. ++screen_history_depth;
  450. }
  451. }
  452. void lcd_goto_previous_menu() {
  453. if (screen_history_depth > 0) {
  454. --screen_history_depth;
  455. lcd_goto_screen(
  456. screen_history[screen_history_depth].menu_function,
  457. screen_history[screen_history_depth].encoder_position
  458. );
  459. }
  460. else
  461. lcd_return_to_status();
  462. }
  463. #endif // ULTIPANEL
  464. /**
  465. *
  466. * "Info Screen"
  467. *
  468. * This is very display-dependent, so the lcd implementation draws this.
  469. */
  470. void lcd_status_screen() {
  471. #if ENABLED(ULTIPANEL)
  472. ENCODER_DIRECTION_NORMAL();
  473. ENCODER_RATE_MULTIPLY(false);
  474. #endif
  475. #if ENABLED(LCD_PROGRESS_BAR)
  476. millis_t ms = millis();
  477. #if DISABLED(PROGRESS_MSG_ONCE)
  478. if (ELAPSED(ms, progress_bar_ms + PROGRESS_BAR_MSG_TIME + PROGRESS_BAR_BAR_TIME)) {
  479. progress_bar_ms = ms;
  480. }
  481. #endif
  482. #if PROGRESS_MSG_EXPIRE > 0
  483. // Handle message expire
  484. if (expire_status_ms > 0) {
  485. #if ENABLED(SDSUPPORT)
  486. if (card.isFileOpen()) {
  487. // Expire the message when printing is active
  488. if (IS_SD_PRINTING) {
  489. if (ELAPSED(ms, expire_status_ms)) {
  490. lcd_status_message[0] = '\0';
  491. expire_status_ms = 0;
  492. }
  493. }
  494. else {
  495. expire_status_ms += LCD_UPDATE_INTERVAL;
  496. }
  497. }
  498. else {
  499. expire_status_ms = 0;
  500. }
  501. #else
  502. expire_status_ms = 0;
  503. #endif // SDSUPPORT
  504. }
  505. #endif
  506. #endif // LCD_PROGRESS_BAR
  507. lcd_implementation_status_screen();
  508. #if ENABLED(ULTIPANEL)
  509. if (lcd_clicked) {
  510. #if ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
  511. previous_lcd_status_ms = millis(); // get status message to show up for a while
  512. #endif
  513. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  514. #if ENABLED(LCD_PROGRESS_BAR)
  515. false
  516. #endif
  517. );
  518. lcd_goto_screen(lcd_main_menu);
  519. }
  520. #if ENABLED(ULTIPANEL_FEEDMULTIPLY)
  521. const int new_frm = feedrate_percentage + (int32_t)encoderPosition;
  522. // Dead zone at 100% feedrate
  523. if ((feedrate_percentage < 100 && new_frm > 100) || (feedrate_percentage > 100 && new_frm < 100)) {
  524. feedrate_percentage = 100;
  525. encoderPosition = 0;
  526. }
  527. else if (feedrate_percentage == 100) {
  528. if ((int32_t)encoderPosition > ENCODER_FEEDRATE_DEADZONE) {
  529. feedrate_percentage += (int32_t)encoderPosition - (ENCODER_FEEDRATE_DEADZONE);
  530. encoderPosition = 0;
  531. }
  532. else if ((int32_t)encoderPosition < -(ENCODER_FEEDRATE_DEADZONE)) {
  533. feedrate_percentage += (int32_t)encoderPosition + ENCODER_FEEDRATE_DEADZONE;
  534. encoderPosition = 0;
  535. }
  536. }
  537. else {
  538. feedrate_percentage = new_frm;
  539. encoderPosition = 0;
  540. }
  541. #endif // ULTIPANEL_FEEDMULTIPLY
  542. feedrate_percentage = constrain(feedrate_percentage, 10, 999);
  543. #endif // ULTIPANEL
  544. }
  545. /**
  546. *
  547. * draw the kill screen
  548. *
  549. */
  550. void kill_screen(const char* lcd_msg) {
  551. lcd_init();
  552. lcd_setalertstatuspgm(lcd_msg);
  553. #if ENABLED(DOGLCD)
  554. u8g.firstPage();
  555. do {
  556. lcd_kill_screen();
  557. } while (u8g.nextPage());
  558. #else
  559. lcd_kill_screen();
  560. #endif
  561. }
  562. #if ENABLED(ULTIPANEL)
  563. /**
  564. *
  565. * Audio feedback for controller clicks
  566. *
  567. */
  568. void lcd_buzz(long duration, uint16_t freq) {
  569. #if ENABLED(LCD_USE_I2C_BUZZER)
  570. lcd.buzz(duration, freq);
  571. #elif PIN_EXISTS(BEEPER)
  572. buzzer.tone(duration, freq);
  573. #else
  574. UNUSED(duration); UNUSED(freq);
  575. #endif
  576. }
  577. void lcd_quick_feedback() {
  578. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  579. buttons = 0;
  580. next_button_update_ms = millis() + 500;
  581. // Buzz and wait. The delay is needed for buttons to settle!
  582. lcd_buzz(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
  583. #if ENABLED(LCD_USE_I2C_BUZZER)
  584. delay(10);
  585. #elif PIN_EXISTS(BEEPER)
  586. for (int8_t i = 5; i--;) { buzzer.tick(); delay(2); }
  587. #endif
  588. }
  589. void lcd_completion_feedback(const bool good/*=true*/) {
  590. if (good) {
  591. lcd_buzz(100, 659);
  592. lcd_buzz(100, 698);
  593. }
  594. else lcd_buzz(20, 440);
  595. }
  596. inline void line_to_current(AxisEnum axis) {
  597. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(manual_feedrate_mm_m[axis]), active_extruder);
  598. }
  599. #if ENABLED(SDSUPPORT)
  600. void lcd_sdcard_pause() {
  601. card.pauseSDPrint();
  602. print_job_timer.pause();
  603. #if ENABLED(PARK_HEAD_ON_PAUSE)
  604. enqueue_and_echo_commands_P(PSTR("M125"));
  605. #endif
  606. lcd_setstatusPGM(PSTR(MSG_PRINT_PAUSED), -1);
  607. }
  608. void lcd_sdcard_resume() {
  609. #if ENABLED(PARK_HEAD_ON_PAUSE)
  610. enqueue_and_echo_commands_P(PSTR("M24"));
  611. #else
  612. card.startFileprint();
  613. print_job_timer.start();
  614. #endif
  615. lcd_setstatusPGM(PSTR(""), -1);
  616. }
  617. void lcd_sdcard_stop() {
  618. card.stopSDPrint();
  619. clear_command_queue();
  620. quickstop_stepper();
  621. print_job_timer.stop();
  622. thermalManager.disable_all_heaters();
  623. #if FAN_COUNT > 0
  624. for (uint8_t i = 0; i < FAN_COUNT; i++) fanSpeeds[i] = 0;
  625. #endif
  626. wait_for_heatup = false;
  627. lcd_setstatusPGM(PSTR(MSG_PRINT_PAUSED), -1);
  628. }
  629. #endif // SDSUPPORT
  630. #if ENABLED(BLTOUCH)
  631. /**
  632. *
  633. * "BLTouch" submenu
  634. *
  635. */
  636. static void bltouch_menu() {
  637. START_MENU();
  638. //
  639. // ^ Main
  640. //
  641. MENU_BACK(MSG_MAIN);
  642. MENU_ITEM(gcode, MSG_BLTOUCH_RESET, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_RESET)));
  643. MENU_ITEM(gcode, MSG_BLTOUCH_SELFTEST, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_SELFTEST)));
  644. MENU_ITEM(gcode, MSG_BLTOUCH_DEPLOY, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_DEPLOY)));
  645. MENU_ITEM(gcode, MSG_BLTOUCH_STOW, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_STOW)));
  646. END_MENU();
  647. }
  648. #endif // BLTOUCH
  649. #if ENABLED(LCD_PROGRESS_BAR_TEST)
  650. static void progress_bar_test() {
  651. static int8_t bar_percent = 0;
  652. if (lcd_clicked) {
  653. lcd_goto_previous_menu();
  654. lcd_set_custom_characters(false);
  655. return;
  656. }
  657. bar_percent += (int8_t)encoderPosition;
  658. bar_percent = constrain(bar_percent, 0, 100);
  659. encoderPosition = 0;
  660. lcd_implementation_drawmenu_static(0, PSTR(MSG_PROGRESS_BAR_TEST), true, true);
  661. lcd.setCursor((LCD_WIDTH) / 2 - 2, LCD_HEIGHT - 2);
  662. lcd.print(itostr3(bar_percent)); lcd.print('%');
  663. lcd.setCursor(0, LCD_HEIGHT - 1); lcd_draw_progress_bar(bar_percent);
  664. }
  665. void _progress_bar_test() {
  666. lcd_goto_screen(progress_bar_test);
  667. lcd_set_custom_characters();
  668. }
  669. #endif // LCD_PROGRESS_BAR_TEST
  670. #if HAS_DEBUG_MENU
  671. void lcd_debug_menu() {
  672. START_MENU();
  673. MENU_BACK(MSG_MAIN); // ^ Main
  674. #if ENABLED(LCD_PROGRESS_BAR_TEST)
  675. MENU_ITEM(submenu, MSG_PROGRESS_BAR_TEST, _progress_bar_test);
  676. #endif
  677. END_MENU();
  678. }
  679. #endif // HAS_DEBUG_MENU
  680. /**
  681. *
  682. * "Main" menu
  683. *
  684. */
  685. #if ENABLED(MENU_ITEM_CASE_LIGHT)
  686. extern bool case_light_on;
  687. extern void update_case_light();
  688. #endif
  689. void lcd_main_menu() {
  690. START_MENU();
  691. MENU_BACK(MSG_WATCH);
  692. //
  693. // Debug Menu when certain options are enabled
  694. //
  695. #if HAS_DEBUG_MENU
  696. MENU_ITEM(submenu, MSG_DEBUG_MENU, lcd_debug_menu);
  697. #endif
  698. //
  699. // Switch case light on/off
  700. //
  701. #if ENABLED(MENU_ITEM_CASE_LIGHT)
  702. MENU_ITEM_EDIT_CALLBACK(bool, MSG_CASE_LIGHT, case_light_on, update_case_light);
  703. #endif
  704. if (planner.movesplanned() || IS_SD_PRINTING) {
  705. MENU_ITEM(submenu, MSG_TUNE, lcd_tune_menu);
  706. }
  707. else {
  708. MENU_ITEM(submenu, MSG_PREPARE, lcd_prepare_menu);
  709. #if ENABLED(DELTA_CALIBRATION_MENU)
  710. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE, lcd_delta_calibrate_menu);
  711. #endif
  712. }
  713. MENU_ITEM(submenu, MSG_CONTROL, lcd_control_menu);
  714. #if ENABLED(SDSUPPORT)
  715. if (card.cardOK) {
  716. if (card.isFileOpen()) {
  717. if (card.sdprinting)
  718. MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause);
  719. else
  720. MENU_ITEM(function, MSG_RESUME_PRINT, lcd_sdcard_resume);
  721. MENU_ITEM(function, MSG_STOP_PRINT, lcd_sdcard_stop);
  722. }
  723. else {
  724. MENU_ITEM(submenu, MSG_CARD_MENU, lcd_sdcard_menu);
  725. #if !PIN_EXISTS(SD_DETECT)
  726. MENU_ITEM(gcode, MSG_CNG_SDCARD, PSTR("M21")); // SD-card changed by user
  727. #endif
  728. }
  729. }
  730. else {
  731. MENU_ITEM(submenu, MSG_NO_CARD, lcd_sdcard_menu);
  732. #if !PIN_EXISTS(SD_DETECT)
  733. MENU_ITEM(gcode, MSG_INIT_SDCARD, PSTR("M21")); // Manually initialize the SD-card via user interface
  734. #endif
  735. }
  736. #endif // SDSUPPORT
  737. #if ENABLED(LCD_INFO_MENU)
  738. MENU_ITEM(submenu, MSG_INFO_MENU, lcd_info_menu);
  739. #endif
  740. END_MENU();
  741. }
  742. /**
  743. *
  744. * "Tune" submenu items
  745. *
  746. */
  747. #if HAS_M206_COMMAND
  748. /**
  749. * Set the home offset based on the current_position
  750. */
  751. void lcd_set_home_offsets() {
  752. // M428 Command
  753. enqueue_and_echo_commands_P(PSTR("M428"));
  754. lcd_return_to_status();
  755. }
  756. #endif
  757. #if ENABLED(BABYSTEPPING)
  758. void _lcd_babystep(const AxisEnum axis, const char* msg) {
  759. if (lcd_clicked) { defer_return_to_status = false; return lcd_goto_previous_menu(); }
  760. ENCODER_DIRECTION_NORMAL();
  761. if (encoderPosition) {
  762. const int babystep_increment = (int32_t)encoderPosition * (BABYSTEP_MULTIPLICATOR);
  763. encoderPosition = 0;
  764. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  765. thermalManager.babystep_axis(axis, babystep_increment);
  766. babysteps_done += babystep_increment;
  767. }
  768. if (lcdDrawUpdate)
  769. lcd_implementation_drawedit(msg, ftostr43sign(planner.steps_to_mm[axis] * babysteps_done));
  770. }
  771. #if ENABLED(BABYSTEP_XY)
  772. void _lcd_babystep_x() { _lcd_babystep(X_AXIS, PSTR(MSG_BABYSTEPPING_X)); }
  773. void _lcd_babystep_y() { _lcd_babystep(Y_AXIS, PSTR(MSG_BABYSTEPPING_Y)); }
  774. void lcd_babystep_x() { lcd_goto_screen(_lcd_babystep_x); babysteps_done = 0; defer_return_to_status = true; }
  775. void lcd_babystep_y() { lcd_goto_screen(_lcd_babystep_y); babysteps_done = 0; defer_return_to_status = true; }
  776. #endif
  777. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  778. void lcd_babystep_zoffset() {
  779. if (lcd_clicked) { defer_return_to_status = false; return lcd_goto_previous_menu(); }
  780. defer_return_to_status = true;
  781. ENCODER_DIRECTION_NORMAL();
  782. if (encoderPosition) {
  783. const int babystep_increment = (int32_t)encoderPosition * (BABYSTEP_MULTIPLICATOR);
  784. encoderPosition = 0;
  785. const float new_zoffset = zprobe_zoffset + planner.steps_to_mm[Z_AXIS] * babystep_increment;
  786. if (WITHIN(new_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) {
  787. if (planner.abl_enabled)
  788. thermalManager.babystep_axis(Z_AXIS, babystep_increment);
  789. zprobe_zoffset = new_zoffset;
  790. refresh_zprobe_zoffset(true);
  791. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  792. }
  793. }
  794. if (lcdDrawUpdate)
  795. lcd_implementation_drawedit(PSTR(MSG_ZPROBE_ZOFFSET), ftostr43sign(zprobe_zoffset));
  796. }
  797. #else // !BABYSTEP_ZPROBE_OFFSET
  798. void _lcd_babystep_z() { _lcd_babystep(Z_AXIS, PSTR(MSG_BABYSTEPPING_Z)); }
  799. void lcd_babystep_z() { lcd_goto_screen(_lcd_babystep_z); babysteps_done = 0; defer_return_to_status = true; }
  800. #endif // !BABYSTEP_ZPROBE_OFFSET
  801. #endif // BABYSTEPPING
  802. #if ENABLED(AUTO_BED_LEVELING_UBL)
  803. float mesh_edit_value, mesh_edit_accumulator; // We round mesh_edit_value to 2.5 decimal places. So we keep a
  804. // seperate value that doesn't lose precision.
  805. static int ubl_encoderPosition = 0;
  806. static void _lcd_mesh_fine_tune(const char* msg) {
  807. defer_return_to_status = true;
  808. if (ubl.encoder_diff) {
  809. ubl_encoderPosition = (ubl.encoder_diff > 0) ? 1 : -1;
  810. ubl.encoder_diff = 0;
  811. mesh_edit_accumulator += float(ubl_encoderPosition) * 0.005 / 2.0;
  812. mesh_edit_value = mesh_edit_accumulator;
  813. encoderPosition = 0;
  814. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  815. const int32_t rounded = (int32_t)(mesh_edit_value * 1000.0);
  816. mesh_edit_value = float(rounded - (rounded % 5L)) / 1000.0;
  817. }
  818. if (lcdDrawUpdate)
  819. lcd_implementation_drawedit(msg, ftostr43sign(mesh_edit_value));
  820. }
  821. void _lcd_mesh_edit_NOP() {
  822. defer_return_to_status = true;
  823. }
  824. float lcd_mesh_edit() {
  825. lcd_goto_screen(_lcd_mesh_edit_NOP);
  826. _lcd_mesh_fine_tune(PSTR("Mesh Editor"));
  827. return mesh_edit_value;
  828. }
  829. void lcd_mesh_edit_setup(float initial) {
  830. mesh_edit_value = mesh_edit_accumulator = initial;
  831. lcd_goto_screen(_lcd_mesh_edit_NOP);
  832. }
  833. void _lcd_z_offset_edit() {
  834. _lcd_mesh_fine_tune(PSTR("Z-Offset: "));
  835. }
  836. float lcd_z_offset_edit() {
  837. lcd_goto_screen(_lcd_z_offset_edit);
  838. return mesh_edit_value;
  839. }
  840. void lcd_z_offset_edit_setup(float initial) {
  841. mesh_edit_value = mesh_edit_accumulator = initial;
  842. lcd_goto_screen(_lcd_z_offset_edit);
  843. }
  844. #endif // AUTO_BED_LEVELING_UBL
  845. /**
  846. * Watch temperature callbacks
  847. */
  848. #if HAS_TEMP_HOTEND
  849. #if WATCH_HOTENDS
  850. #define _WATCH_FUNC(N) thermalManager.start_watching_heater(N)
  851. #else
  852. #define _WATCH_FUNC(N) NOOP
  853. #endif
  854. void watch_temp_callback_E0() { _WATCH_FUNC(0); }
  855. #if HOTENDS > 1
  856. void watch_temp_callback_E1() { _WATCH_FUNC(1); }
  857. #if HOTENDS > 2
  858. void watch_temp_callback_E2() { _WATCH_FUNC(2); }
  859. #if HOTENDS > 3
  860. void watch_temp_callback_E3() { _WATCH_FUNC(3); }
  861. #if HOTENDS > 4
  862. void watch_temp_callback_E4() { _WATCH_FUNC(4); }
  863. #endif // HOTENDS > 4
  864. #endif // HOTENDS > 3
  865. #endif // HOTENDS > 2
  866. #endif // HOTENDS > 1
  867. #endif // HAS_TEMP_HOTEND
  868. #if WATCH_THE_BED
  869. void watch_temp_callback_bed() { thermalManager.start_watching_bed(); }
  870. #endif
  871. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  872. void lcd_enqueue_filament_change() {
  873. if (!DEBUGGING(DRYRUN) && thermalManager.tooColdToExtrude(active_extruder)) {
  874. lcd_save_previous_screen();
  875. lcd_goto_screen(lcd_advanced_pause_toocold_menu);
  876. return;
  877. }
  878. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INIT);
  879. enqueue_and_echo_commands_P(PSTR("M600 B0"));
  880. }
  881. #endif
  882. /**
  883. *
  884. * "Tune" submenu
  885. *
  886. */
  887. void lcd_tune_menu() {
  888. START_MENU();
  889. //
  890. // ^ Main
  891. //
  892. MENU_BACK(MSG_MAIN);
  893. //
  894. // Speed:
  895. //
  896. MENU_ITEM_EDIT(int3, MSG_SPEED, &feedrate_percentage, 10, 999);
  897. // Manual bed leveling, Bed Z:
  898. #if ENABLED(MESH_BED_LEVELING) && ENABLED(LCD_BED_LEVELING)
  899. MENU_ITEM_EDIT(float43, MSG_BED_Z, &mbl.z_offset, -1, 1);
  900. #endif
  901. //
  902. // Nozzle:
  903. // Nozzle [1-4]:
  904. //
  905. #if HOTENDS == 1
  906. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  907. #else // HOTENDS > 1
  908. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N1, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  909. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N2, &thermalManager.target_temperature[1], 0, HEATER_1_MAXTEMP - 15, watch_temp_callback_E1);
  910. #if HOTENDS > 2
  911. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N3, &thermalManager.target_temperature[2], 0, HEATER_2_MAXTEMP - 15, watch_temp_callback_E2);
  912. #if HOTENDS > 3
  913. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N4, &thermalManager.target_temperature[3], 0, HEATER_3_MAXTEMP - 15, watch_temp_callback_E3);
  914. #if HOTENDS > 4
  915. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N5, &thermalManager.target_temperature[4], 0, HEATER_4_MAXTEMP - 15, watch_temp_callback_E4);
  916. #endif // HOTENDS > 4
  917. #endif // HOTENDS > 3
  918. #endif // HOTENDS > 2
  919. #endif // HOTENDS > 1
  920. //
  921. // Bed:
  922. //
  923. #if WATCH_THE_BED
  924. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_BED, &thermalManager.target_temperature_bed, 0, BED_MAXTEMP - 15, watch_temp_callback_bed);
  925. #endif
  926. //
  927. // Fan Speed:
  928. //
  929. #if FAN_COUNT > 0
  930. #if HAS_FAN0
  931. #if FAN_COUNT > 1
  932. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED " 1"
  933. #else
  934. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED
  935. #endif
  936. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_1ST_FAN_SPEED, &fanSpeeds[0], 0, 255);
  937. #endif
  938. #if HAS_FAN1
  939. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 2", &fanSpeeds[1], 0, 255);
  940. #endif
  941. #if HAS_FAN2
  942. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 3", &fanSpeeds[2], 0, 255);
  943. #endif
  944. #endif // FAN_COUNT > 0
  945. //
  946. // Flow:
  947. // Flow [1-5]:
  948. //
  949. #if EXTRUDERS == 1
  950. MENU_ITEM_EDIT(int3, MSG_FLOW, &flow_percentage[0], 10, 999);
  951. #else // EXTRUDERS > 1
  952. MENU_ITEM_EDIT(int3, MSG_FLOW, &flow_percentage[active_extruder], 10, 999);
  953. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N1, &flow_percentage[0], 10, 999);
  954. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N2, &flow_percentage[1], 10, 999);
  955. #if EXTRUDERS > 2
  956. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N3, &flow_percentage[2], 10, 999);
  957. #if EXTRUDERS > 3
  958. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N4, &flow_percentage[3], 10, 999);
  959. #if EXTRUDERS > 4
  960. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N5, &flow_percentage[4], 10, 999);
  961. #endif // EXTRUDERS > 4
  962. #endif // EXTRUDERS > 3
  963. #endif // EXTRUDERS > 2
  964. #endif // EXTRUDERS > 1
  965. //
  966. // Babystep X:
  967. // Babystep Y:
  968. // Babystep Z:
  969. //
  970. #if ENABLED(BABYSTEPPING)
  971. #if ENABLED(BABYSTEP_XY)
  972. MENU_ITEM(submenu, MSG_BABYSTEP_X, lcd_babystep_x);
  973. MENU_ITEM(submenu, MSG_BABYSTEP_Y, lcd_babystep_y);
  974. #endif
  975. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  976. MENU_ITEM(submenu, MSG_ZPROBE_ZOFFSET, lcd_babystep_zoffset);
  977. #else
  978. MENU_ITEM(submenu, MSG_BABYSTEP_Z, lcd_babystep_z);
  979. #endif
  980. #endif
  981. //
  982. // Change filament
  983. //
  984. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  985. if (!thermalManager.tooColdToExtrude(active_extruder))
  986. MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
  987. #endif
  988. END_MENU();
  989. }
  990. /**
  991. *
  992. * "Driver current control" submenu items
  993. *
  994. */
  995. #if ENABLED(DAC_STEPPER_CURRENT)
  996. void dac_driver_getValues() { LOOP_XYZE(i) driverPercent[i] = dac_current_get_percent((AxisEnum)i); }
  997. void dac_driver_commit() { dac_current_set_percents(driverPercent); }
  998. void dac_driver_eeprom_write() { dac_commit_eeprom(); }
  999. void lcd_dac_menu() {
  1000. dac_driver_getValues();
  1001. START_MENU();
  1002. MENU_BACK(MSG_CONTROL);
  1003. MENU_ITEM_EDIT_CALLBACK(int3, MSG_X " " MSG_DAC_PERCENT, &driverPercent[X_AXIS], 0, 100, dac_driver_commit);
  1004. MENU_ITEM_EDIT_CALLBACK(int3, MSG_Y " " MSG_DAC_PERCENT, &driverPercent[Y_AXIS], 0, 100, dac_driver_commit);
  1005. MENU_ITEM_EDIT_CALLBACK(int3, MSG_Z " " MSG_DAC_PERCENT, &driverPercent[Z_AXIS], 0, 100, dac_driver_commit);
  1006. MENU_ITEM_EDIT_CALLBACK(int3, MSG_E " " MSG_DAC_PERCENT, &driverPercent[E_AXIS], 0, 100, dac_driver_commit);
  1007. MENU_ITEM(function, MSG_DAC_EEPROM_WRITE, dac_driver_eeprom_write);
  1008. END_MENU();
  1009. }
  1010. #endif
  1011. constexpr int16_t heater_maxtemp[HOTENDS] = ARRAY_BY_HOTENDS(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP, HEATER_4_MAXTEMP);
  1012. /**
  1013. *
  1014. * "Prepare" submenu items
  1015. *
  1016. */
  1017. void _lcd_preheat(const int endnum, const int16_t temph, const int16_t tempb, const int16_t fan) {
  1018. if (temph > 0) thermalManager.setTargetHotend(min(heater_maxtemp[endnum], temph), endnum);
  1019. #if TEMP_SENSOR_BED != 0
  1020. if (tempb >= 0) thermalManager.setTargetBed(tempb);
  1021. #else
  1022. UNUSED(tempb);
  1023. #endif
  1024. #if FAN_COUNT > 0
  1025. #if FAN_COUNT > 1
  1026. fanSpeeds[active_extruder < FAN_COUNT ? active_extruder : 0] = fan;
  1027. #else
  1028. fanSpeeds[0] = fan;
  1029. #endif
  1030. #else
  1031. UNUSED(fan);
  1032. #endif
  1033. lcd_return_to_status();
  1034. }
  1035. #if TEMP_SENSOR_0 != 0
  1036. void lcd_preheat_m1_e0_only() { _lcd_preheat(0, lcd_preheat_hotend_temp[0], -1, lcd_preheat_fan_speed[0]); }
  1037. void lcd_preheat_m2_e0_only() { _lcd_preheat(0, lcd_preheat_hotend_temp[1], -1, lcd_preheat_fan_speed[1]); }
  1038. #if TEMP_SENSOR_BED != 0
  1039. void lcd_preheat_m1_e0() { _lcd_preheat(0, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1040. void lcd_preheat_m2_e0() { _lcd_preheat(0, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1041. #endif
  1042. #endif
  1043. #if HOTENDS > 1
  1044. void lcd_preheat_m1_e1_only() { _lcd_preheat(1, lcd_preheat_hotend_temp[0], -1, lcd_preheat_fan_speed[0]); }
  1045. void lcd_preheat_m2_e1_only() { _lcd_preheat(1, lcd_preheat_hotend_temp[1], -1, lcd_preheat_fan_speed[1]); }
  1046. #if TEMP_SENSOR_BED != 0
  1047. void lcd_preheat_m1_e1() { _lcd_preheat(1, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1048. void lcd_preheat_m2_e1() { _lcd_preheat(1, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1049. #endif
  1050. #if HOTENDS > 2
  1051. void lcd_preheat_m1_e2_only() { _lcd_preheat(2, lcd_preheat_hotend_temp[0], -1, lcd_preheat_fan_speed[0]); }
  1052. void lcd_preheat_m2_e2_only() { _lcd_preheat(2, lcd_preheat_hotend_temp[1], -1, lcd_preheat_fan_speed[1]); }
  1053. #if TEMP_SENSOR_BED != 0
  1054. void lcd_preheat_m1_e2() { _lcd_preheat(2, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1055. void lcd_preheat_m2_e2() { _lcd_preheat(2, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1056. #endif
  1057. #if HOTENDS > 3
  1058. void lcd_preheat_m1_e3_only() { _lcd_preheat(3, lcd_preheat_hotend_temp[0], -1, lcd_preheat_fan_speed[0]); }
  1059. void lcd_preheat_m2_e3_only() { _lcd_preheat(3, lcd_preheat_hotend_temp[1], -1, lcd_preheat_fan_speed[1]); }
  1060. #if TEMP_SENSOR_BED != 0
  1061. void lcd_preheat_m1_e3() { _lcd_preheat(3, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1062. void lcd_preheat_m2_e3() { _lcd_preheat(3, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1063. #endif
  1064. #if HOTENDS > 4
  1065. void lcd_preheat_m1_e4_only() { _lcd_preheat(4, lcd_preheat_hotend_temp[0], -1, lcd_preheat_fan_speed[0]); }
  1066. void lcd_preheat_m2_e4_only() { _lcd_preheat(4, lcd_preheat_hotend_temp[1], -1, lcd_preheat_fan_speed[1]); }
  1067. #if TEMP_SENSOR_BED != 0
  1068. void lcd_preheat_m1_e4() { _lcd_preheat(4, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1069. void lcd_preheat_m2_e4() { _lcd_preheat(4, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1070. #endif
  1071. #endif // HOTENDS > 4
  1072. #endif // HOTENDS > 3
  1073. #endif // HOTENDS > 2
  1074. void lcd_preheat_m1_all() {
  1075. #if HOTENDS > 1
  1076. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 1);
  1077. #if HOTENDS > 2
  1078. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 2);
  1079. #if HOTENDS > 3
  1080. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 3);
  1081. #if HOTENDS > 4
  1082. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 4);
  1083. #endif // HOTENDS > 4
  1084. #endif // HOTENDS > 3
  1085. #endif // HOTENDS > 2
  1086. #endif // HOTENDS > 1
  1087. #if TEMP_SENSOR_BED != 0
  1088. lcd_preheat_m1_e0();
  1089. #else
  1090. lcd_preheat_m1_e0_only();
  1091. #endif
  1092. }
  1093. void lcd_preheat_m2_all() {
  1094. #if HOTENDS > 1
  1095. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 1);
  1096. #if HOTENDS > 2
  1097. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 2);
  1098. #if HOTENDS > 3
  1099. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 3);
  1100. #if HOTENDS > 4
  1101. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 4);
  1102. #endif // HOTENDS > 4
  1103. #endif // HOTENDS > 3
  1104. #endif // HOTENDS > 2
  1105. #endif // HOTENDS > 1
  1106. #if TEMP_SENSOR_BED != 0
  1107. lcd_preheat_m2_e0();
  1108. #else
  1109. lcd_preheat_m2_e0_only();
  1110. #endif
  1111. }
  1112. #endif // HOTENDS > 1
  1113. #if TEMP_SENSOR_BED != 0
  1114. void lcd_preheat_m1_bedonly() { _lcd_preheat(0, 0, lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1115. void lcd_preheat_m2_bedonly() { _lcd_preheat(0, 0, lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1116. #endif
  1117. #if TEMP_SENSOR_0 != 0 && (TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_4 != 0 || TEMP_SENSOR_BED != 0)
  1118. void lcd_preheat_m1_menu() {
  1119. START_MENU();
  1120. MENU_BACK(MSG_PREPARE);
  1121. #if HOTENDS == 1
  1122. #if TEMP_SENSOR_BED != 0
  1123. MENU_ITEM(function, MSG_PREHEAT_1, lcd_preheat_m1_e0);
  1124. MENU_ITEM(function, MSG_PREHEAT_1_END, lcd_preheat_m1_e0_only);
  1125. #else
  1126. MENU_ITEM(function, MSG_PREHEAT_1, lcd_preheat_m1_e0_only);
  1127. #endif
  1128. #else
  1129. #if TEMP_SENSOR_BED != 0
  1130. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H1, lcd_preheat_m1_e0);
  1131. MENU_ITEM(function, MSG_PREHEAT_1_END " " MSG_E1, lcd_preheat_m1_e0_only);
  1132. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H2, lcd_preheat_m1_e1);
  1133. MENU_ITEM(function, MSG_PREHEAT_1_END " " MSG_E2, lcd_preheat_m1_e1_only);
  1134. #else
  1135. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H1, lcd_preheat_m1_e0_only);
  1136. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H2, lcd_preheat_m1_e1_only);
  1137. #endif
  1138. #if HOTENDS > 2
  1139. #if TEMP_SENSOR_BED != 0
  1140. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H3, lcd_preheat_m1_e2);
  1141. MENU_ITEM(function, MSG_PREHEAT_1_END " " MSG_E3, lcd_preheat_m1_e2_only);
  1142. #else
  1143. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H3, lcd_preheat_m1_e2_only);
  1144. #endif
  1145. #if HOTENDS > 3
  1146. #if TEMP_SENSOR_BED != 0
  1147. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H4, lcd_preheat_m1_e3);
  1148. MENU_ITEM(function, MSG_PREHEAT_1_END " " MSG_E4, lcd_preheat_m1_e3_only);
  1149. #else
  1150. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H4, lcd_preheat_m1_e3_only);
  1151. #endif
  1152. #if HOTENDS > 4
  1153. #if TEMP_SENSOR_BED != 0
  1154. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H5, lcd_preheat_m1_e4);
  1155. MENU_ITEM(function, MSG_PREHEAT_1_END " " MSG_E5, lcd_preheat_m1_e4_only);
  1156. #else
  1157. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H5, lcd_preheat_m1_e4_only);
  1158. #endif
  1159. #endif // HOTENDS > 4
  1160. #endif // HOTENDS > 3
  1161. #endif // HOTENDS > 2
  1162. MENU_ITEM(function, MSG_PREHEAT_1_ALL, lcd_preheat_m1_all);
  1163. #endif // HOTENDS > 1
  1164. #if TEMP_SENSOR_BED != 0
  1165. MENU_ITEM(function, MSG_PREHEAT_1_BEDONLY, lcd_preheat_m1_bedonly);
  1166. #endif
  1167. END_MENU();
  1168. }
  1169. void lcd_preheat_m2_menu() {
  1170. START_MENU();
  1171. MENU_BACK(MSG_PREPARE);
  1172. #if HOTENDS == 1
  1173. #if TEMP_SENSOR_BED != 0
  1174. MENU_ITEM(function, MSG_PREHEAT_2, lcd_preheat_m2_e0);
  1175. MENU_ITEM(function, MSG_PREHEAT_2_END, lcd_preheat_m2_e0_only);
  1176. #else
  1177. MENU_ITEM(function, MSG_PREHEAT_2, lcd_preheat_m2_e0_only);
  1178. #endif
  1179. #else
  1180. #if TEMP_SENSOR_BED != 0
  1181. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H1, lcd_preheat_m2_e0);
  1182. MENU_ITEM(function, MSG_PREHEAT_2_END " " MSG_E1, lcd_preheat_m2_e0_only);
  1183. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H2, lcd_preheat_m2_e1);
  1184. MENU_ITEM(function, MSG_PREHEAT_2_END " " MSG_E2, lcd_preheat_m2_e1_only);
  1185. #else
  1186. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H1, lcd_preheat_m2_e0_only);
  1187. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H2, lcd_preheat_m2_e1_only);
  1188. #endif
  1189. #if HOTENDS > 2
  1190. #if TEMP_SENSOR_BED != 0
  1191. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H3, lcd_preheat_m2_e2);
  1192. MENU_ITEM(function, MSG_PREHEAT_2_END " " MSG_E3, lcd_preheat_m2_e2_only);
  1193. #else
  1194. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H3, lcd_preheat_m2_e2_only);
  1195. #endif
  1196. #if HOTENDS > 3
  1197. #if TEMP_SENSOR_BED != 0
  1198. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H4, lcd_preheat_m2_e3);
  1199. MENU_ITEM(function, MSG_PREHEAT_2_END " " MSG_E4, lcd_preheat_m2_e3_only);
  1200. #else
  1201. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H4, lcd_preheat_m2_e3_only);
  1202. #endif
  1203. #if HOTENDS > 4
  1204. #if TEMP_SENSOR_BED != 0
  1205. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H5, lcd_preheat_m2_e4);
  1206. MENU_ITEM(function, MSG_PREHEAT_2_END " " MSG_E5, lcd_preheat_m2_e4_only);
  1207. #else
  1208. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H5, lcd_preheat_m2_e4_only);
  1209. #endif
  1210. #endif // HOTENDS > 4
  1211. #endif // HOTENDS > 3
  1212. #endif // HOTENDS > 2
  1213. MENU_ITEM(function, MSG_PREHEAT_2_ALL, lcd_preheat_m2_all);
  1214. #endif // HOTENDS > 1
  1215. #if TEMP_SENSOR_BED != 0
  1216. MENU_ITEM(function, MSG_PREHEAT_2_BEDONLY, lcd_preheat_m2_bedonly);
  1217. #endif
  1218. END_MENU();
  1219. }
  1220. #endif // TEMP_SENSOR_0 && (TEMP_SENSOR_1 || TEMP_SENSOR_2 || TEMP_SENSOR_3 || TEMP_SENSOR_4 || TEMP_SENSOR_BED)
  1221. void lcd_cooldown() {
  1222. #if FAN_COUNT > 0
  1223. for (uint8_t i = 0; i < FAN_COUNT; i++) fanSpeeds[i] = 0;
  1224. #endif
  1225. thermalManager.disable_all_heaters();
  1226. lcd_return_to_status();
  1227. }
  1228. #if ENABLED(SDSUPPORT) && ENABLED(MENU_ADDAUTOSTART)
  1229. void lcd_autostart_sd() {
  1230. card.autostart_index = 0;
  1231. card.setroot();
  1232. card.checkautostart(true);
  1233. }
  1234. #endif
  1235. #if ENABLED(EEPROM_SETTINGS)
  1236. static void lcd_store_settings() { lcd_completion_feedback(settings.save()); }
  1237. static void lcd_load_settings() { lcd_completion_feedback(settings.load()); }
  1238. #endif
  1239. #if ENABLED(LCD_BED_LEVELING)
  1240. /**
  1241. *
  1242. * "Prepare" > "Level Bed" handlers
  1243. *
  1244. */
  1245. static uint8_t manual_probe_index;
  1246. // LCD probed points are from defaults
  1247. constexpr uint8_t total_probe_points = (
  1248. #if ENABLED(AUTO_BED_LEVELING_3POINT)
  1249. 3
  1250. #elif ABL_GRID || ENABLED(MESH_BED_LEVELING)
  1251. GRID_MAX_POINTS
  1252. #endif
  1253. );
  1254. //
  1255. // Raise Z to the "manual probe height"
  1256. // Don't return until done.
  1257. // ** This blocks the command queue! **
  1258. //
  1259. void _lcd_after_probing() {
  1260. #if MANUAL_PROBE_HEIGHT > 0
  1261. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS) + MANUAL_PROBE_HEIGHT;
  1262. line_to_current(Z_AXIS);
  1263. #endif
  1264. // Display "Done" screen and wait for moves to complete
  1265. #if MANUAL_PROBE_HEIGHT > 0 || ENABLED(MESH_BED_LEVELING)
  1266. lcd_synchronize(PSTR(MSG_LEVEL_BED_DONE));
  1267. #endif
  1268. lcd_goto_previous_menu();
  1269. lcd_completion_feedback();
  1270. defer_return_to_status = false;
  1271. //LCD_MESSAGEPGM(MSG_LEVEL_BED_DONE);
  1272. }
  1273. #if ENABLED(MESH_BED_LEVELING)
  1274. // Utility to go to the next mesh point
  1275. inline void _manual_probe_goto_xy(float x, float y) {
  1276. #if MANUAL_PROBE_HEIGHT > 0
  1277. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS) + MANUAL_PROBE_HEIGHT;
  1278. line_to_current(Z_AXIS);
  1279. #endif
  1280. current_position[X_AXIS] = LOGICAL_X_POSITION(x);
  1281. current_position[Y_AXIS] = LOGICAL_Y_POSITION(y);
  1282. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(XY_PROBE_SPEED), active_extruder);
  1283. #if MANUAL_PROBE_HEIGHT > 0
  1284. current_position[Z_AXIS] = LOGICAL_Z_POSITION(Z_MIN_POS);
  1285. line_to_current(Z_AXIS);
  1286. #endif
  1287. lcd_synchronize();
  1288. }
  1289. #elif ENABLED(PROBE_MANUALLY)
  1290. bool lcd_wait_for_move;
  1291. //
  1292. // Bed leveling is done. Wait for G29 to complete.
  1293. // A flag is used so that this can release control
  1294. // and allow the command queue to be processed.
  1295. //
  1296. void _lcd_level_bed_done() {
  1297. if (!lcd_wait_for_move) _lcd_after_probing();
  1298. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(MSG_LEVEL_BED_DONE));
  1299. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  1300. }
  1301. #endif
  1302. void _lcd_level_goto_next_point();
  1303. /**
  1304. * Step 7: Get the Z coordinate, click goes to the next point or exits
  1305. */
  1306. void _lcd_level_bed_get_z() {
  1307. ENCODER_DIRECTION_NORMAL();
  1308. if (lcd_clicked) {
  1309. //
  1310. // Save the current Z position
  1311. //
  1312. #if ENABLED(MESH_BED_LEVELING)
  1313. //
  1314. // MBL records the position but doesn't move to the next one
  1315. //
  1316. mbl.set_zigzag_z(manual_probe_index, current_position[Z_AXIS]);
  1317. #endif
  1318. // If done...
  1319. if (++manual_probe_index >= total_probe_points) {
  1320. #if ENABLED(PROBE_MANUALLY)
  1321. //
  1322. // The last G29 will record and enable but not move.
  1323. // Since G29 is deferred,
  1324. //
  1325. lcd_wait_for_move = true;
  1326. enqueue_and_echo_commands_P(PSTR("G29 V1"));
  1327. lcd_goto_screen(_lcd_level_bed_done);
  1328. #elif ENABLED(MESH_BED_LEVELING)
  1329. _lcd_after_probing();
  1330. mbl.set_has_mesh(true);
  1331. mesh_probing_done();
  1332. #endif
  1333. }
  1334. else {
  1335. // MESH_BED_LEVELING: Z already stored, just move
  1336. // PROBE_MANUALLY: Send G29 to record Z, then move
  1337. _lcd_level_goto_next_point();
  1338. }
  1339. return;
  1340. }
  1341. //
  1342. // Encoder knob or keypad buttons adjust the Z position
  1343. //
  1344. if (encoderPosition) {
  1345. refresh_cmd_timeout();
  1346. current_position[Z_AXIS] += float((int32_t)encoderPosition) * (MBL_Z_STEP);
  1347. NOLESS(current_position[Z_AXIS], -(LCD_PROBE_Z_RANGE) * 0.5);
  1348. NOMORE(current_position[Z_AXIS], (LCD_PROBE_Z_RANGE) * 0.5);
  1349. line_to_current(Z_AXIS);
  1350. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  1351. encoderPosition = 0;
  1352. }
  1353. //
  1354. // Draw on first display, then only on Z change
  1355. //
  1356. if (lcdDrawUpdate) {
  1357. const float v = current_position[Z_AXIS];
  1358. lcd_implementation_drawedit(PSTR(MSG_MOVE_Z), ftostr43sign(v + (v < 0 ? -0.0001 : 0.0001), '+'));
  1359. }
  1360. }
  1361. /**
  1362. * Step 6: Display "Next point: 1 / 9" while waiting for move to finish
  1363. */
  1364. void _lcd_level_bed_moving() {
  1365. if (lcdDrawUpdate) {
  1366. char msg[10];
  1367. sprintf_P(msg, PSTR("%i / %u"), (int)(manual_probe_index + 1), total_probe_points);
  1368. lcd_implementation_drawedit(PSTR(MSG_LEVEL_BED_NEXT_POINT), msg);
  1369. }
  1370. lcdDrawUpdate = LCDVIEW_CALL_NO_REDRAW;
  1371. #if ENABLED(PROBE_MANUALLY)
  1372. if (!lcd_wait_for_move) lcd_goto_screen(_lcd_level_bed_get_z);
  1373. #endif
  1374. }
  1375. /**
  1376. * Step 5: Initiate a move to the next point
  1377. */
  1378. void _lcd_level_goto_next_point() {
  1379. // Set the menu to display ahead of blocking call
  1380. lcd_goto_screen(_lcd_level_bed_moving);
  1381. #if ENABLED(MESH_BED_LEVELING)
  1382. int8_t px, py;
  1383. mbl.zigzag(manual_probe_index, px, py);
  1384. // Controls the loop until the move is done
  1385. _manual_probe_goto_xy(
  1386. LOGICAL_X_POSITION(mbl.index_to_xpos[px]),
  1387. LOGICAL_Y_POSITION(mbl.index_to_ypos[py])
  1388. );
  1389. // After the blocking function returns, change menus
  1390. lcd_goto_screen(_lcd_level_bed_get_z);
  1391. #elif ENABLED(PROBE_MANUALLY)
  1392. // G29 Records Z, moves, and signals when it pauses
  1393. lcd_wait_for_move = true;
  1394. enqueue_and_echo_commands_P(PSTR("G29 V1"));
  1395. #endif
  1396. }
  1397. /**
  1398. * Step 4: Display "Click to Begin", wait for click
  1399. * Move to the first probe position
  1400. */
  1401. void _lcd_level_bed_homing_done() {
  1402. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(MSG_LEVEL_BED_WAITING));
  1403. if (lcd_clicked) {
  1404. manual_probe_index = 0;
  1405. _lcd_level_goto_next_point();
  1406. }
  1407. }
  1408. /**
  1409. * Step 3: Display "Homing XYZ" - Wait for homing to finish
  1410. */
  1411. void _lcd_level_bed_homing() {
  1412. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(MSG_LEVEL_BED_HOMING), NULL);
  1413. lcdDrawUpdate = LCDVIEW_CALL_NO_REDRAW;
  1414. if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
  1415. lcd_goto_screen(_lcd_level_bed_homing_done);
  1416. }
  1417. #if ENABLED(PROBE_MANUALLY)
  1418. extern bool g29_in_progress;
  1419. #endif
  1420. /**
  1421. * Step 2: Continue Bed Leveling...
  1422. */
  1423. void _lcd_level_bed_continue() {
  1424. defer_return_to_status = true;
  1425. axis_homed[X_AXIS] = axis_homed[Y_AXIS] = axis_homed[Z_AXIS] = false;
  1426. lcd_goto_screen(_lcd_level_bed_homing);
  1427. enqueue_and_echo_commands_P(PSTR("G28"));
  1428. }
  1429. static bool _level_state;
  1430. void _lcd_toggle_bed_leveling() { set_bed_leveling_enabled(_level_state); }
  1431. void _lcd_set_z_fade_height() { set_z_fade_height(planner.z_fade_height); }
  1432. /**
  1433. * Step 1: Bed Level entry-point
  1434. * - Cancel
  1435. * - Auto Home (if homing needed)
  1436. * - Leveling On/Off (if data exists, and homed)
  1437. * - Level Bed >
  1438. * - Fade Height (Req: ENABLE_LEVELING_FADE_HEIGHT)
  1439. * - Mesh Z Offset (Req: MESH_BED_LEVELING)
  1440. * - Z Probe Offset (Req: HAS_BED_PROBE, Opt: BABYSTEP_ZPROBE_OFFSET)
  1441. * - Load Settings (Req: EEPROM_SETTINGS)
  1442. * - Save Settings (Req: EEPROM_SETTINGS)
  1443. */
  1444. void lcd_bed_leveling() {
  1445. START_MENU();
  1446. MENU_BACK(MSG_PREPARE);
  1447. if (!(axis_known_position[X_AXIS] && axis_known_position[Y_AXIS] && axis_known_position[Z_AXIS]))
  1448. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  1449. else if (leveling_is_valid()) {
  1450. _level_state = leveling_is_active();
  1451. MENU_ITEM_EDIT_CALLBACK(bool, MSG_BED_LEVELING, &_level_state, _lcd_toggle_bed_leveling);
  1452. }
  1453. #if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
  1454. set_z_fade_height(planner.z_fade_height);
  1455. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_Z_FADE_HEIGHT, &planner.z_fade_height, 0.0, 100.0, _lcd_set_z_fade_height);
  1456. #endif
  1457. //
  1458. // MBL Z Offset
  1459. //
  1460. #if ENABLED(MESH_BED_LEVELING)
  1461. MENU_ITEM_EDIT(float43, MSG_BED_Z, &mbl.z_offset, -1, 1);
  1462. #endif
  1463. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  1464. MENU_ITEM(submenu, MSG_ZPROBE_ZOFFSET, lcd_babystep_zoffset);
  1465. #elif HAS_BED_PROBE
  1466. MENU_ITEM_EDIT_CALLBACK(float32, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX, lcd_refresh_zprobe_zoffset);
  1467. #endif
  1468. MENU_ITEM(submenu, MSG_LEVEL_BED, _lcd_level_bed_continue);
  1469. #if ENABLED(EEPROM_SETTINGS)
  1470. MENU_ITEM(function, MSG_LOAD_EEPROM, lcd_load_settings);
  1471. MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
  1472. #endif
  1473. END_MENU();
  1474. }
  1475. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  1476. void _lcd_ubl_level_bed();
  1477. static int ubl_storage_slot = 0,
  1478. custom_bed_temp = 50,
  1479. custom_hotend_temp = 190,
  1480. side_points = 3,
  1481. ubl_fillin_amount = 5,
  1482. ubl_height_amount,
  1483. map_type;
  1484. /**
  1485. * UBL Build Custom Mesh Command
  1486. */
  1487. void _lcd_ubl_build_custom_mesh() {
  1488. char UBL_LCD_GCODE[20];
  1489. enqueue_and_echo_commands_P(PSTR("G28"));
  1490. #if WATCH_THE_BED
  1491. sprintf_P(UBL_LCD_GCODE, PSTR("M190 S%i"), custom_bed_temp);
  1492. enqueue_and_echo_command(UBL_LCD_GCODE);
  1493. #endif
  1494. sprintf_P(UBL_LCD_GCODE, PSTR("M109 S%i"), custom_hotend_temp);
  1495. enqueue_and_echo_command(UBL_LCD_GCODE);
  1496. enqueue_and_echo_commands_P(PSTR("G29 P1"));
  1497. }
  1498. /**
  1499. * UBL Custom Mesh submenu
  1500. */
  1501. void _lcd_ubl_custom_mesh() {
  1502. START_MENU();
  1503. MENU_BACK(MSG_UBL_BUILD_MESH_MENU);
  1504. MENU_ITEM_EDIT(int3, MSG_UBL_CUSTOM_HOTEND_TEMP, &custom_hotend_temp, EXTRUDE_MINTEMP, (HEATER_0_MAXTEMP - 10));
  1505. #if WATCH_THE_BED
  1506. MENU_ITEM_EDIT(int3, MSG_UBL_CUSTOM_BED_TEMP, &custom_bed_temp, BED_MINTEMP, (BED_MAXTEMP - 5));
  1507. #endif
  1508. MENU_ITEM(function, MSG_UBL_BUILD_CUSTOM_MESH, _lcd_ubl_build_custom_mesh);
  1509. END_MENU();
  1510. }
  1511. /**
  1512. * UBL Adjust Mesh Height Command
  1513. */
  1514. void _lcd_ubl_adjust_height_cmd() {
  1515. char UBL_LCD_GCODE[16];
  1516. const int ind = ubl_height_amount < 0 ? 6 : 7;
  1517. strcpy_P(UBL_LCD_GCODE, PSTR("G29 P6-"));
  1518. sprintf_P(&UBL_LCD_GCODE[ind], PSTR(".%i"), abs(ubl_height_amount));
  1519. enqueue_and_echo_command(UBL_LCD_GCODE);
  1520. }
  1521. /**
  1522. * UBL Adjust Mesh Height submenu
  1523. */
  1524. void _lcd_ubl_height_adjust_menu() {
  1525. START_MENU();
  1526. MENU_BACK(MSG_UBL_EDIT_MESH_MENU);
  1527. MENU_ITEM_EDIT(int3, MSG_UBL_MESH_HEIGHT_AMOUNT, &ubl_height_amount, -9, 9);
  1528. MENU_ITEM(function, MSG_UBL_MESH_HEIGHT_ADJUST, _lcd_ubl_adjust_height_cmd);
  1529. MENU_ITEM(submenu, MSG_WATCH, lcd_status_screen);
  1530. END_MENU();
  1531. }
  1532. /**
  1533. * UBL Edit Mesh submenu
  1534. */
  1535. void _lcd_ubl_edit_mesh() {
  1536. START_MENU();
  1537. MENU_BACK(MSG_UBL_TOOLS);
  1538. MENU_BACK(MSG_UBL_LEVEL_BED);
  1539. MENU_ITEM(gcode, MSG_UBL_FINE_TUNE_ALL, PSTR("G29 P4 R T"));
  1540. MENU_ITEM(gcode, MSG_UBL_FINE_TUNE_CLOSEST, PSTR("G29 P4 T"));
  1541. MENU_ITEM(submenu, MSG_UBL_MESH_HEIGHT_ADJUST, _lcd_ubl_height_adjust_menu);
  1542. MENU_ITEM(submenu, MSG_WATCH, lcd_status_screen);
  1543. END_MENU();
  1544. }
  1545. /**
  1546. * UBL Validate Custom Mesh Command
  1547. */
  1548. void _lcd_ubl_validate_custom_mesh() {
  1549. char UBL_LCD_GCODE[24];
  1550. const int temp =
  1551. #if WATCH_THE_BED
  1552. custom_bed_temp
  1553. #else
  1554. 0
  1555. #endif
  1556. ;
  1557. sprintf_P(UBL_LCD_GCODE, PSTR("G28\nG26 C B%i H%i P"), temp, custom_hotend_temp);
  1558. enqueue_and_echo_command(UBL_LCD_GCODE);
  1559. }
  1560. /**
  1561. * UBL Validate Mesh submenu
  1562. */
  1563. void _lcd_ubl_validate_mesh() {
  1564. START_MENU();
  1565. MENU_BACK(MSG_UBL_TOOLS);
  1566. #if WATCH_THE_BED
  1567. MENU_ITEM(gcode, MSG_UBL_VALIDATE_PLA_MESH, PSTR("G28\nG26 C B" STRINGIFY(PREHEAT_1_TEMP_BED) " H" STRINGIFY(PREHEAT_1_TEMP_HOTEND) " P"));
  1568. MENU_ITEM(gcode, MSG_UBL_VALIDATE_ABS_MESH, PSTR("G28\nG26 C B" STRINGIFY(PREHEAT_2_TEMP_BED) " H" STRINGIFY(PREHEAT_2_TEMP_HOTEND) " P"));
  1569. #else
  1570. MENU_ITEM(gcode, MSG_UBL_VALIDATE_PLA_MESH, PSTR("G28\nG26 C B0 H" STRINGIFY(PREHEAT_1_TEMP_HOTEND) " P"));
  1571. MENU_ITEM(gcode, MSG_UBL_VALIDATE_ABS_MESH, PSTR("G28\nG26 C B0 H" STRINGIFY(PREHEAT_2_TEMP_HOTEND) " P"));
  1572. #endif
  1573. MENU_ITEM(function, MSG_UBL_VALIDATE_CUSTOM_MESH, _lcd_ubl_validate_custom_mesh);
  1574. MENU_ITEM(submenu, MSG_WATCH, lcd_status_screen);
  1575. END_MENU();
  1576. }
  1577. /**
  1578. * UBL Grid Leveling Command
  1579. */
  1580. void _lcd_ubl_grid_level_cmd() {
  1581. char UBL_LCD_GCODE[10];
  1582. sprintf_P(UBL_LCD_GCODE, PSTR("G29 J%i"), side_points);
  1583. enqueue_and_echo_command(UBL_LCD_GCODE);
  1584. }
  1585. /**
  1586. * UBL Grid Leveling submenu
  1587. */
  1588. void _lcd_ubl_grid_level() {
  1589. START_MENU();
  1590. MENU_BACK(MSG_UBL_TOOLS);
  1591. MENU_ITEM_EDIT(int3, MSG_UBL_SIDE_POINTS, &side_points, 2, 6);
  1592. MENU_ITEM(function, MSG_UBL_MESH_LEVEL, _lcd_ubl_grid_level_cmd);
  1593. END_MENU();
  1594. }
  1595. /**
  1596. * UBL Mesh Leveling submenu
  1597. */
  1598. void _lcd_ubl_mesh_leveling() {
  1599. START_MENU();
  1600. MENU_BACK(MSG_UBL_TOOLS);
  1601. MENU_ITEM(gcode, MSG_UBL_3POINT_MESH_LEVELING, PSTR("G29 J0"));
  1602. MENU_ITEM(submenu, MSG_UBL_GRID_MESH_LEVELING, _lcd_ubl_grid_level);
  1603. MENU_ITEM(submenu, MSG_WATCH, lcd_status_screen);
  1604. END_MENU();
  1605. }
  1606. /**
  1607. * UBL Fill-in Amount Mesh Command
  1608. */
  1609. void _lcd_ubl_fillin_amount_cmd() {
  1610. char UBL_LCD_GCODE[16];
  1611. sprintf_P(UBL_LCD_GCODE, PSTR("G29 P3 R C.%i"), ubl_fillin_amount);
  1612. enqueue_and_echo_command(UBL_LCD_GCODE);
  1613. }
  1614. /**
  1615. * UBL Smart Fill-in Command
  1616. */
  1617. void _lcd_ubl_smart_fillin_cmd() {
  1618. char UBL_LCD_GCODE[12];
  1619. sprintf_P(UBL_LCD_GCODE, PSTR("G29 P3 T%i"), map_type);
  1620. enqueue_and_echo_command(UBL_LCD_GCODE);
  1621. }
  1622. /**
  1623. * UBL Fill-in Mesh submenu
  1624. */
  1625. void _lcd_ubl_fillin_menu() {
  1626. START_MENU();
  1627. MENU_BACK(MSG_UBL_BUILD_MESH_MENU);
  1628. MENU_ITEM_EDIT(int3, MSG_UBL_FILLIN_AMOUNT, &ubl_fillin_amount, 0, 9);
  1629. MENU_ITEM(function, MSG_UBL_FILLIN_MESH, _lcd_ubl_fillin_amount_cmd);
  1630. MENU_ITEM(function, MSG_UBL_SMART_FILLIN, _lcd_ubl_smart_fillin_cmd);
  1631. MENU_ITEM(gcode, MSG_UBL_MANUAL_FILLIN, PSTR("G29 P2 B T0"));
  1632. MENU_ITEM(submenu, MSG_WATCH, lcd_status_screen);
  1633. END_MENU();
  1634. }
  1635. void _lcd_ubl_invalidate() {
  1636. ubl.invalidate();
  1637. SERIAL_PROTOCOLLNPGM("Mesh invalidated.");
  1638. }
  1639. /**
  1640. * UBL Build Mesh submenu
  1641. */
  1642. void _lcd_ubl_build_mesh() {
  1643. START_MENU();
  1644. MENU_BACK(MSG_UBL_TOOLS);
  1645. #if WATCH_THE_BED
  1646. MENU_ITEM(gcode, MSG_UBL_BUILD_PLA_MESH, PSTR(
  1647. "G28\n"
  1648. "M190 S" STRINGIFY(PREHEAT_1_TEMP_BED) "\n"
  1649. "M109 S" STRINGIFY(PREHEAT_1_TEMP_HOTEND) "\n"
  1650. "G29 P1\n"
  1651. "M104 S0\n"
  1652. "M140 S0"
  1653. ));
  1654. MENU_ITEM(gcode, MSG_UBL_BUILD_ABS_MESH, PSTR(
  1655. "G28\n"
  1656. "M190 S" STRINGIFY(PREHEAT_2_TEMP_BED) "\n"
  1657. "M109 S" STRINGIFY(PREHEAT_2_TEMP_HOTEND) "\n"
  1658. "G29 P1\n"
  1659. "M104 S0\n"
  1660. "M140 S0"
  1661. ));
  1662. #else
  1663. MENU_ITEM(gcode, MSG_UBL_BUILD_PLA_MESH, PSTR(
  1664. "G28\n"
  1665. "M109 S" STRINGIFY(PREHEAT_1_TEMP_HOTEND) "\n"
  1666. "G29 P1\n"
  1667. "M104 S0"
  1668. ));
  1669. MENU_ITEM(gcode, MSG_UBL_BUILD_ABS_MESH, PSTR(
  1670. "G28\n"
  1671. "M109 S" STRINGIFY(PREHEAT_2_TEMP_HOTEND) "\n"
  1672. "G29 P1\n"
  1673. "M104 S0"
  1674. ));
  1675. #endif
  1676. MENU_ITEM(submenu, MSG_UBL_BUILD_CUSTOM_MESH, _lcd_ubl_custom_mesh);
  1677. MENU_ITEM(gcode, MSG_UBL_BUILD_COLD_MESH, PSTR("G28\nG29 P1"));
  1678. MENU_ITEM(submenu, MSG_UBL_FILLIN_MESH, _lcd_ubl_fillin_menu);
  1679. MENU_ITEM(gcode, MSG_UBL_CONTINUE_MESH, PSTR("G29 P1 C"));
  1680. MENU_ITEM(function, MSG_UBL_INVALIDATE_ALL, _lcd_ubl_invalidate);
  1681. MENU_ITEM(gcode, MSG_UBL_INVALIDATE_CLOSEST, PSTR("G29 I"));
  1682. MENU_ITEM(submenu, MSG_WATCH, lcd_status_screen);
  1683. END_MENU();
  1684. }
  1685. /**
  1686. * UBL Load Mesh Command
  1687. */
  1688. void _lcd_ubl_load_mesh_cmd() {
  1689. char UBL_LCD_GCODE[8];
  1690. sprintf_P(UBL_LCD_GCODE, PSTR("G29 L%i"), ubl_storage_slot);
  1691. enqueue_and_echo_command(UBL_LCD_GCODE);
  1692. }
  1693. /**
  1694. * UBL Save Mesh Command
  1695. */
  1696. void _lcd_ubl_save_mesh_cmd() {
  1697. char UBL_LCD_GCODE[8];
  1698. sprintf_P(UBL_LCD_GCODE, PSTR("G29 S%i"), ubl_storage_slot);
  1699. enqueue_and_echo_command(UBL_LCD_GCODE);
  1700. }
  1701. /**
  1702. * UBL Mesh Storage submenu
  1703. */
  1704. void _lcd_ubl_storage_mesh() {
  1705. START_MENU();
  1706. MENU_BACK(MSG_UBL_LEVEL_BED);
  1707. MENU_ITEM_EDIT(int3, MSG_UBL_STORAGE_SLOT, &ubl_storage_slot, 0, 9);
  1708. MENU_ITEM(function, MSG_UBL_LOAD_MESH, _lcd_ubl_load_mesh_cmd);
  1709. MENU_ITEM(function, MSG_UBL_SAVE_MESH, _lcd_ubl_save_mesh_cmd);
  1710. END_MENU();
  1711. }
  1712. /**
  1713. * UBL Output map Command
  1714. */
  1715. void _lcd_ubl_output_map_cmd() {
  1716. char UBL_LCD_GCODE[10];
  1717. sprintf_P(UBL_LCD_GCODE, PSTR("G29 T%i"), map_type);
  1718. enqueue_and_echo_command(UBL_LCD_GCODE);
  1719. }
  1720. /**
  1721. * UBL Output map submenu
  1722. */
  1723. void _lcd_ubl_output_map() {
  1724. START_MENU();
  1725. MENU_BACK(MSG_UBL_LEVEL_BED);
  1726. MENU_ITEM_EDIT(int3, MSG_UBL_MAP_TYPE, &map_type, 0, 1);
  1727. if (map_type == 0) MENU_ITEM(function, MSG_UBL_OUTPUT_MAP_HOST, _lcd_ubl_output_map_cmd);
  1728. if (map_type == 1) MENU_ITEM(function, MSG_UBL_OUTPUT_MAP_CSV, _lcd_ubl_output_map_cmd);
  1729. END_MENU();
  1730. }
  1731. /**
  1732. * UBL Tools submenu
  1733. */
  1734. void _lcd_ubl_tools_menu() {
  1735. START_MENU();
  1736. MENU_BACK(MSG_UBL_LEVEL_BED);
  1737. MENU_ITEM(submenu, MSG_UBL_BUILD_MESH_MENU, _lcd_ubl_build_mesh);
  1738. MENU_ITEM(submenu, MSG_UBL_VALIDATE_MESH_MENU, _lcd_ubl_validate_mesh);
  1739. MENU_ITEM(submenu, MSG_UBL_EDIT_MESH_MENU, _lcd_ubl_edit_mesh);
  1740. MENU_ITEM(submenu, MSG_UBL_MESH_LEVELING, _lcd_ubl_mesh_leveling);
  1741. END_MENU();
  1742. }
  1743. /**
  1744. * UBL System submenu
  1745. *
  1746. * Prepare
  1747. * - Unified Bed Leveling
  1748. * - Activate UBL
  1749. * - Deactivate UBL
  1750. * - Mesh Storage
  1751. * Memory Slot:
  1752. * Load Bed Mesh
  1753. * Save Bed Mesh
  1754. * - Output Map
  1755. * Map Type:
  1756. * Output Bed Mesh Host / Output Bed Mesh CSV
  1757. * - UBL Tools
  1758. * - Build Mesh
  1759. * Build PLA Mesh
  1760. * Build ABS Mesh
  1761. * - Build Custom Mesh
  1762. * Hotend Temp:
  1763. * Bed Temp:
  1764. * Build Custom Mesh
  1765. * Info Screen
  1766. * - Build Cold Mesh
  1767. * - Fill-in Mesh
  1768. * Fill-in Mesh
  1769. * Smart Fill-in
  1770. * Manual Fill-in
  1771. * Info Screen
  1772. * Continue Bed Mesh
  1773. * Invalidate All
  1774. * Invalidate Closest
  1775. * - Validate Mesh
  1776. * PLA Mesh Validation
  1777. * ABS Mesh Validation
  1778. * - Custom Mesh Validation
  1779. * Hotend Temp:
  1780. * Bed Temp:
  1781. * Validate Mesh
  1782. * Info Screen
  1783. * - Edit Mesh
  1784. * Fine Tune All
  1785. * Fine Tune Closest
  1786. * - Adjust Mesh Height
  1787. * Height Amount:
  1788. * Adjust Mesh Height
  1789. * Info Screen
  1790. * - Mesh Leveling
  1791. * 3-Point Mesh Leveling
  1792. * - Grid Mesh Leveling
  1793. * Side points:
  1794. * Level Mesh
  1795. * Info Screen
  1796. * - Output UBL Info
  1797. */
  1798. void _lcd_ubl_level_bed() {
  1799. START_MENU();
  1800. MENU_BACK(MSG_PREPARE);
  1801. MENU_ITEM(gcode, MSG_UBL_ACTIVATE_MESH, PSTR("G29 A"));
  1802. MENU_ITEM(gcode, MSG_UBL_DEACTIVATE_MESH, PSTR("G29 D"));
  1803. MENU_ITEM(submenu, MSG_UBL_STORAGE_MESH_MENU, _lcd_ubl_storage_mesh);
  1804. MENU_ITEM(submenu, MSG_UBL_OUTPUT_MAP, _lcd_ubl_output_map);
  1805. MENU_ITEM(submenu, MSG_UBL_TOOLS, _lcd_ubl_tools_menu);
  1806. MENU_ITEM(gcode, MSG_UBL_INFO_UBL, PSTR("G29 W"));
  1807. END_MENU();
  1808. }
  1809. #endif // AUTO_BED_LEVELING_UBL
  1810. /**
  1811. *
  1812. * "Prepare" submenu
  1813. *
  1814. */
  1815. void lcd_prepare_menu() {
  1816. START_MENU();
  1817. //
  1818. // ^ Main
  1819. //
  1820. MENU_BACK(MSG_MAIN);
  1821. //
  1822. // Move Axis
  1823. //
  1824. #if ENABLED(DELTA)
  1825. if (axis_homed[Z_AXIS])
  1826. #endif
  1827. MENU_ITEM(submenu, MSG_MOVE_AXIS, lcd_move_menu);
  1828. //
  1829. // Auto Home
  1830. //
  1831. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  1832. #if ENABLED(INDIVIDUAL_AXIS_HOMING_MENU)
  1833. MENU_ITEM(gcode, MSG_AUTO_HOME_X, PSTR("G28 X"));
  1834. MENU_ITEM(gcode, MSG_AUTO_HOME_Y, PSTR("G28 Y"));
  1835. MENU_ITEM(gcode, MSG_AUTO_HOME_Z, PSTR("G28 Z"));
  1836. #endif
  1837. //
  1838. // Level Bed
  1839. //
  1840. #if ENABLED(AUTO_BED_LEVELING_UBL)
  1841. MENU_ITEM(submenu, MSG_UBL_LEVEL_BED, _lcd_ubl_level_bed);
  1842. #elif ENABLED(LCD_BED_LEVELING)
  1843. #if ENABLED(PROBE_MANUALLY)
  1844. if (!g29_in_progress)
  1845. #endif
  1846. MENU_ITEM(submenu, MSG_BED_LEVELING, lcd_bed_leveling);
  1847. #endif
  1848. #if HAS_M206_COMMAND
  1849. //
  1850. // Set Home Offsets
  1851. //
  1852. MENU_ITEM(function, MSG_SET_HOME_OFFSETS, lcd_set_home_offsets);
  1853. //MENU_ITEM(gcode, MSG_SET_ORIGIN, PSTR("G92 X0 Y0 Z0"));
  1854. #endif
  1855. //
  1856. // Disable Steppers
  1857. //
  1858. MENU_ITEM(gcode, MSG_DISABLE_STEPPERS, PSTR("M84"));
  1859. //
  1860. // Change filament
  1861. //
  1862. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  1863. if (!thermalManager.tooColdToExtrude(active_extruder))
  1864. MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
  1865. #endif
  1866. #if TEMP_SENSOR_0 != 0
  1867. //
  1868. // Cooldown
  1869. //
  1870. bool has_heat = false;
  1871. HOTEND_LOOP() if (thermalManager.target_temperature[HOTEND_INDEX]) { has_heat = true; break; }
  1872. #if HAS_TEMP_BED
  1873. if (thermalManager.target_temperature_bed) has_heat = true;
  1874. #endif
  1875. if (has_heat) MENU_ITEM(function, MSG_COOLDOWN, lcd_cooldown);
  1876. //
  1877. // Preheat for Material 1 and 2
  1878. //
  1879. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_4 != 0 || TEMP_SENSOR_BED != 0
  1880. MENU_ITEM(submenu, MSG_PREHEAT_1, lcd_preheat_m1_menu);
  1881. MENU_ITEM(submenu, MSG_PREHEAT_2, lcd_preheat_m2_menu);
  1882. #else
  1883. MENU_ITEM(function, MSG_PREHEAT_1, lcd_preheat_m1_e0_only);
  1884. MENU_ITEM(function, MSG_PREHEAT_2, lcd_preheat_m2_e0_only);
  1885. #endif
  1886. #endif // TEMP_SENSOR_0 != 0
  1887. //
  1888. // BLTouch Self-Test and Reset
  1889. //
  1890. #if ENABLED(BLTOUCH)
  1891. MENU_ITEM(gcode, MSG_BLTOUCH_SELFTEST, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_SELFTEST)));
  1892. if (!endstops.z_probe_enabled && TEST_BLTOUCH())
  1893. MENU_ITEM(gcode, MSG_BLTOUCH_RESET, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_RESET)));
  1894. #endif
  1895. //
  1896. // Switch power on/off
  1897. //
  1898. #if HAS_POWER_SWITCH
  1899. if (powersupply_on)
  1900. MENU_ITEM(gcode, MSG_SWITCH_PS_OFF, PSTR("M81"));
  1901. else
  1902. MENU_ITEM(gcode, MSG_SWITCH_PS_ON, PSTR("M80"));
  1903. #endif
  1904. //
  1905. // Autostart
  1906. //
  1907. #if ENABLED(SDSUPPORT) && ENABLED(MENU_ADDAUTOSTART)
  1908. MENU_ITEM(function, MSG_AUTOSTART, lcd_autostart_sd);
  1909. #endif
  1910. END_MENU();
  1911. }
  1912. float move_menu_scale;
  1913. #if ENABLED(DELTA_CALIBRATION_MENU)
  1914. void lcd_move_z();
  1915. void lcd_delta_calibrate_menu();
  1916. void _lcd_calibrate_homing() {
  1917. if (lcdDrawUpdate) lcd_implementation_drawmenu_static(LCD_HEIGHT >= 4 ? 1 : 0, PSTR(MSG_LEVEL_BED_HOMING));
  1918. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  1919. if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
  1920. lcd_goto_previous_menu();
  1921. }
  1922. void _lcd_delta_calibrate_home() {
  1923. #if HAS_LEVELING
  1924. reset_bed_level(); // After calibration bed-level data is no longer valid
  1925. #endif
  1926. enqueue_and_echo_commands_P(PSTR("G28"));
  1927. lcd_goto_screen(_lcd_calibrate_homing);
  1928. }
  1929. // Move directly to the tower position with uninterpolated moves
  1930. // If we used interpolated moves it would cause this to become re-entrant
  1931. void _goto_tower_pos(const float &a) {
  1932. #if HAS_LEVELING
  1933. reset_bed_level(); // After calibration bed-level data is no longer valid
  1934. #endif
  1935. current_position[Z_AXIS] = max(Z_HOMING_HEIGHT, Z_CLEARANCE_BETWEEN_PROBES) + (DELTA_PRINTABLE_RADIUS) / 5;
  1936. line_to_current(Z_AXIS);
  1937. current_position[X_AXIS] = a < 0 ? LOGICAL_X_POSITION(X_HOME_POS) : cos(RADIANS(a)) * delta_calibration_radius;
  1938. current_position[Y_AXIS] = a < 0 ? LOGICAL_Y_POSITION(Y_HOME_POS) : sin(RADIANS(a)) * delta_calibration_radius;
  1939. line_to_current(Z_AXIS);
  1940. current_position[Z_AXIS] = 4.0;
  1941. line_to_current(Z_AXIS);
  1942. lcd_synchronize();
  1943. move_menu_scale = 0.1;
  1944. lcd_goto_screen(lcd_move_z);
  1945. }
  1946. void _goto_tower_x() { _goto_tower_pos(210); }
  1947. void _goto_tower_y() { _goto_tower_pos(330); }
  1948. void _goto_tower_z() { _goto_tower_pos(90); }
  1949. void _goto_center() { _goto_tower_pos(-1); }
  1950. void lcd_delta_calibrate_menu() {
  1951. START_MENU();
  1952. MENU_BACK(MSG_MAIN);
  1953. #if ENABLED(DELTA_AUTO_CALIBRATION)
  1954. MENU_ITEM(gcode, MSG_DELTA_AUTO_CALIBRATE, PSTR("G33"));
  1955. MENU_ITEM(gcode, MSG_DELTA_HEIGHT_CALIBRATE, PSTR("G33 P1 A"));
  1956. #endif
  1957. MENU_ITEM(submenu, MSG_AUTO_HOME, _lcd_delta_calibrate_home);
  1958. if (axis_homed[Z_AXIS]) {
  1959. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_X, _goto_tower_x);
  1960. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_Y, _goto_tower_y);
  1961. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_Z, _goto_tower_z);
  1962. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_CENTER, _goto_center);
  1963. }
  1964. END_MENU();
  1965. }
  1966. #endif // DELTA_CALIBRATION_MENU
  1967. /**
  1968. * If the most recent manual move hasn't been fed to the planner yet,
  1969. * and the planner can accept one, send immediately
  1970. */
  1971. inline void manage_manual_move() {
  1972. if (manual_move_axis != (int8_t)NO_AXIS && ELAPSED(millis(), manual_move_start_time) && !planner.is_full()) {
  1973. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(manual_feedrate_mm_m[manual_move_axis]), manual_move_e_index);
  1974. manual_move_axis = (int8_t)NO_AXIS;
  1975. }
  1976. }
  1977. /**
  1978. * Set a flag that lcd_update() should start a move
  1979. * to "current_position" after a short delay.
  1980. */
  1981. inline void manual_move_to_current(AxisEnum axis
  1982. #if E_MANUAL > 1
  1983. , int8_t eindex=-1
  1984. #endif
  1985. ) {
  1986. #if E_MANUAL > 1
  1987. if (axis == E_AXIS) manual_move_e_index = eindex >= 0 ? eindex : active_extruder;
  1988. #endif
  1989. manual_move_start_time = millis() + (move_menu_scale < 0.99 ? 0UL : 250UL); // delay for bigger moves
  1990. manual_move_axis = (int8_t)axis;
  1991. }
  1992. /**
  1993. *
  1994. * "Prepare" > "Move Axis" submenu
  1995. *
  1996. */
  1997. void _lcd_move_xyz(const char* name, AxisEnum axis) {
  1998. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  1999. ENCODER_DIRECTION_NORMAL();
  2000. if (encoderPosition) {
  2001. refresh_cmd_timeout();
  2002. float min = current_position[axis] - 1000,
  2003. max = current_position[axis] + 1000;
  2004. #if HAS_SOFTWARE_ENDSTOPS
  2005. // Limit to software endstops, if enabled
  2006. if (soft_endstops_enabled) {
  2007. #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
  2008. min = soft_endstop_min[axis];
  2009. #endif
  2010. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  2011. max = soft_endstop_max[axis];
  2012. #endif
  2013. }
  2014. #endif
  2015. // Get the new position
  2016. current_position[axis] += float((int32_t)encoderPosition) * move_menu_scale;
  2017. // Delta limits XY based on the current offset from center
  2018. // This assumes the center is 0,0
  2019. #if ENABLED(DELTA)
  2020. if (axis != Z_AXIS) {
  2021. max = sqrt(sq((float)(DELTA_PRINTABLE_RADIUS)) - sq(current_position[Y_AXIS - axis]));
  2022. min = -max;
  2023. }
  2024. #endif
  2025. // Limit only when trying to move towards the limit
  2026. if ((int32_t)encoderPosition < 0) NOLESS(current_position[axis], min);
  2027. if ((int32_t)encoderPosition > 0) NOMORE(current_position[axis], max);
  2028. manual_move_to_current(axis);
  2029. encoderPosition = 0;
  2030. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  2031. }
  2032. if (lcdDrawUpdate) lcd_implementation_drawedit(name, ftostr41sign(current_position[axis]));
  2033. }
  2034. void lcd_move_x() { _lcd_move_xyz(PSTR(MSG_MOVE_X), X_AXIS); }
  2035. void lcd_move_y() { _lcd_move_xyz(PSTR(MSG_MOVE_Y), Y_AXIS); }
  2036. void lcd_move_z() { _lcd_move_xyz(PSTR(MSG_MOVE_Z), Z_AXIS); }
  2037. void _lcd_move_e(
  2038. #if E_MANUAL > 1
  2039. int8_t eindex=-1
  2040. #endif
  2041. ) {
  2042. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2043. ENCODER_DIRECTION_NORMAL();
  2044. if (encoderPosition) {
  2045. current_position[E_AXIS] += float((int32_t)encoderPosition) * move_menu_scale;
  2046. encoderPosition = 0;
  2047. manual_move_to_current(E_AXIS
  2048. #if E_MANUAL > 1
  2049. , eindex
  2050. #endif
  2051. );
  2052. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  2053. }
  2054. if (lcdDrawUpdate) {
  2055. PGM_P pos_label;
  2056. #if E_MANUAL == 1
  2057. pos_label = PSTR(MSG_MOVE_E);
  2058. #else
  2059. switch (eindex) {
  2060. default: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E1); break;
  2061. case 1: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E2); break;
  2062. #if E_MANUAL > 2
  2063. case 2: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E3); break;
  2064. #if E_MANUAL > 3
  2065. case 3: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E4); break;
  2066. #if E_MANUAL > 4
  2067. case 4: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E5); break;
  2068. #endif // E_MANUAL > 4
  2069. #endif // E_MANUAL > 3
  2070. #endif // E_MANUAL > 2
  2071. }
  2072. #endif // E_MANUAL > 1
  2073. lcd_implementation_drawedit(pos_label, ftostr41sign(current_position[E_AXIS]));
  2074. }
  2075. }
  2076. void lcd_move_e() { _lcd_move_e(); }
  2077. #if E_MANUAL > 1
  2078. void lcd_move_e0() { _lcd_move_e(0); }
  2079. void lcd_move_e1() { _lcd_move_e(1); }
  2080. #if E_MANUAL > 2
  2081. void lcd_move_e2() { _lcd_move_e(2); }
  2082. #if E_MANUAL > 3
  2083. void lcd_move_e3() { _lcd_move_e(3); }
  2084. #if E_MANUAL > 4
  2085. void lcd_move_e4() { _lcd_move_e(4); }
  2086. #endif // E_MANUAL > 4
  2087. #endif // E_MANUAL > 3
  2088. #endif // E_MANUAL > 2
  2089. #endif // E_MANUAL > 1
  2090. /**
  2091. *
  2092. * "Prepare" > "Move Xmm" > "Move XYZ" submenu
  2093. *
  2094. */
  2095. screenFunc_t _manual_move_func_ptr;
  2096. void lcd_move_menu_10mm() { move_menu_scale = 10.0; lcd_goto_screen(_manual_move_func_ptr); }
  2097. void lcd_move_menu_1mm() { move_menu_scale = 1.0; lcd_goto_screen(_manual_move_func_ptr); }
  2098. void lcd_move_menu_01mm() { move_menu_scale = 0.1; lcd_goto_screen(_manual_move_func_ptr); }
  2099. void _lcd_move_distance_menu(AxisEnum axis, screenFunc_t func) {
  2100. _manual_move_func_ptr = func;
  2101. START_MENU();
  2102. if (LCD_HEIGHT >= 4) {
  2103. switch(axis) {
  2104. case X_AXIS:
  2105. STATIC_ITEM(MSG_MOVE_X, true, true); break;
  2106. case Y_AXIS:
  2107. STATIC_ITEM(MSG_MOVE_Y, true, true); break;
  2108. case Z_AXIS:
  2109. STATIC_ITEM(MSG_MOVE_Z, true, true); break;
  2110. default:
  2111. STATIC_ITEM(MSG_MOVE_E, true, true); break;
  2112. }
  2113. }
  2114. MENU_BACK(MSG_MOVE_AXIS);
  2115. MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm);
  2116. MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm);
  2117. MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm);
  2118. END_MENU();
  2119. }
  2120. void lcd_move_get_x_amount() { _lcd_move_distance_menu(X_AXIS, lcd_move_x); }
  2121. void lcd_move_get_y_amount() { _lcd_move_distance_menu(Y_AXIS, lcd_move_y); }
  2122. void lcd_move_get_z_amount() { _lcd_move_distance_menu(Z_AXIS, lcd_move_z); }
  2123. void lcd_move_get_e_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e); }
  2124. #if E_MANUAL > 1
  2125. void lcd_move_get_e0_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e0); }
  2126. void lcd_move_get_e1_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e1); }
  2127. #if E_MANUAL > 2
  2128. void lcd_move_get_e2_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e2); }
  2129. #if E_MANUAL > 3
  2130. void lcd_move_get_e3_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e3); }
  2131. #if E_MANUAL > 4
  2132. void lcd_move_get_e4_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e4); }
  2133. #endif // E_MANUAL > 4
  2134. #endif // E_MANUAL > 3
  2135. #endif // E_MANUAL > 2
  2136. #endif // E_MANUAL > 1
  2137. /**
  2138. *
  2139. * "Prepare" > "Move Axis" submenu
  2140. *
  2141. */
  2142. #if IS_KINEMATIC
  2143. #define _MOVE_XYZ_ALLOWED (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
  2144. #if ENABLED(DELTA)
  2145. #define _MOVE_XY_ALLOWED (current_position[Z_AXIS] <= delta_clip_start_height)
  2146. void lcd_lower_z_to_clip_height() {
  2147. current_position[Z_AXIS] = delta_clip_start_height;
  2148. line_to_current(Z_AXIS);
  2149. lcd_synchronize();
  2150. }
  2151. #else
  2152. #define _MOVE_XY_ALLOWED true
  2153. #endif
  2154. #else
  2155. #define _MOVE_XYZ_ALLOWED true
  2156. #define _MOVE_XY_ALLOWED true
  2157. #endif
  2158. void lcd_move_menu() {
  2159. START_MENU();
  2160. MENU_BACK(MSG_PREPARE);
  2161. if (_MOVE_XYZ_ALLOWED) {
  2162. if (_MOVE_XY_ALLOWED) {
  2163. MENU_ITEM(submenu, MSG_MOVE_X, lcd_move_get_x_amount);
  2164. MENU_ITEM(submenu, MSG_MOVE_Y, lcd_move_get_y_amount);
  2165. }
  2166. #if ENABLED(DELTA)
  2167. else
  2168. MENU_ITEM(function, MSG_FREE_XY, lcd_lower_z_to_clip_height);
  2169. #endif
  2170. MENU_ITEM(submenu, MSG_MOVE_Z, lcd_move_get_z_amount);
  2171. }
  2172. else
  2173. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  2174. #if ENABLED(SWITCHING_EXTRUDER)
  2175. if (active_extruder)
  2176. MENU_ITEM(gcode, MSG_SELECT " " MSG_E1, PSTR("T0"));
  2177. else
  2178. MENU_ITEM(gcode, MSG_SELECT " " MSG_E2, PSTR("T1"));
  2179. #endif
  2180. MENU_ITEM(submenu, MSG_MOVE_E, lcd_move_get_e_amount);
  2181. #if E_MANUAL > 1
  2182. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E1, lcd_move_get_e0_amount);
  2183. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E2, lcd_move_get_e1_amount);
  2184. #if E_MANUAL > 2
  2185. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E3, lcd_move_get_e2_amount);
  2186. #if E_MANUAL > 3
  2187. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E4, lcd_move_get_e3_amount);
  2188. #if E_MANUAL > 4
  2189. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E5, lcd_move_get_e4_amount);
  2190. #endif // E_MANUAL > 4
  2191. #endif // E_MANUAL > 3
  2192. #endif // E_MANUAL > 2
  2193. #endif // E_MANUAL > 1
  2194. END_MENU();
  2195. }
  2196. /**
  2197. *
  2198. * "Control" submenu
  2199. *
  2200. */
  2201. /**
  2202. *
  2203. * Callback for LCD contrast
  2204. *
  2205. */
  2206. #if HAS_LCD_CONTRAST
  2207. void lcd_callback_set_contrast() { set_lcd_contrast(lcd_contrast); }
  2208. #endif // HAS_LCD_CONTRAST
  2209. static void lcd_factory_settings() {
  2210. settings.reset();
  2211. lcd_completion_feedback();
  2212. }
  2213. void lcd_control_menu() {
  2214. START_MENU();
  2215. MENU_BACK(MSG_MAIN);
  2216. MENU_ITEM(submenu, MSG_TEMPERATURE, lcd_control_temperature_menu);
  2217. MENU_ITEM(submenu, MSG_MOTION, lcd_control_motion_menu);
  2218. MENU_ITEM(submenu, MSG_FILAMENT, lcd_control_filament_menu);
  2219. #if HAS_LCD_CONTRAST
  2220. MENU_ITEM_EDIT_CALLBACK(int3, MSG_CONTRAST, &lcd_contrast, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX, lcd_callback_set_contrast, true);
  2221. #endif
  2222. #if ENABLED(FWRETRACT)
  2223. MENU_ITEM(submenu, MSG_RETRACT, lcd_control_retract_menu);
  2224. #endif
  2225. #if ENABLED(DAC_STEPPER_CURRENT)
  2226. MENU_ITEM(submenu, MSG_DRIVE_STRENGTH, lcd_dac_menu);
  2227. #endif
  2228. #if ENABLED(BLTOUCH)
  2229. MENU_ITEM(submenu, MSG_BLTOUCH, bltouch_menu);
  2230. #endif
  2231. #if ENABLED(EEPROM_SETTINGS)
  2232. MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
  2233. MENU_ITEM(function, MSG_LOAD_EEPROM, lcd_load_settings);
  2234. #endif
  2235. MENU_ITEM(function, MSG_RESTORE_FAILSAFE, lcd_factory_settings);
  2236. #if ENABLED(EEPROM_SETTINGS)
  2237. MENU_ITEM(gcode, MSG_INIT_EEPROM, PSTR("M502\nM500")); // TODO: Add "Are You Sure?" step
  2238. #endif
  2239. END_MENU();
  2240. }
  2241. /**
  2242. *
  2243. * "Temperature" submenu
  2244. *
  2245. */
  2246. #if ENABLED(PID_AUTOTUNE_MENU)
  2247. #if ENABLED(PIDTEMP)
  2248. int autotune_temp[HOTENDS] = ARRAY_BY_HOTENDS1(150);
  2249. #endif
  2250. #if ENABLED(PIDTEMPBED)
  2251. int autotune_temp_bed = 70;
  2252. #endif
  2253. void _lcd_autotune(int e) {
  2254. char cmd[30];
  2255. sprintf_P(cmd, PSTR("M303 U1 E%i S%i"), e,
  2256. #if HAS_PID_FOR_BOTH
  2257. e < 0 ? autotune_temp_bed : autotune_temp[e]
  2258. #elif ENABLED(PIDTEMPBED)
  2259. autotune_temp_bed
  2260. #else
  2261. autotune_temp[e]
  2262. #endif
  2263. );
  2264. enqueue_and_echo_command(cmd);
  2265. }
  2266. #endif // PID_AUTOTUNE_MENU
  2267. #if ENABLED(PIDTEMP)
  2268. // Helpers for editing PID Ki & Kd values
  2269. // grab the PID value out of the temp variable; scale it; then update the PID driver
  2270. void copy_and_scalePID_i(int e) {
  2271. #if DISABLED(PID_PARAMS_PER_HOTEND) || HOTENDS == 1
  2272. UNUSED(e);
  2273. #endif
  2274. PID_PARAM(Ki, e) = scalePID_i(raw_Ki);
  2275. thermalManager.updatePID();
  2276. }
  2277. void copy_and_scalePID_d(int e) {
  2278. #if DISABLED(PID_PARAMS_PER_HOTEND) || HOTENDS == 1
  2279. UNUSED(e);
  2280. #endif
  2281. PID_PARAM(Kd, e) = scalePID_d(raw_Kd);
  2282. thermalManager.updatePID();
  2283. }
  2284. #define _DEFINE_PIDTEMP_BASE_FUNCS(N) \
  2285. void copy_and_scalePID_i_E ## N() { copy_and_scalePID_i(N); } \
  2286. void copy_and_scalePID_d_E ## N() { copy_and_scalePID_d(N); }
  2287. #if ENABLED(PID_AUTOTUNE_MENU)
  2288. #define DEFINE_PIDTEMP_FUNCS(N) \
  2289. _DEFINE_PIDTEMP_BASE_FUNCS(N); \
  2290. void lcd_autotune_callback_E ## N() { _lcd_autotune(N); } typedef void _pid_##N##_void
  2291. #else
  2292. #define DEFINE_PIDTEMP_FUNCS(N) _DEFINE_PIDTEMP_BASE_FUNCS(N) typedef void _pid_##N##_void
  2293. #endif
  2294. DEFINE_PIDTEMP_FUNCS(0);
  2295. #if ENABLED(PID_PARAMS_PER_HOTEND)
  2296. #if HOTENDS > 1
  2297. DEFINE_PIDTEMP_FUNCS(1);
  2298. #if HOTENDS > 2
  2299. DEFINE_PIDTEMP_FUNCS(2);
  2300. #if HOTENDS > 3
  2301. DEFINE_PIDTEMP_FUNCS(3);
  2302. #if HOTENDS > 4
  2303. DEFINE_PIDTEMP_FUNCS(4);
  2304. #endif // HOTENDS > 4
  2305. #endif // HOTENDS > 3
  2306. #endif // HOTENDS > 2
  2307. #endif // HOTENDS > 1
  2308. #endif // PID_PARAMS_PER_HOTEND
  2309. #endif // PIDTEMP
  2310. /**
  2311. *
  2312. * "Control" > "Temperature" submenu
  2313. *
  2314. */
  2315. void lcd_control_temperature_menu() {
  2316. START_MENU();
  2317. //
  2318. // ^ Control
  2319. //
  2320. MENU_BACK(MSG_CONTROL);
  2321. //
  2322. // Nozzle:
  2323. // Nozzle [1-5]:
  2324. //
  2325. #if HOTENDS == 1
  2326. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  2327. #else // HOTENDS > 1
  2328. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N1, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  2329. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N2, &thermalManager.target_temperature[1], 0, HEATER_1_MAXTEMP - 15, watch_temp_callback_E1);
  2330. #if HOTENDS > 2
  2331. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N3, &thermalManager.target_temperature[2], 0, HEATER_2_MAXTEMP - 15, watch_temp_callback_E2);
  2332. #if HOTENDS > 3
  2333. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N4, &thermalManager.target_temperature[3], 0, HEATER_3_MAXTEMP - 15, watch_temp_callback_E3);
  2334. #if HOTENDS > 4
  2335. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N5, &thermalManager.target_temperature[4], 0, HEATER_4_MAXTEMP - 15, watch_temp_callback_E4);
  2336. #endif // HOTENDS > 4
  2337. #endif // HOTENDS > 3
  2338. #endif // HOTENDS > 2
  2339. #endif // HOTENDS > 1
  2340. //
  2341. // Bed:
  2342. //
  2343. #if WATCH_THE_BED
  2344. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_BED, &thermalManager.target_temperature_bed, 0, BED_MAXTEMP - 15, watch_temp_callback_bed);
  2345. #endif
  2346. //
  2347. // Fan Speed:
  2348. //
  2349. #if FAN_COUNT > 0
  2350. #if HAS_FAN0
  2351. #if FAN_COUNT > 1
  2352. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED " 1"
  2353. #else
  2354. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED
  2355. #endif
  2356. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_1ST_FAN_SPEED, &fanSpeeds[0], 0, 255);
  2357. #endif
  2358. #if HAS_FAN1
  2359. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 2", &fanSpeeds[1], 0, 255);
  2360. #endif
  2361. #if HAS_FAN2
  2362. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 3", &fanSpeeds[2], 0, 255);
  2363. #endif
  2364. #endif // FAN_COUNT > 0
  2365. //
  2366. // Autotemp, Min, Max, Fact
  2367. //
  2368. #if ENABLED(AUTOTEMP) && (TEMP_SENSOR_0 != 0)
  2369. MENU_ITEM_EDIT(bool, MSG_AUTOTEMP, &planner.autotemp_enabled);
  2370. MENU_ITEM_EDIT(float3, MSG_MIN, &planner.autotemp_min, 0, HEATER_0_MAXTEMP - 15);
  2371. MENU_ITEM_EDIT(float3, MSG_MAX, &planner.autotemp_max, 0, HEATER_0_MAXTEMP - 15);
  2372. MENU_ITEM_EDIT(float32, MSG_FACTOR, &planner.autotemp_factor, 0.0, 1.0);
  2373. #endif
  2374. //
  2375. // PID-P, PID-I, PID-D, PID-C, PID Autotune
  2376. // PID-P E1, PID-I E1, PID-D E1, PID-C E1, PID Autotune E1
  2377. // PID-P E2, PID-I E2, PID-D E2, PID-C E2, PID Autotune E2
  2378. // PID-P E3, PID-I E3, PID-D E3, PID-C E3, PID Autotune E3
  2379. // PID-P E4, PID-I E4, PID-D E4, PID-C E4, PID Autotune E4
  2380. // PID-P E5, PID-I E5, PID-D E5, PID-C E5, PID Autotune E5
  2381. //
  2382. #if ENABLED(PIDTEMP)
  2383. #define _PID_BASE_MENU_ITEMS(ELABEL, eindex) \
  2384. raw_Ki = unscalePID_i(PID_PARAM(Ki, eindex)); \
  2385. raw_Kd = unscalePID_d(PID_PARAM(Kd, eindex)); \
  2386. MENU_ITEM_EDIT(float52, MSG_PID_P ELABEL, &PID_PARAM(Kp, eindex), 1, 9990); \
  2387. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I ELABEL, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E ## eindex); \
  2388. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D ELABEL, &raw_Kd, 1, 9990, copy_and_scalePID_d_E ## eindex)
  2389. #if ENABLED(PID_EXTRUSION_SCALING)
  2390. #define _PID_MENU_ITEMS(ELABEL, eindex) \
  2391. _PID_BASE_MENU_ITEMS(ELABEL, eindex); \
  2392. MENU_ITEM_EDIT(float3, MSG_PID_C ELABEL, &PID_PARAM(Kc, eindex), 1, 9990)
  2393. #else
  2394. #define _PID_MENU_ITEMS(ELABEL, eindex) _PID_BASE_MENU_ITEMS(ELABEL, eindex)
  2395. #endif
  2396. #if ENABLED(PID_AUTOTUNE_MENU)
  2397. #define PID_MENU_ITEMS(ELABEL, eindex) \
  2398. _PID_MENU_ITEMS(ELABEL, eindex); \
  2399. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_PID_AUTOTUNE ELABEL, &autotune_temp[eindex], 150, heater_maxtemp[eindex] - 15, lcd_autotune_callback_E ## eindex)
  2400. #else
  2401. #define PID_MENU_ITEMS(ELABEL, eindex) _PID_MENU_ITEMS(ELABEL, eindex)
  2402. #endif
  2403. #if ENABLED(PID_PARAMS_PER_HOTEND) && HOTENDS > 1
  2404. PID_MENU_ITEMS(" " MSG_E1, 0);
  2405. PID_MENU_ITEMS(" " MSG_E2, 1);
  2406. #if HOTENDS > 2
  2407. PID_MENU_ITEMS(" " MSG_E3, 2);
  2408. #if HOTENDS > 3
  2409. PID_MENU_ITEMS(" " MSG_E4, 3);
  2410. #if HOTENDS > 4
  2411. PID_MENU_ITEMS(" " MSG_E5, 4);
  2412. #endif // HOTENDS > 4
  2413. #endif // HOTENDS > 3
  2414. #endif // HOTENDS > 2
  2415. #else // !PID_PARAMS_PER_HOTEND || HOTENDS == 1
  2416. PID_MENU_ITEMS("", 0);
  2417. #endif // !PID_PARAMS_PER_HOTEND || HOTENDS == 1
  2418. #endif // PIDTEMP
  2419. //
  2420. // Preheat Material 1 conf
  2421. //
  2422. MENU_ITEM(submenu, MSG_PREHEAT_1_SETTINGS, lcd_control_temperature_preheat_material1_settings_menu);
  2423. //
  2424. // Preheat Material 2 conf
  2425. //
  2426. MENU_ITEM(submenu, MSG_PREHEAT_2_SETTINGS, lcd_control_temperature_preheat_material2_settings_menu);
  2427. END_MENU();
  2428. }
  2429. void _lcd_control_temperature_preheat_settings_menu(uint8_t material) {
  2430. #if HOTENDS > 4
  2431. #define MINTEMP_ALL MIN5(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP, HEATER_3_MINTEMP, HEATER_4_MINTEMP)
  2432. #define MAXTEMP_ALL MAX5(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP, HEATER_4_MAXTEMP)
  2433. #elif HOTENDS > 3
  2434. #define MINTEMP_ALL MIN4(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP, HEATER_3_MINTEMP)
  2435. #define MAXTEMP_ALL MAX4(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP)
  2436. #elif HOTENDS > 2
  2437. #define MINTEMP_ALL MIN3(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP)
  2438. #define MAXTEMP_ALL MAX3(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP)
  2439. #elif HOTENDS > 1
  2440. #define MINTEMP_ALL min(HEATER_0_MINTEMP, HEATER_1_MINTEMP)
  2441. #define MAXTEMP_ALL max(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP)
  2442. #else
  2443. #define MINTEMP_ALL HEATER_0_MINTEMP
  2444. #define MAXTEMP_ALL HEATER_0_MAXTEMP
  2445. #endif
  2446. START_MENU();
  2447. MENU_BACK(MSG_TEMPERATURE);
  2448. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &lcd_preheat_fan_speed[material], 0, 255);
  2449. #if TEMP_SENSOR_0 != 0
  2450. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &lcd_preheat_hotend_temp[material], MINTEMP_ALL, MAXTEMP_ALL - 15);
  2451. #endif
  2452. #if TEMP_SENSOR_BED != 0
  2453. MENU_ITEM_EDIT(int3, MSG_BED, &lcd_preheat_bed_temp[material], BED_MINTEMP, BED_MAXTEMP - 15);
  2454. #endif
  2455. #if ENABLED(EEPROM_SETTINGS)
  2456. MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
  2457. #endif
  2458. END_MENU();
  2459. }
  2460. /**
  2461. *
  2462. * "Temperature" > "Preheat Material 1 conf" submenu
  2463. *
  2464. */
  2465. void lcd_control_temperature_preheat_material1_settings_menu() { _lcd_control_temperature_preheat_settings_menu(0); }
  2466. /**
  2467. *
  2468. * "Temperature" > "Preheat Material 2 conf" submenu
  2469. *
  2470. */
  2471. void lcd_control_temperature_preheat_material2_settings_menu() { _lcd_control_temperature_preheat_settings_menu(1); }
  2472. /**
  2473. *
  2474. * "Control" > "Motion" submenu
  2475. *
  2476. */
  2477. void _reset_acceleration_rates() { planner.reset_acceleration_rates(); }
  2478. #if ENABLED(DISTINCT_E_FACTORS)
  2479. void _reset_e_acceleration_rate(const uint8_t e) { if (e == active_extruder) _reset_acceleration_rates(); }
  2480. void _reset_e0_acceleration_rate() { _reset_e_acceleration_rate(0); }
  2481. void _reset_e1_acceleration_rate() { _reset_e_acceleration_rate(1); }
  2482. #if E_STEPPERS > 2
  2483. void _reset_e2_acceleration_rate() { _reset_e_acceleration_rate(2); }
  2484. #if E_STEPPERS > 3
  2485. void _reset_e3_acceleration_rate() { _reset_e_acceleration_rate(3); }
  2486. #if E_STEPPERS > 4
  2487. void _reset_e4_acceleration_rate() { _reset_e_acceleration_rate(4); }
  2488. #endif // E_STEPPERS > 4
  2489. #endif // E_STEPPERS > 3
  2490. #endif // E_STEPPERS > 2
  2491. #endif
  2492. void _planner_refresh_positioning() { planner.refresh_positioning(); }
  2493. #if ENABLED(DISTINCT_E_FACTORS)
  2494. void _planner_refresh_e_positioning(const uint8_t e) {
  2495. if (e == active_extruder)
  2496. _planner_refresh_positioning();
  2497. else
  2498. planner.steps_to_mm[e] = 1.0 / planner.axis_steps_per_mm[e];
  2499. }
  2500. void _planner_refresh_e0_positioning() { _reset_e_acceleration_rate(0); }
  2501. void _planner_refresh_e1_positioning() { _reset_e_acceleration_rate(1); }
  2502. #if E_STEPPERS > 2
  2503. void _planner_refresh_e2_positioning() { _reset_e_acceleration_rate(2); }
  2504. #if E_STEPPERS > 3
  2505. void _planner_refresh_e3_positioning() { _reset_e_acceleration_rate(3); }
  2506. #if E_STEPPERS > 4
  2507. void _planner_refresh_e4_positioning() { _reset_e_acceleration_rate(4); }
  2508. #endif // E_STEPPERS > 4
  2509. #endif // E_STEPPERS > 3
  2510. #endif // E_STEPPERS > 2
  2511. #endif
  2512. #if HAS_BED_PROBE && DISABLED(BABYSTEP_ZPROBE_OFFSET)
  2513. static void lcd_refresh_zprobe_zoffset() { refresh_zprobe_zoffset(); }
  2514. #endif
  2515. // M203 / M205 Feedrates
  2516. void lcd_control_motion_feedrate_menu() {
  2517. START_MENU();
  2518. MENU_BACK(MSG_MOTION);
  2519. // M203 Max Feedrate
  2520. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_X, &planner.max_feedrate_mm_s[X_AXIS], 1, 999);
  2521. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Y, &planner.max_feedrate_mm_s[Y_AXIS], 1, 999);
  2522. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Z, &planner.max_feedrate_mm_s[Z_AXIS], 1, 999);
  2523. #if ENABLED(DISTINCT_E_FACTORS)
  2524. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E, &planner.max_feedrate_mm_s[E_AXIS + active_extruder], 1, 999);
  2525. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E1, &planner.max_feedrate_mm_s[E_AXIS], 1, 999);
  2526. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E2, &planner.max_feedrate_mm_s[E_AXIS + 1], 1, 999);
  2527. #if E_STEPPERS > 2
  2528. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E3, &planner.max_feedrate_mm_s[E_AXIS + 2], 1, 999);
  2529. #if E_STEPPERS > 3
  2530. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E4, &planner.max_feedrate_mm_s[E_AXIS + 3], 1, 999);
  2531. #if E_STEPPERS > 4
  2532. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E5, &planner.max_feedrate_mm_s[E_AXIS + 4], 1, 999);
  2533. #endif // E_STEPPERS > 4
  2534. #endif // E_STEPPERS > 3
  2535. #endif // E_STEPPERS > 2
  2536. #else
  2537. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E, &planner.max_feedrate_mm_s[E_AXIS], 1, 999);
  2538. #endif
  2539. // M205 S Min Feedrate
  2540. MENU_ITEM_EDIT(float3, MSG_VMIN, &planner.min_feedrate_mm_s, 0, 999);
  2541. // M205 T Min Travel Feedrate
  2542. MENU_ITEM_EDIT(float3, MSG_VTRAV_MIN, &planner.min_travel_feedrate_mm_s, 0, 999);
  2543. END_MENU();
  2544. }
  2545. // M201 / M204 Accelerations
  2546. void lcd_control_motion_acceleration_menu() {
  2547. START_MENU();
  2548. MENU_BACK(MSG_MOTION);
  2549. // M204 P Acceleration
  2550. MENU_ITEM_EDIT(float5, MSG_ACC, &planner.acceleration, 10, 99000);
  2551. // M204 R Retract Acceleration
  2552. MENU_ITEM_EDIT(float5, MSG_A_RETRACT, &planner.retract_acceleration, 100, 99000);
  2553. // M204 T Travel Acceleration
  2554. MENU_ITEM_EDIT(float5, MSG_A_TRAVEL, &planner.travel_acceleration, 100, 99000);
  2555. // M201 settings
  2556. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_X, &planner.max_acceleration_mm_per_s2[X_AXIS], 100, 99000, _reset_acceleration_rates);
  2557. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Y, &planner.max_acceleration_mm_per_s2[Y_AXIS], 100, 99000, _reset_acceleration_rates);
  2558. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Z, &planner.max_acceleration_mm_per_s2[Z_AXIS], 10, 99000, _reset_acceleration_rates);
  2559. #if ENABLED(DISTINCT_E_FACTORS)
  2560. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E, &planner.max_acceleration_mm_per_s2[E_AXIS + active_extruder], 100, 99000, _reset_acceleration_rates);
  2561. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E1, &planner.max_acceleration_mm_per_s2[E_AXIS], 100, 99000, _reset_e0_acceleration_rate);
  2562. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E2, &planner.max_acceleration_mm_per_s2[E_AXIS + 1], 100, 99000, _reset_e1_acceleration_rate);
  2563. #if E_STEPPERS > 2
  2564. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E3, &planner.max_acceleration_mm_per_s2[E_AXIS + 2], 100, 99000, _reset_e2_acceleration_rate);
  2565. #if E_STEPPERS > 3
  2566. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E4, &planner.max_acceleration_mm_per_s2[E_AXIS + 3], 100, 99000, _reset_e3_acceleration_rate);
  2567. #if E_STEPPERS > 4
  2568. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E5, &planner.max_acceleration_mm_per_s2[E_AXIS + 4], 100, 99000, _reset_e4_acceleration_rate);
  2569. #endif // E_STEPPERS > 4
  2570. #endif // E_STEPPERS > 3
  2571. #endif // E_STEPPERS > 2
  2572. #else
  2573. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E, &planner.max_acceleration_mm_per_s2[E_AXIS], 100, 99000, _reset_acceleration_rates);
  2574. #endif
  2575. END_MENU();
  2576. }
  2577. // M205 Jerk
  2578. void lcd_control_motion_jerk_menu() {
  2579. START_MENU();
  2580. MENU_BACK(MSG_MOTION);
  2581. MENU_ITEM_EDIT(float3, MSG_VX_JERK, &planner.max_jerk[X_AXIS], 1, 990);
  2582. MENU_ITEM_EDIT(float3, MSG_VY_JERK, &planner.max_jerk[Y_AXIS], 1, 990);
  2583. #if ENABLED(DELTA)
  2584. MENU_ITEM_EDIT(float3, MSG_VZ_JERK, &planner.max_jerk[Z_AXIS], 1, 990);
  2585. #else
  2586. MENU_ITEM_EDIT(float52, MSG_VZ_JERK, &planner.max_jerk[Z_AXIS], 0.1, 990);
  2587. #endif
  2588. MENU_ITEM_EDIT(float3, MSG_VE_JERK, &planner.max_jerk[E_AXIS], 1, 990);
  2589. END_MENU();
  2590. }
  2591. // M92 Steps-per-mm
  2592. void lcd_control_motion_steps_per_mm_menu() {
  2593. START_MENU();
  2594. MENU_BACK(MSG_MOTION);
  2595. MENU_ITEM_EDIT_CALLBACK(float62, MSG_XSTEPS, &planner.axis_steps_per_mm[X_AXIS], 5, 9999, _planner_refresh_positioning);
  2596. MENU_ITEM_EDIT_CALLBACK(float62, MSG_YSTEPS, &planner.axis_steps_per_mm[Y_AXIS], 5, 9999, _planner_refresh_positioning);
  2597. MENU_ITEM_EDIT_CALLBACK(float62, MSG_ZSTEPS, &planner.axis_steps_per_mm[Z_AXIS], 5, 9999, _planner_refresh_positioning);
  2598. #if ENABLED(DISTINCT_E_FACTORS)
  2599. MENU_ITEM_EDIT_CALLBACK(float62, MSG_ESTEPS, &planner.axis_steps_per_mm[E_AXIS + active_extruder], 5, 9999, _planner_refresh_positioning);
  2600. MENU_ITEM_EDIT_CALLBACK(float62, MSG_E1STEPS, &planner.axis_steps_per_mm[E_AXIS], 5, 9999, _planner_refresh_e0_positioning);
  2601. MENU_ITEM_EDIT_CALLBACK(float62, MSG_E2STEPS, &planner.axis_steps_per_mm[E_AXIS + 1], 5, 9999, _planner_refresh_e1_positioning);
  2602. #if E_STEPPERS > 2
  2603. MENU_ITEM_EDIT_CALLBACK(float62, MSG_E3STEPS, &planner.axis_steps_per_mm[E_AXIS + 2], 5, 9999, _planner_refresh_e2_positioning);
  2604. #if E_STEPPERS > 3
  2605. MENU_ITEM_EDIT_CALLBACK(float62, MSG_E4STEPS, &planner.axis_steps_per_mm[E_AXIS + 3], 5, 9999, _planner_refresh_e3_positioning);
  2606. #if E_STEPPERS > 4
  2607. MENU_ITEM_EDIT_CALLBACK(float62, MSG_E5STEPS, &planner.axis_steps_per_mm[E_AXIS + 4], 5, 9999, _planner_refresh_e4_positioning);
  2608. #endif // E_STEPPERS > 4
  2609. #endif // E_STEPPERS > 3
  2610. #endif // E_STEPPERS > 2
  2611. #else
  2612. MENU_ITEM_EDIT_CALLBACK(float62, MSG_ESTEPS, &planner.axis_steps_per_mm[E_AXIS], 5, 9999, _planner_refresh_positioning);
  2613. #endif
  2614. END_MENU();
  2615. }
  2616. void lcd_control_motion_menu() {
  2617. START_MENU();
  2618. MENU_BACK(MSG_CONTROL);
  2619. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  2620. MENU_ITEM(submenu, MSG_ZPROBE_ZOFFSET, lcd_babystep_zoffset);
  2621. #elif HAS_BED_PROBE
  2622. MENU_ITEM_EDIT_CALLBACK(float32, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX, lcd_refresh_zprobe_zoffset);
  2623. #endif
  2624. // M203 / M205 Feedrate items
  2625. MENU_ITEM(submenu, MSG_FEEDRATE, lcd_control_motion_feedrate_menu);
  2626. // M201 Acceleration items
  2627. MENU_ITEM(submenu, MSG_ACCELERATION, lcd_control_motion_acceleration_menu);
  2628. // M205 Max Jerk
  2629. MENU_ITEM(submenu, MSG_JERK, lcd_control_motion_jerk_menu);
  2630. // M92 Steps Per mm
  2631. MENU_ITEM(submenu, MSG_STEPS_PER_MM, lcd_control_motion_steps_per_mm_menu);
  2632. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  2633. MENU_ITEM_EDIT(bool, MSG_ENDSTOP_ABORT, &stepper.abort_on_endstop_hit);
  2634. #endif
  2635. END_MENU();
  2636. }
  2637. /**
  2638. *
  2639. * "Control" > "Filament" submenu
  2640. *
  2641. */
  2642. void lcd_control_filament_menu() {
  2643. START_MENU();
  2644. MENU_BACK(MSG_CONTROL);
  2645. #if ENABLED(LIN_ADVANCE)
  2646. MENU_ITEM_EDIT(float3, MSG_ADVANCE_K, &planner.extruder_advance_k, 0, 999);
  2647. #endif
  2648. MENU_ITEM_EDIT_CALLBACK(bool, MSG_VOLUMETRIC_ENABLED, &volumetric_enabled, calculate_volumetric_multipliers);
  2649. if (volumetric_enabled) {
  2650. #if EXTRUDERS == 1
  2651. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM, &filament_size[0], 1.5, 3.25, calculate_volumetric_multipliers);
  2652. #else // EXTRUDERS > 1
  2653. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E1, &filament_size[0], 1.5, 3.25, calculate_volumetric_multipliers);
  2654. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E2, &filament_size[1], 1.5, 3.25, calculate_volumetric_multipliers);
  2655. #if EXTRUDERS > 2
  2656. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E3, &filament_size[2], 1.5, 3.25, calculate_volumetric_multipliers);
  2657. #if EXTRUDERS > 3
  2658. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E4, &filament_size[3], 1.5, 3.25, calculate_volumetric_multipliers);
  2659. #if EXTRUDERS > 4
  2660. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E5, &filament_size[4], 1.5, 3.25, calculate_volumetric_multipliers);
  2661. #endif // EXTRUDERS > 4
  2662. #endif // EXTRUDERS > 3
  2663. #endif // EXTRUDERS > 2
  2664. #endif // EXTRUDERS > 1
  2665. }
  2666. END_MENU();
  2667. }
  2668. /**
  2669. *
  2670. * "Control" > "Retract" submenu
  2671. *
  2672. */
  2673. #if ENABLED(FWRETRACT)
  2674. void lcd_control_retract_menu() {
  2675. START_MENU();
  2676. MENU_BACK(MSG_CONTROL);
  2677. MENU_ITEM_EDIT(bool, MSG_AUTORETRACT, &autoretract_enabled);
  2678. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT, &retract_length, 0, 100);
  2679. #if EXTRUDERS > 1
  2680. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_SWAP, &retract_length_swap, 0, 100);
  2681. #endif
  2682. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACTF, &retract_feedrate_mm_s, 1, 999);
  2683. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_ZLIFT, &retract_zlift, 0, 999);
  2684. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER, &retract_recover_length, -100, 100);
  2685. #if EXTRUDERS > 1
  2686. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER_SWAP, &retract_recover_length_swap, -100, 100);
  2687. #endif
  2688. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACT_RECOVERF, &retract_recover_feedrate_mm_s, 1, 999);
  2689. END_MENU();
  2690. }
  2691. #endif // FWRETRACT
  2692. #if ENABLED(SDSUPPORT)
  2693. #if !PIN_EXISTS(SD_DETECT)
  2694. void lcd_sd_refresh() {
  2695. card.initsd();
  2696. encoderTopLine = 0;
  2697. }
  2698. #endif
  2699. void lcd_sd_updir() {
  2700. card.updir();
  2701. encoderTopLine = 0;
  2702. screen_changed = true;
  2703. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  2704. }
  2705. /**
  2706. *
  2707. * "Print from SD" submenu
  2708. *
  2709. */
  2710. void lcd_sdcard_menu() {
  2711. ENCODER_DIRECTION_MENUS();
  2712. if (!lcdDrawUpdate && !lcd_clicked) return; // nothing to do (so don't thrash the SD card)
  2713. const uint16_t fileCnt = card.getnrfilenames();
  2714. START_MENU();
  2715. MENU_BACK(MSG_MAIN);
  2716. card.getWorkDirName();
  2717. if (card.filename[0] == '/') {
  2718. #if !PIN_EXISTS(SD_DETECT)
  2719. MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
  2720. #endif
  2721. }
  2722. else {
  2723. MENU_ITEM(function, LCD_STR_FOLDER "..", lcd_sd_updir);
  2724. }
  2725. for (uint16_t i = 0; i < fileCnt; i++) {
  2726. if (_menuLineNr == _thisItemNr) {
  2727. const uint16_t nr =
  2728. #if ENABLED(SDCARD_RATHERRECENTFIRST) && DISABLED(SDCARD_SORT_ALPHA)
  2729. fileCnt - 1 -
  2730. #endif
  2731. i;
  2732. #if ENABLED(SDCARD_SORT_ALPHA)
  2733. card.getfilename_sorted(nr);
  2734. #else
  2735. card.getfilename(nr);
  2736. #endif
  2737. if (card.filenameIsDir)
  2738. MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
  2739. else
  2740. MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
  2741. }
  2742. else {
  2743. MENU_ITEM_DUMMY();
  2744. }
  2745. }
  2746. END_MENU();
  2747. }
  2748. #endif // SDSUPPORT
  2749. #if ENABLED(LCD_INFO_MENU)
  2750. #if ENABLED(PRINTCOUNTER)
  2751. /**
  2752. *
  2753. * About Printer > Statistics submenu
  2754. *
  2755. */
  2756. void lcd_info_stats_menu() {
  2757. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2758. char buffer[21];
  2759. printStatistics stats = print_job_timer.getStats();
  2760. START_SCREEN(); // 12345678901234567890
  2761. STATIC_ITEM(MSG_INFO_PRINT_COUNT ": ", false, false, itostr3left(stats.totalPrints)); // Print Count: 999
  2762. STATIC_ITEM(MSG_INFO_COMPLETED_PRINTS": ", false, false, itostr3left(stats.finishedPrints)); // Completed : 666
  2763. duration_t elapsed = stats.printTime;
  2764. elapsed.toString(buffer);
  2765. STATIC_ITEM(MSG_INFO_PRINT_TIME ": ", false, false); // Total print Time:
  2766. STATIC_ITEM("", false, false, buffer); // 99y 364d 23h 59m 59s
  2767. elapsed = stats.longestPrint;
  2768. elapsed.toString(buffer);
  2769. STATIC_ITEM(MSG_INFO_PRINT_LONGEST ": ", false, false); // Longest job time:
  2770. STATIC_ITEM("", false, false, buffer); // 99y 364d 23h 59m 59s
  2771. sprintf_P(buffer, PSTR("%ld.%im"), long(stats.filamentUsed / 1000), int(stats.filamentUsed / 100) % 10);
  2772. STATIC_ITEM(MSG_INFO_PRINT_FILAMENT ": ", false, false); // Extruded total:
  2773. STATIC_ITEM("", false, false, buffer); // 125m
  2774. END_SCREEN();
  2775. }
  2776. #endif // PRINTCOUNTER
  2777. /**
  2778. *
  2779. * About Printer > Thermistors
  2780. *
  2781. */
  2782. void lcd_info_thermistors_menu() {
  2783. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2784. START_SCREEN();
  2785. #define THERMISTOR_ID TEMP_SENSOR_0
  2786. #include "thermistornames.h"
  2787. STATIC_ITEM("T0: " THERMISTOR_NAME, false, true);
  2788. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_0_MINTEMP), false);
  2789. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_0_MAXTEMP), false);
  2790. #if TEMP_SENSOR_1 != 0
  2791. #undef THERMISTOR_ID
  2792. #define THERMISTOR_ID TEMP_SENSOR_1
  2793. #include "thermistornames.h"
  2794. STATIC_ITEM("T1: " THERMISTOR_NAME, false, true);
  2795. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_1_MINTEMP), false);
  2796. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_1_MAXTEMP), false);
  2797. #endif
  2798. #if TEMP_SENSOR_2 != 0
  2799. #undef THERMISTOR_ID
  2800. #define THERMISTOR_ID TEMP_SENSOR_2
  2801. #include "thermistornames.h"
  2802. STATIC_ITEM("T2: " THERMISTOR_NAME, false, true);
  2803. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_2_MINTEMP), false);
  2804. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_2_MAXTEMP), false);
  2805. #endif
  2806. #if TEMP_SENSOR_3 != 0
  2807. #undef THERMISTOR_ID
  2808. #define THERMISTOR_ID TEMP_SENSOR_3
  2809. #include "thermistornames.h"
  2810. STATIC_ITEM("T3: " THERMISTOR_NAME, false, true);
  2811. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_3_MINTEMP), false);
  2812. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_3_MAXTEMP), false);
  2813. #endif
  2814. #if TEMP_SENSOR_4 != 0
  2815. #undef THERMISTOR_ID
  2816. #define THERMISTOR_ID TEMP_SENSOR_4
  2817. #include "thermistornames.h"
  2818. STATIC_ITEM("T4: " THERMISTOR_NAME, false, true);
  2819. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_4_MINTEMP), false);
  2820. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_4_MAXTEMP), false);
  2821. #endif
  2822. #if TEMP_SENSOR_BED != 0
  2823. #undef THERMISTOR_ID
  2824. #define THERMISTOR_ID TEMP_SENSOR_BED
  2825. #include "thermistornames.h"
  2826. STATIC_ITEM("TBed:" THERMISTOR_NAME, false, true);
  2827. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(BED_MINTEMP), false);
  2828. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(BED_MAXTEMP), false);
  2829. #endif
  2830. END_SCREEN();
  2831. }
  2832. /**
  2833. *
  2834. * About Printer > Board Info
  2835. *
  2836. */
  2837. void lcd_info_board_menu() {
  2838. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2839. START_SCREEN();
  2840. STATIC_ITEM(BOARD_NAME, true, true); // MyPrinterController
  2841. STATIC_ITEM(MSG_INFO_BAUDRATE ": " STRINGIFY(BAUDRATE), true); // Baud: 250000
  2842. STATIC_ITEM(MSG_INFO_PROTOCOL ": " PROTOCOL_VERSION, true); // Protocol: 1.0
  2843. #if POWER_SUPPLY == 0
  2844. STATIC_ITEM(MSG_INFO_PSU ": Generic", true);
  2845. #elif POWER_SUPPLY == 1
  2846. STATIC_ITEM(MSG_INFO_PSU ": ATX", true); // Power Supply: ATX
  2847. #elif POWER_SUPPLY == 2
  2848. STATIC_ITEM(MSG_INFO_PSU ": XBox", true); // Power Supply: XBox
  2849. #endif
  2850. END_SCREEN();
  2851. }
  2852. /**
  2853. *
  2854. * About Printer > Printer Info
  2855. *
  2856. */
  2857. void lcd_info_printer_menu() {
  2858. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2859. START_SCREEN();
  2860. STATIC_ITEM(MSG_MARLIN, true, true); // Marlin
  2861. STATIC_ITEM(SHORT_BUILD_VERSION, true); // x.x.x-Branch
  2862. STATIC_ITEM(STRING_DISTRIBUTION_DATE, true); // YYYY-MM-DD HH:MM
  2863. STATIC_ITEM(MACHINE_NAME, true); // My3DPrinter
  2864. STATIC_ITEM(WEBSITE_URL, true); // www.my3dprinter.com
  2865. STATIC_ITEM(MSG_INFO_EXTRUDERS ": " STRINGIFY(EXTRUDERS), true); // Extruders: 2
  2866. END_SCREEN();
  2867. }
  2868. /**
  2869. *
  2870. * "About Printer" submenu
  2871. *
  2872. */
  2873. void lcd_info_menu() {
  2874. START_MENU();
  2875. MENU_BACK(MSG_MAIN);
  2876. MENU_ITEM(submenu, MSG_INFO_PRINTER_MENU, lcd_info_printer_menu); // Printer Info >
  2877. MENU_ITEM(submenu, MSG_INFO_BOARD_MENU, lcd_info_board_menu); // Board Info >
  2878. MENU_ITEM(submenu, MSG_INFO_THERMISTOR_MENU, lcd_info_thermistors_menu); // Thermistors >
  2879. #if ENABLED(PRINTCOUNTER)
  2880. MENU_ITEM(submenu, MSG_INFO_STATS_MENU, lcd_info_stats_menu); // Printer Statistics >
  2881. #endif
  2882. END_MENU();
  2883. }
  2884. #endif // LCD_INFO_MENU
  2885. /**
  2886. *
  2887. * Filament Change Feature Screens
  2888. *
  2889. */
  2890. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  2891. // Portions from STATIC_ITEM...
  2892. #define HOTEND_STATUS_ITEM() do { \
  2893. if (_menuLineNr == _thisItemNr) { \
  2894. if (lcdDrawUpdate) { \
  2895. lcd_implementation_drawmenu_static(_lcdLineNr, PSTR(MSG_FILAMENT_CHANGE_NOZZLE), false, true); \
  2896. lcd_implementation_hotend_status(_lcdLineNr); \
  2897. } \
  2898. if (_skipStatic && encoderLine <= _thisItemNr) { \
  2899. encoderPosition += ENCODER_STEPS_PER_MENU_ITEM; \
  2900. ++encoderLine; \
  2901. } \
  2902. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT; \
  2903. } \
  2904. ++_thisItemNr; \
  2905. } while(0)
  2906. void lcd_advanced_pause_toocold_menu() {
  2907. START_MENU();
  2908. STATIC_ITEM(MSG_HEATING_FAILED_LCD, true, true);
  2909. STATIC_ITEM(MSG_FILAMENT_CHANGE_MINTEMP STRINGIFY(EXTRUDE_MINTEMP) ".", false, false);
  2910. MENU_BACK(MSG_BACK);
  2911. #if LCD_HEIGHT > 4
  2912. STATIC_ITEM(" ");
  2913. #endif
  2914. HOTEND_STATUS_ITEM();
  2915. END_MENU();
  2916. }
  2917. void lcd_advanced_pause_resume_print() {
  2918. advanced_pause_menu_response = ADVANCED_PAUSE_RESPONSE_RESUME_PRINT;
  2919. }
  2920. void lcd_advanced_pause_extrude_more() {
  2921. advanced_pause_menu_response = ADVANCED_PAUSE_RESPONSE_EXTRUDE_MORE;
  2922. }
  2923. void lcd_advanced_pause_option_menu() {
  2924. START_MENU();
  2925. #if LCD_HEIGHT > 2
  2926. STATIC_ITEM(MSG_FILAMENT_CHANGE_OPTION_HEADER, true, false);
  2927. #endif
  2928. MENU_ITEM(function, MSG_FILAMENT_CHANGE_OPTION_RESUME, lcd_advanced_pause_resume_print);
  2929. MENU_ITEM(function, MSG_FILAMENT_CHANGE_OPTION_EXTRUDE, lcd_advanced_pause_extrude_more);
  2930. END_MENU();
  2931. }
  2932. void lcd_advanced_pause_init_message() {
  2933. START_SCREEN();
  2934. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2935. STATIC_ITEM(MSG_FILAMENT_CHANGE_INIT_1);
  2936. #ifdef MSG_FILAMENT_CHANGE_INIT_2
  2937. STATIC_ITEM(MSG_FILAMENT_CHANGE_INIT_2);
  2938. #define __FC_LINES_A 3
  2939. #else
  2940. #define __FC_LINES_A 2
  2941. #endif
  2942. #ifdef MSG_FILAMENT_CHANGE_INIT_3
  2943. STATIC_ITEM(MSG_FILAMENT_CHANGE_INIT_3);
  2944. #define _FC_LINES_A (__FC_LINES_A + 1)
  2945. #else
  2946. #define _FC_LINES_A __FC_LINES_A
  2947. #endif
  2948. #if LCD_HEIGHT > _FC_LINES_A + 1
  2949. STATIC_ITEM(" ");
  2950. #endif
  2951. HOTEND_STATUS_ITEM();
  2952. END_SCREEN();
  2953. }
  2954. void lcd_advanced_pause_unload_message() {
  2955. START_SCREEN();
  2956. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2957. STATIC_ITEM(MSG_FILAMENT_CHANGE_UNLOAD_1);
  2958. #ifdef MSG_FILAMENT_CHANGE_UNLOAD_2
  2959. STATIC_ITEM(MSG_FILAMENT_CHANGE_UNLOAD_2);
  2960. #define __FC_LINES_B 3
  2961. #else
  2962. #define __FC_LINES_B 2
  2963. #endif
  2964. #ifdef MSG_FILAMENT_CHANGE_UNLOAD_3
  2965. STATIC_ITEM(MSG_FILAMENT_CHANGE_UNLOAD_3);
  2966. #define _FC_LINES_B (__FC_LINES_B + 1)
  2967. #else
  2968. #define _FC_LINES_B __FC_LINES_B
  2969. #endif
  2970. #if LCD_HEIGHT > _FC_LINES_B + 1
  2971. STATIC_ITEM(" ");
  2972. #endif
  2973. HOTEND_STATUS_ITEM();
  2974. END_SCREEN();
  2975. }
  2976. void lcd_advanced_pause_wait_for_nozzles_to_heat() {
  2977. START_SCREEN();
  2978. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2979. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEATING_1);
  2980. #ifdef MSG_FILAMENT_CHANGE_HEATING_2
  2981. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEATING_2);
  2982. #define _FC_LINES_C 3
  2983. #else
  2984. #define _FC_LINES_C 2
  2985. #endif
  2986. #if LCD_HEIGHT > _FC_LINES_C + 1
  2987. STATIC_ITEM(" ");
  2988. #endif
  2989. HOTEND_STATUS_ITEM();
  2990. END_SCREEN();
  2991. }
  2992. void lcd_advanced_pause_heat_nozzle() {
  2993. START_SCREEN();
  2994. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2995. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEAT_1);
  2996. #ifdef MSG_FILAMENT_CHANGE_INSERT_2
  2997. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEAT_2);
  2998. #define _FC_LINES_D 3
  2999. #else
  3000. #define _FC_LINES_D 2
  3001. #endif
  3002. #if LCD_HEIGHT > _FC_LINES_D + 1
  3003. STATIC_ITEM(" ");
  3004. #endif
  3005. HOTEND_STATUS_ITEM();
  3006. END_SCREEN();
  3007. }
  3008. void lcd_advanced_pause_insert_message() {
  3009. START_SCREEN();
  3010. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3011. STATIC_ITEM(MSG_FILAMENT_CHANGE_INSERT_1);
  3012. #ifdef MSG_FILAMENT_CHANGE_INSERT_2
  3013. STATIC_ITEM(MSG_FILAMENT_CHANGE_INSERT_2);
  3014. #define __FC_LINES_E 3
  3015. #else
  3016. #define __FC_LINES_E 2
  3017. #endif
  3018. #ifdef MSG_FILAMENT_CHANGE_INSERT_3
  3019. STATIC_ITEM(MSG_FILAMENT_CHANGE_INSERT_3);
  3020. #define _FC_LINES_E (__FC_LINES_E + 1)
  3021. #else
  3022. #define _FC_LINES_E __FC_LINES_E
  3023. #endif
  3024. #if LCD_HEIGHT > _FC_LINES_E + 1
  3025. STATIC_ITEM(" ");
  3026. #endif
  3027. HOTEND_STATUS_ITEM();
  3028. END_SCREEN();
  3029. }
  3030. void lcd_advanced_pause_load_message() {
  3031. START_SCREEN();
  3032. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3033. STATIC_ITEM(MSG_FILAMENT_CHANGE_LOAD_1);
  3034. #ifdef MSG_FILAMENT_CHANGE_LOAD_2
  3035. STATIC_ITEM(MSG_FILAMENT_CHANGE_LOAD_2);
  3036. #define __FC_LINES_F 3
  3037. #else
  3038. #define __FC_LINES_F 2
  3039. #endif
  3040. #ifdef MSG_FILAMENT_CHANGE_LOAD_3
  3041. STATIC_ITEM(MSG_FILAMENT_CHANGE_LOAD_3);
  3042. #define _FC_LINES_F (__FC_LINES_F + 1)
  3043. #else
  3044. #define _FC_LINES_F __FC_LINES_F
  3045. #endif
  3046. #if LCD_HEIGHT > _FC_LINES_F + 1
  3047. STATIC_ITEM(" ");
  3048. #endif
  3049. HOTEND_STATUS_ITEM();
  3050. END_SCREEN();
  3051. }
  3052. void lcd_advanced_pause_extrude_message() {
  3053. START_SCREEN();
  3054. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3055. STATIC_ITEM(MSG_FILAMENT_CHANGE_EXTRUDE_1);
  3056. #ifdef MSG_FILAMENT_CHANGE_EXTRUDE_2
  3057. STATIC_ITEM(MSG_FILAMENT_CHANGE_EXTRUDE_2);
  3058. #define __FC_LINES_G 3
  3059. #else
  3060. #define __FC_LINES_G 2
  3061. #endif
  3062. #ifdef MSG_FILAMENT_CHANGE_EXTRUDE_3
  3063. STATIC_ITEM(MSG_FILAMENT_CHANGE_EXTRUDE_3);
  3064. #define _FC_LINES_G (__FC_LINES_G + 1)
  3065. #else
  3066. #define _FC_LINES_G __FC_LINES_G
  3067. #endif
  3068. #if LCD_HEIGHT > _FC_LINES_G + 1
  3069. STATIC_ITEM(" ");
  3070. #endif
  3071. HOTEND_STATUS_ITEM();
  3072. END_SCREEN();
  3073. }
  3074. void lcd_advanced_pause_resume_message() {
  3075. START_SCREEN();
  3076. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3077. STATIC_ITEM(MSG_FILAMENT_CHANGE_RESUME_1);
  3078. #ifdef MSG_FILAMENT_CHANGE_RESUME_2
  3079. STATIC_ITEM(MSG_FILAMENT_CHANGE_RESUME_2);
  3080. #endif
  3081. #ifdef MSG_FILAMENT_CHANGE_RESUME_3
  3082. STATIC_ITEM(MSG_FILAMENT_CHANGE_RESUME_3);
  3083. #endif
  3084. END_SCREEN();
  3085. }
  3086. void lcd_advanced_pause_show_message(const AdvancedPauseMessage message) {
  3087. switch (message) {
  3088. case ADVANCED_PAUSE_MESSAGE_INIT:
  3089. defer_return_to_status = true;
  3090. lcd_goto_screen(lcd_advanced_pause_init_message);
  3091. break;
  3092. case ADVANCED_PAUSE_MESSAGE_UNLOAD:
  3093. defer_return_to_status = true;
  3094. lcd_goto_screen(lcd_advanced_pause_unload_message);
  3095. break;
  3096. case ADVANCED_PAUSE_MESSAGE_INSERT:
  3097. defer_return_to_status = true;
  3098. lcd_goto_screen(lcd_advanced_pause_insert_message);
  3099. break;
  3100. case ADVANCED_PAUSE_MESSAGE_LOAD:
  3101. defer_return_to_status = true;
  3102. lcd_goto_screen(lcd_advanced_pause_load_message);
  3103. break;
  3104. case ADVANCED_PAUSE_MESSAGE_EXTRUDE:
  3105. defer_return_to_status = true;
  3106. lcd_goto_screen(lcd_advanced_pause_extrude_message);
  3107. break;
  3108. case ADVANCED_PAUSE_MESSAGE_CLICK_TO_HEAT_NOZZLE:
  3109. defer_return_to_status = true;
  3110. lcd_goto_screen(lcd_advanced_pause_heat_nozzle);
  3111. break;
  3112. case ADVANCED_PAUSE_MESSAGE_WAIT_FOR_NOZZLES_TO_HEAT:
  3113. defer_return_to_status = true;
  3114. lcd_goto_screen(lcd_advanced_pause_wait_for_nozzles_to_heat);
  3115. break;
  3116. case ADVANCED_PAUSE_MESSAGE_OPTION:
  3117. defer_return_to_status = true;
  3118. advanced_pause_menu_response = ADVANCED_PAUSE_RESPONSE_WAIT_FOR;
  3119. lcd_goto_screen(lcd_advanced_pause_option_menu);
  3120. break;
  3121. case ADVANCED_PAUSE_MESSAGE_RESUME:
  3122. defer_return_to_status = true;
  3123. lcd_goto_screen(lcd_advanced_pause_resume_message);
  3124. break;
  3125. case ADVANCED_PAUSE_MESSAGE_STATUS:
  3126. lcd_return_to_status();
  3127. break;
  3128. }
  3129. }
  3130. #endif // ADVANCED_PAUSE_FEATURE
  3131. /**
  3132. *
  3133. * Functions for editing single values
  3134. *
  3135. * The "DEFINE_MENU_EDIT_TYPE" macro generates the functions needed to edit a numerical value.
  3136. *
  3137. * For example, DEFINE_MENU_EDIT_TYPE(int, int3, itostr3, 1) expands into these functions:
  3138. *
  3139. * bool _menu_edit_int3();
  3140. * void menu_edit_int3(); // edit int (interactively)
  3141. * void menu_edit_callback_int3(); // edit int (interactively) with callback on completion
  3142. * void _menu_action_setting_edit_int3(const char * const pstr, int * const ptr, const int minValue, const int maxValue);
  3143. * void menu_action_setting_edit_int3(const char * const pstr, int * const ptr, const int minValue, const int maxValue);
  3144. * void menu_action_setting_edit_callback_int3(const char * const pstr, int * const ptr, const int minValue, const int maxValue, const screenFunc_t callback, const bool live); // edit int with callback
  3145. *
  3146. * You can then use one of the menu macros to present the edit interface:
  3147. * MENU_ITEM_EDIT(int3, MSG_SPEED, &feedrate_percentage, 10, 999)
  3148. *
  3149. * This expands into a more primitive menu item:
  3150. * MENU_ITEM(setting_edit_int3, MSG_SPEED, PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  3151. *
  3152. * ...which calls:
  3153. * menu_action_setting_edit_int3(PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  3154. */
  3155. #define DEFINE_MENU_EDIT_TYPE(_type, _name, _strFunc, _scale) \
  3156. bool _menu_edit_ ## _name() { \
  3157. ENCODER_DIRECTION_NORMAL(); \
  3158. if ((int32_t)encoderPosition < 0) encoderPosition = 0; \
  3159. if ((int32_t)encoderPosition > maxEditValue) encoderPosition = maxEditValue; \
  3160. if (lcdDrawUpdate) \
  3161. lcd_implementation_drawedit(editLabel, _strFunc(((_type)((int32_t)encoderPosition + minEditValue)) * (1.0 / _scale))); \
  3162. if (lcd_clicked || (liveEdit && lcdDrawUpdate)) { \
  3163. _type value = ((_type)((int32_t)encoderPosition + minEditValue)) * (1.0 / _scale); \
  3164. if (editValue != NULL) *((_type*)editValue) = value; \
  3165. if (liveEdit) (*callbackFunc)(); \
  3166. if (lcd_clicked) lcd_goto_previous_menu(); \
  3167. } \
  3168. return lcd_clicked; \
  3169. } \
  3170. void menu_edit_ ## _name() { _menu_edit_ ## _name(); } \
  3171. void menu_edit_callback_ ## _name() { if (_menu_edit_ ## _name()) (*callbackFunc)(); } \
  3172. void _menu_action_setting_edit_ ## _name(const char * const pstr, _type* const ptr, const _type minValue, const _type maxValue) { \
  3173. lcd_save_previous_screen(); \
  3174. \
  3175. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; \
  3176. \
  3177. editLabel = pstr; \
  3178. editValue = ptr; \
  3179. minEditValue = minValue * _scale; \
  3180. maxEditValue = maxValue * _scale - minEditValue; \
  3181. encoderPosition = (*ptr) * _scale - minEditValue; \
  3182. } \
  3183. void menu_action_setting_edit_ ## _name(const char * const pstr, _type * const ptr, const _type minValue, const _type maxValue) { \
  3184. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  3185. currentScreen = menu_edit_ ## _name; \
  3186. } \
  3187. void menu_action_setting_edit_callback_ ## _name(const char * const pstr, _type * const ptr, const _type minValue, const _type maxValue, const screenFunc_t callback, const bool live) { \
  3188. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  3189. currentScreen = menu_edit_callback_ ## _name; \
  3190. callbackFunc = callback; \
  3191. liveEdit = live; \
  3192. } \
  3193. typedef void _name
  3194. DEFINE_MENU_EDIT_TYPE(int, int3, itostr3, 1);
  3195. DEFINE_MENU_EDIT_TYPE(float, float3, ftostr3, 1.0);
  3196. DEFINE_MENU_EDIT_TYPE(float, float32, ftostr32, 100.0);
  3197. DEFINE_MENU_EDIT_TYPE(float, float43, ftostr43sign, 1000.0);
  3198. DEFINE_MENU_EDIT_TYPE(float, float5, ftostr5rj, 0.01);
  3199. DEFINE_MENU_EDIT_TYPE(float, float51, ftostr51sign, 10.0);
  3200. DEFINE_MENU_EDIT_TYPE(float, float52, ftostr52sign, 100.0);
  3201. DEFINE_MENU_EDIT_TYPE(float, float62, ftostr62rj, 100.0);
  3202. DEFINE_MENU_EDIT_TYPE(unsigned long, long5, ftostr5rj, 0.01);
  3203. /**
  3204. *
  3205. * Handlers for RepRap World Keypad input
  3206. *
  3207. */
  3208. #if ENABLED(REPRAPWORLD_KEYPAD)
  3209. void _reprapworld_keypad_move(AxisEnum axis, int dir) {
  3210. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  3211. encoderPosition = dir;
  3212. switch (axis) {
  3213. case X_AXIS: lcd_move_x(); break;
  3214. case Y_AXIS: lcd_move_y(); break;
  3215. case Z_AXIS: lcd_move_z();
  3216. default: break;
  3217. }
  3218. }
  3219. void reprapworld_keypad_move_z_up() { _reprapworld_keypad_move(Z_AXIS, 1); }
  3220. void reprapworld_keypad_move_z_down() { _reprapworld_keypad_move(Z_AXIS, -1); }
  3221. void reprapworld_keypad_move_x_left() { _reprapworld_keypad_move(X_AXIS, -1); }
  3222. void reprapworld_keypad_move_x_right() { _reprapworld_keypad_move(X_AXIS, 1); }
  3223. void reprapworld_keypad_move_y_up() { _reprapworld_keypad_move(Y_AXIS, -1); }
  3224. void reprapworld_keypad_move_y_down() { _reprapworld_keypad_move(Y_AXIS, 1); }
  3225. void reprapworld_keypad_move_home() { enqueue_and_echo_commands_P(PSTR("G28")); } // move all axes home and wait
  3226. void reprapworld_keypad_move_menu() { lcd_goto_screen(lcd_move_menu); }
  3227. inline void handle_reprapworld_keypad() {
  3228. static uint8_t keypad_debounce = 0;
  3229. if (!REPRAPWORLD_KEYPAD_PRESSED) {
  3230. if (keypad_debounce > 0) keypad_debounce--;
  3231. }
  3232. else if (!keypad_debounce) {
  3233. keypad_debounce = 2;
  3234. if (REPRAPWORLD_KEYPAD_MOVE_MENU) reprapworld_keypad_move_menu();
  3235. #if DISABLED(DELTA) && Z_HOME_DIR == -1
  3236. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) reprapworld_keypad_move_z_up();
  3237. #endif
  3238. if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS]) {
  3239. #if ENABLED(DELTA) || Z_HOME_DIR != -1
  3240. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) reprapworld_keypad_move_z_up();
  3241. #endif
  3242. if (REPRAPWORLD_KEYPAD_MOVE_Z_DOWN) reprapworld_keypad_move_z_down();
  3243. if (REPRAPWORLD_KEYPAD_MOVE_X_LEFT) reprapworld_keypad_move_x_left();
  3244. if (REPRAPWORLD_KEYPAD_MOVE_X_RIGHT) reprapworld_keypad_move_x_right();
  3245. if (REPRAPWORLD_KEYPAD_MOVE_Y_DOWN) reprapworld_keypad_move_y_down();
  3246. if (REPRAPWORLD_KEYPAD_MOVE_Y_UP) reprapworld_keypad_move_y_up();
  3247. }
  3248. else {
  3249. if (REPRAPWORLD_KEYPAD_MOVE_HOME) reprapworld_keypad_move_home();
  3250. }
  3251. }
  3252. }
  3253. #endif // REPRAPWORLD_KEYPAD
  3254. /**
  3255. *
  3256. * Menu actions
  3257. *
  3258. */
  3259. void _menu_action_back() { lcd_goto_previous_menu(); }
  3260. void menu_action_submenu(screenFunc_t func) { lcd_save_previous_screen(); lcd_goto_screen(func); }
  3261. void menu_action_gcode(const char* pgcode) { enqueue_and_echo_commands_P(pgcode); }
  3262. void menu_action_function(screenFunc_t func) { (*func)(); }
  3263. #if ENABLED(SDSUPPORT)
  3264. void menu_action_sdfile(const char* filename, char* longFilename) {
  3265. UNUSED(longFilename);
  3266. card.openAndPrintFile(filename);
  3267. lcd_return_to_status();
  3268. }
  3269. void menu_action_sddirectory(const char* filename, char* longFilename) {
  3270. UNUSED(longFilename);
  3271. card.chdir(filename);
  3272. encoderPosition = 0;
  3273. screen_changed = true;
  3274. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  3275. }
  3276. #endif // SDSUPPORT
  3277. void menu_action_setting_edit_bool(const char* pstr, bool* ptr) { UNUSED(pstr); *ptr ^= true; lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; }
  3278. void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, screenFunc_t callback) {
  3279. menu_action_setting_edit_bool(pstr, ptr);
  3280. (*callback)();
  3281. }
  3282. #endif // ULTIPANEL
  3283. void lcd_init() {
  3284. lcd_implementation_init(
  3285. #if ENABLED(LCD_PROGRESS_BAR)
  3286. true
  3287. #endif
  3288. );
  3289. #if ENABLED(NEWPANEL)
  3290. #if BUTTON_EXISTS(EN1)
  3291. SET_INPUT_PULLUP(BTN_EN1);
  3292. #endif
  3293. #if BUTTON_EXISTS(EN2)
  3294. SET_INPUT_PULLUP(BTN_EN2);
  3295. #endif
  3296. #if BUTTON_EXISTS(ENC)
  3297. SET_INPUT_PULLUP(BTN_ENC);
  3298. #endif
  3299. #if ENABLED(REPRAPWORLD_KEYPAD)
  3300. SET_OUTPUT(SHIFT_CLK);
  3301. OUT_WRITE(SHIFT_LD, HIGH);
  3302. SET_INPUT_PULLUP(SHIFT_OUT);
  3303. #endif
  3304. #if BUTTON_EXISTS(UP)
  3305. SET_INPUT(BTN_UP);
  3306. #endif
  3307. #if BUTTON_EXISTS(DWN)
  3308. SET_INPUT(BTN_DWN);
  3309. #endif
  3310. #if BUTTON_EXISTS(LFT)
  3311. SET_INPUT(BTN_LFT);
  3312. #endif
  3313. #if BUTTON_EXISTS(RT)
  3314. SET_INPUT(BTN_RT);
  3315. #endif
  3316. #else // !NEWPANEL
  3317. #if ENABLED(SR_LCD_2W_NL) // Non latching 2 wire shift register
  3318. SET_OUTPUT(SR_DATA_PIN);
  3319. SET_OUTPUT(SR_CLK_PIN);
  3320. #elif defined(SHIFT_CLK)
  3321. SET_OUTPUT(SHIFT_CLK);
  3322. OUT_WRITE(SHIFT_LD, HIGH);
  3323. OUT_WRITE(SHIFT_EN, LOW);
  3324. SET_INPUT_PULLUP(SHIFT_OUT);
  3325. #endif // SR_LCD_2W_NL
  3326. #endif // !NEWPANEL
  3327. #if ENABLED(SDSUPPORT) && PIN_EXISTS(SD_DETECT)
  3328. SET_INPUT_PULLUP(SD_DETECT_PIN);
  3329. lcd_sd_status = 2; // UNKNOWN
  3330. #endif
  3331. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  3332. slow_buttons = 0;
  3333. #endif
  3334. lcd_buttons_update();
  3335. #if ENABLED(ULTIPANEL)
  3336. encoderDiff = 0;
  3337. #endif
  3338. }
  3339. int lcd_strlen(const char* s) {
  3340. int i = 0, j = 0;
  3341. while (s[i]) {
  3342. #if ENABLED(MAPPER_NON)
  3343. j++;
  3344. #else
  3345. if ((s[i] & 0xC0u) != 0x80u) j++;
  3346. #endif
  3347. i++;
  3348. }
  3349. return j;
  3350. }
  3351. int lcd_strlen_P(const char* s) {
  3352. int j = 0;
  3353. while (pgm_read_byte(s)) {
  3354. #if ENABLED(MAPPER_NON)
  3355. j++;
  3356. #else
  3357. if ((pgm_read_byte(s) & 0xC0u) != 0x80u) j++;
  3358. #endif
  3359. s++;
  3360. }
  3361. return j;
  3362. }
  3363. bool lcd_blink() {
  3364. static uint8_t blink = 0;
  3365. static millis_t next_blink_ms = 0;
  3366. millis_t ms = millis();
  3367. if (ELAPSED(ms, next_blink_ms)) {
  3368. blink ^= 0xFF;
  3369. next_blink_ms = ms + 1000 - LCD_UPDATE_INTERVAL / 2;
  3370. }
  3371. return blink != 0;
  3372. }
  3373. /**
  3374. * Update the LCD, read encoder buttons, etc.
  3375. * - Read button states
  3376. * - Check the SD Card slot state
  3377. * - Act on RepRap World keypad input
  3378. * - Update the encoder position
  3379. * - Apply acceleration to the encoder position
  3380. * - Set lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NOW on controller events
  3381. * - Reset the Info Screen timeout if there's any input
  3382. * - Update status indicators, if any
  3383. *
  3384. * Run the current LCD menu handler callback function:
  3385. * - Call the handler only if lcdDrawUpdate != LCDVIEW_NONE
  3386. * - Before calling the handler, LCDVIEW_CALL_NO_REDRAW => LCDVIEW_NONE
  3387. * - Call the menu handler. Menu handlers should do the following:
  3388. * - If a value changes, set lcdDrawUpdate to LCDVIEW_REDRAW_NOW and draw the value
  3389. * (Encoder events automatically set lcdDrawUpdate for you.)
  3390. * - if (lcdDrawUpdate) { redraw }
  3391. * - Before exiting the handler set lcdDrawUpdate to:
  3392. * - LCDVIEW_CLEAR_CALL_REDRAW to clear screen and set LCDVIEW_CALL_REDRAW_NEXT.
  3393. * - LCDVIEW_REDRAW_NOW to draw now (including remaining stripes).
  3394. * - LCDVIEW_CALL_REDRAW_NEXT to draw now and get LCDVIEW_REDRAW_NOW on the next loop.
  3395. * - LCDVIEW_CALL_NO_REDRAW to draw now and get LCDVIEW_NONE on the next loop.
  3396. * - NOTE: For graphical displays menu handlers may be called 2 or more times per loop,
  3397. * so don't change lcdDrawUpdate without considering this.
  3398. *
  3399. * After the menu handler callback runs (or not):
  3400. * - Clear the LCD if lcdDrawUpdate == LCDVIEW_CLEAR_CALL_REDRAW
  3401. * - Update lcdDrawUpdate for the next loop (i.e., move one state down, usually)
  3402. *
  3403. * No worries. This function is only called from the main thread.
  3404. */
  3405. void lcd_update() {
  3406. #if ENABLED(ULTIPANEL)
  3407. static millis_t return_to_status_ms = 0;
  3408. manage_manual_move();
  3409. lcd_buttons_update();
  3410. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3411. const bool UBL_CONDITION = !ubl.has_control_of_lcd_panel;
  3412. #else
  3413. constexpr bool UBL_CONDITION = true;
  3414. #endif
  3415. // If the action button is pressed...
  3416. if (UBL_CONDITION && LCD_CLICKED) {
  3417. if (!wait_for_unclick) { // If not waiting for a debounce release:
  3418. wait_for_unclick = true; // Set debounce flag to ignore continous clicks
  3419. lcd_clicked = !wait_for_user; // Keep the click if not waiting for a user-click
  3420. wait_for_user = false; // Any click clears wait for user
  3421. lcd_quick_feedback(); // Always make a click sound
  3422. }
  3423. }
  3424. else wait_for_unclick = false;
  3425. #endif
  3426. #if ENABLED(SDSUPPORT) && PIN_EXISTS(SD_DETECT)
  3427. const bool sd_status = IS_SD_INSERTED;
  3428. if (sd_status != lcd_sd_status && lcd_detected()) {
  3429. if (sd_status) {
  3430. card.initsd();
  3431. if (lcd_sd_status != 2) LCD_MESSAGEPGM(MSG_SD_INSERTED);
  3432. }
  3433. else {
  3434. card.release();
  3435. if (lcd_sd_status != 2) LCD_MESSAGEPGM(MSG_SD_REMOVED);
  3436. }
  3437. lcd_sd_status = sd_status;
  3438. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  3439. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  3440. #if ENABLED(LCD_PROGRESS_BAR)
  3441. currentScreen == lcd_status_screen
  3442. #endif
  3443. );
  3444. }
  3445. #endif // SDSUPPORT && SD_DETECT_PIN
  3446. const millis_t ms = millis();
  3447. if (ELAPSED(ms, next_lcd_update_ms)
  3448. #if ENABLED(DOGLCD)
  3449. || drawing_screen
  3450. #endif
  3451. ) {
  3452. next_lcd_update_ms = ms + LCD_UPDATE_INTERVAL;
  3453. #if ENABLED(LCD_HAS_STATUS_INDICATORS)
  3454. lcd_implementation_update_indicators();
  3455. #endif
  3456. #if ENABLED(ULTIPANEL)
  3457. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  3458. slow_buttons = lcd_implementation_read_slow_buttons(); // buttons which take too long to read in interrupt context
  3459. #endif
  3460. #if ENABLED(REPRAPWORLD_KEYPAD)
  3461. handle_reprapworld_keypad();
  3462. #endif
  3463. bool encoderPastThreshold = (abs(encoderDiff) >= ENCODER_PULSES_PER_STEP);
  3464. if (encoderPastThreshold || lcd_clicked) {
  3465. if (encoderPastThreshold) {
  3466. int32_t encoderMultiplier = 1;
  3467. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  3468. if (encoderRateMultiplierEnabled) {
  3469. int32_t encoderMovementSteps = abs(encoderDiff) / ENCODER_PULSES_PER_STEP;
  3470. if (lastEncoderMovementMillis != 0) {
  3471. // Note that the rate is always calculated between to passes through the
  3472. // loop and that the abs of the encoderDiff value is tracked.
  3473. float encoderStepRate = (float)(encoderMovementSteps) / ((float)(ms - lastEncoderMovementMillis)) * 1000.0;
  3474. if (encoderStepRate >= ENCODER_100X_STEPS_PER_SEC) encoderMultiplier = 100;
  3475. else if (encoderStepRate >= ENCODER_10X_STEPS_PER_SEC) encoderMultiplier = 10;
  3476. #if ENABLED(ENCODER_RATE_MULTIPLIER_DEBUG)
  3477. SERIAL_ECHO_START;
  3478. SERIAL_ECHOPAIR("Enc Step Rate: ", encoderStepRate);
  3479. SERIAL_ECHOPAIR(" Multiplier: ", encoderMultiplier);
  3480. SERIAL_ECHOPAIR(" ENCODER_10X_STEPS_PER_SEC: ", ENCODER_10X_STEPS_PER_SEC);
  3481. SERIAL_ECHOPAIR(" ENCODER_100X_STEPS_PER_SEC: ", ENCODER_100X_STEPS_PER_SEC);
  3482. SERIAL_EOL;
  3483. #endif // ENCODER_RATE_MULTIPLIER_DEBUG
  3484. }
  3485. lastEncoderMovementMillis = ms;
  3486. } // encoderRateMultiplierEnabled
  3487. #endif // ENCODER_RATE_MULTIPLIER
  3488. encoderPosition += (encoderDiff * encoderMultiplier) / ENCODER_PULSES_PER_STEP;
  3489. encoderDiff = 0;
  3490. }
  3491. return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS;
  3492. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  3493. }
  3494. #endif // ULTIPANEL
  3495. // We arrive here every ~100ms when idling often enough.
  3496. // Instead of tracking the changes simply redraw the Info Screen ~1 time a second.
  3497. static int8_t lcd_status_update_delay = 1; // first update one loop delayed
  3498. if (
  3499. #if ENABLED(ULTIPANEL)
  3500. currentScreen == lcd_status_screen &&
  3501. #endif
  3502. !lcd_status_update_delay--
  3503. ) {
  3504. lcd_status_update_delay = 9
  3505. #if ENABLED(DOGLCD)
  3506. + 3
  3507. #endif
  3508. ;
  3509. max_display_update_time--;
  3510. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  3511. }
  3512. // then we want to use 1/2 of the time only.
  3513. uint16_t bbr2 = planner.block_buffer_runtime() >> 1;
  3514. #if ENABLED(DOGLCD)
  3515. if ((lcdDrawUpdate || drawing_screen) && (!bbr2 || (bbr2 > max_display_update_time)))
  3516. #else
  3517. if (lcdDrawUpdate && (!bbr2 || (bbr2 > max_display_update_time)))
  3518. #endif
  3519. {
  3520. #if ENABLED(DOGLCD)
  3521. if (!drawing_screen)
  3522. #endif
  3523. {
  3524. switch (lcdDrawUpdate) {
  3525. case LCDVIEW_CALL_NO_REDRAW:
  3526. lcdDrawUpdate = LCDVIEW_NONE;
  3527. break;
  3528. case LCDVIEW_CLEAR_CALL_REDRAW: // set by handlers, then altered after (rarely occurs here)
  3529. case LCDVIEW_CALL_REDRAW_NEXT: // set by handlers, then altered after (never occurs here?)
  3530. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  3531. case LCDVIEW_REDRAW_NOW: // set above, or by a handler through LCDVIEW_CALL_REDRAW_NEXT
  3532. case LCDVIEW_NONE:
  3533. break;
  3534. } // switch
  3535. }
  3536. #if ENABLED(ULTIPANEL)
  3537. #define CURRENTSCREEN() (*currentScreen)(), lcd_clicked = false
  3538. #else
  3539. #define CURRENTSCREEN() lcd_status_screen()
  3540. #endif
  3541. #if ENABLED(DOGLCD) // Changes due to different driver architecture of the DOGM display
  3542. if (!drawing_screen) {
  3543. u8g.firstPage();
  3544. drawing_screen = 1;
  3545. }
  3546. lcd_setFont(FONT_MENU);
  3547. u8g.setColorIndex(1);
  3548. CURRENTSCREEN();
  3549. if (drawing_screen && (drawing_screen = u8g.nextPage())) {
  3550. NOLESS(max_display_update_time, millis() - ms);
  3551. return;
  3552. }
  3553. #else
  3554. CURRENTSCREEN();
  3555. #endif
  3556. NOLESS(max_display_update_time, millis() - ms);
  3557. }
  3558. #if ENABLED(ULTIPANEL)
  3559. // Return to Status Screen after a timeout
  3560. if (currentScreen == lcd_status_screen || defer_return_to_status)
  3561. return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS;
  3562. else if (ELAPSED(ms, return_to_status_ms))
  3563. lcd_return_to_status();
  3564. #endif // ULTIPANEL
  3565. #if ENABLED(DOGLCD)
  3566. if (!drawing_screen)
  3567. #endif
  3568. {
  3569. switch (lcdDrawUpdate) {
  3570. case LCDVIEW_CLEAR_CALL_REDRAW:
  3571. lcd_implementation_clear();
  3572. case LCDVIEW_CALL_REDRAW_NEXT:
  3573. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  3574. break;
  3575. case LCDVIEW_REDRAW_NOW:
  3576. lcdDrawUpdate = LCDVIEW_NONE;
  3577. break;
  3578. case LCDVIEW_NONE:
  3579. break;
  3580. } // switch
  3581. }
  3582. } // ELAPSED(ms, next_lcd_update_ms)
  3583. }
  3584. #if DISABLED(STATUS_MESSAGE_SCROLLING)
  3585. void set_utf_strlen(char* s, uint8_t n) {
  3586. uint8_t i = 0, j = 0;
  3587. while (s[i] && (j < n)) {
  3588. #if ENABLED(MAPPER_NON)
  3589. j++;
  3590. #else
  3591. if ((s[i] & 0xC0u) != 0x80u) j++;
  3592. #endif
  3593. i++;
  3594. }
  3595. while (j++ < n) s[i++] = ' ';
  3596. s[i] = '\0';
  3597. }
  3598. #endif // !STATUS_MESSAGE_SCROLLING
  3599. void lcd_finishstatus(bool persist=false) {
  3600. #if DISABLED(STATUS_MESSAGE_SCROLLING)
  3601. set_utf_strlen(lcd_status_message, LCD_WIDTH);
  3602. #endif
  3603. #if !(ENABLED(LCD_PROGRESS_BAR) && (PROGRESS_MSG_EXPIRE > 0))
  3604. UNUSED(persist);
  3605. #endif
  3606. #if ENABLED(LCD_PROGRESS_BAR)
  3607. progress_bar_ms = millis();
  3608. #if PROGRESS_MSG_EXPIRE > 0
  3609. expire_status_ms = persist ? 0 : progress_bar_ms + PROGRESS_MSG_EXPIRE;
  3610. #endif
  3611. #endif
  3612. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  3613. #if ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
  3614. previous_lcd_status_ms = millis(); //get status message to show up for a while
  3615. #endif
  3616. #if ENABLED(STATUS_MESSAGE_SCROLLING)
  3617. status_scroll_pos = 0;
  3618. #endif
  3619. }
  3620. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  3621. void dontExpireStatus() { expire_status_ms = 0; }
  3622. #endif
  3623. bool lcd_hasstatus() { return (lcd_status_message[0] != '\0'); }
  3624. void lcd_setstatus(const char * const message, const bool persist) {
  3625. if (lcd_status_message_level > 0) return;
  3626. strncpy(lcd_status_message, message, 3 * (LCD_WIDTH));
  3627. lcd_finishstatus(persist);
  3628. }
  3629. void lcd_setstatusPGM(const char * const message, int8_t level) {
  3630. if (level < 0) level = lcd_status_message_level = 0;
  3631. if (level < lcd_status_message_level) return;
  3632. lcd_status_message_level = level;
  3633. strncpy_P(lcd_status_message, message, 3 * (LCD_WIDTH));
  3634. lcd_finishstatus(level > 0);
  3635. }
  3636. void lcd_status_printf_P(const uint8_t level, const char * const fmt, ...) {
  3637. if (level < lcd_status_message_level) return;
  3638. lcd_status_message_level = level;
  3639. va_list args;
  3640. va_start(args, fmt);
  3641. vsnprintf_P(lcd_status_message, 3 * (LCD_WIDTH), fmt, args);
  3642. va_end(args);
  3643. lcd_finishstatus(level > 0);
  3644. }
  3645. void lcd_setalertstatuspgm(const char * const message) {
  3646. lcd_setstatusPGM(message, 1);
  3647. #if ENABLED(ULTIPANEL)
  3648. lcd_return_to_status();
  3649. #endif
  3650. }
  3651. void lcd_reset_alert_level() { lcd_status_message_level = 0; }
  3652. #if HAS_LCD_CONTRAST
  3653. void set_lcd_contrast(const uint16_t value) {
  3654. lcd_contrast = constrain(value, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX);
  3655. u8g.setContrast(lcd_contrast);
  3656. }
  3657. #endif
  3658. #if ENABLED(ULTIPANEL)
  3659. /**
  3660. * Setup Rotary Encoder Bit Values (for two pin encoders to indicate movement)
  3661. * These values are independent of which pins are used for EN_A and EN_B indications
  3662. * The rotary encoder part is also independent to the chipset used for the LCD
  3663. */
  3664. #if defined(EN_A) && defined(EN_B)
  3665. #define encrot0 0
  3666. #define encrot1 2
  3667. #define encrot2 3
  3668. #define encrot3 1
  3669. #endif
  3670. #define GET_BUTTON_STATES(DST) \
  3671. uint8_t new_##DST = 0; \
  3672. WRITE(SHIFT_LD, LOW); \
  3673. WRITE(SHIFT_LD, HIGH); \
  3674. for (int8_t i = 0; i < 8; i++) { \
  3675. new_##DST >>= 1; \
  3676. if (READ(SHIFT_OUT)) SBI(new_##DST, 7); \
  3677. WRITE(SHIFT_CLK, HIGH); \
  3678. WRITE(SHIFT_CLK, LOW); \
  3679. } \
  3680. DST = ~new_##DST; //invert it, because a pressed switch produces a logical 0
  3681. /**
  3682. * Read encoder buttons from the hardware registers
  3683. * Warning: This function is called from interrupt context!
  3684. */
  3685. void lcd_buttons_update() {
  3686. static uint8_t lastEncoderBits;
  3687. millis_t now = millis();
  3688. if (ELAPSED(now, next_button_update_ms)) {
  3689. #if ENABLED(NEWPANEL)
  3690. uint8_t newbutton = 0;
  3691. #if BUTTON_EXISTS(EN1)
  3692. if (BUTTON_PRESSED(EN1)) newbutton |= EN_A;
  3693. #endif
  3694. #if BUTTON_EXISTS(EN2)
  3695. if (BUTTON_PRESSED(EN2)) newbutton |= EN_B;
  3696. #endif
  3697. #if BUTTON_EXISTS(ENC)
  3698. if (BUTTON_PRESSED(ENC)) newbutton |= EN_C;
  3699. #endif
  3700. #if LCD_HAS_DIRECTIONAL_BUTTONS
  3701. // Manage directional buttons
  3702. #if ENABLED(REVERSE_MENU_DIRECTION)
  3703. #define _ENCODER_UD_STEPS (ENCODER_STEPS_PER_MENU_ITEM * encoderDirection)
  3704. #else
  3705. #define _ENCODER_UD_STEPS ENCODER_STEPS_PER_MENU_ITEM
  3706. #endif
  3707. #if ENABLED(REVERSE_ENCODER_DIRECTION)
  3708. #define ENCODER_UD_STEPS _ENCODER_UD_STEPS
  3709. #define ENCODER_LR_PULSES ENCODER_PULSES_PER_STEP
  3710. #else
  3711. #define ENCODER_UD_STEPS -(_ENCODER_UD_STEPS)
  3712. #define ENCODER_LR_PULSES -(ENCODER_PULSES_PER_STEP)
  3713. #endif
  3714. if (false) {
  3715. // for the else-ifs below
  3716. }
  3717. #if BUTTON_EXISTS(UP)
  3718. else if (BUTTON_PRESSED(UP)) {
  3719. encoderDiff = -(ENCODER_UD_STEPS);
  3720. next_button_update_ms = now + 300;
  3721. }
  3722. #endif
  3723. #if BUTTON_EXISTS(DWN)
  3724. else if (BUTTON_PRESSED(DWN)) {
  3725. encoderDiff = ENCODER_UD_STEPS;
  3726. next_button_update_ms = now + 300;
  3727. }
  3728. #endif
  3729. #if BUTTON_EXISTS(LFT)
  3730. else if (BUTTON_PRESSED(LFT)) {
  3731. encoderDiff = -(ENCODER_LR_PULSES);
  3732. next_button_update_ms = now + 300;
  3733. }
  3734. #endif
  3735. #if BUTTON_EXISTS(RT)
  3736. else if (BUTTON_PRESSED(RT)) {
  3737. encoderDiff = ENCODER_LR_PULSES;
  3738. next_button_update_ms = now + 300;
  3739. }
  3740. #endif
  3741. #endif // LCD_HAS_DIRECTIONAL_BUTTONS
  3742. buttons = newbutton;
  3743. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  3744. buttons |= slow_buttons;
  3745. #endif
  3746. #if ENABLED(REPRAPWORLD_KEYPAD)
  3747. GET_BUTTON_STATES(buttons_reprapworld_keypad);
  3748. #endif
  3749. #else
  3750. GET_BUTTON_STATES(buttons);
  3751. #endif // !NEWPANEL
  3752. } // next_button_update_ms
  3753. // Manage encoder rotation
  3754. #if ENABLED(REVERSE_MENU_DIRECTION) && ENABLED(REVERSE_ENCODER_DIRECTION)
  3755. #define ENCODER_DIFF_CW (encoderDiff -= encoderDirection)
  3756. #define ENCODER_DIFF_CCW (encoderDiff += encoderDirection)
  3757. #elif ENABLED(REVERSE_MENU_DIRECTION)
  3758. #define ENCODER_DIFF_CW (encoderDiff += encoderDirection)
  3759. #define ENCODER_DIFF_CCW (encoderDiff -= encoderDirection)
  3760. #elif ENABLED(REVERSE_ENCODER_DIRECTION)
  3761. #define ENCODER_DIFF_CW (encoderDiff--)
  3762. #define ENCODER_DIFF_CCW (encoderDiff++)
  3763. #else
  3764. #define ENCODER_DIFF_CW (encoderDiff++)
  3765. #define ENCODER_DIFF_CCW (encoderDiff--)
  3766. #endif
  3767. #define ENCODER_SPIN(_E1, _E2) switch (lastEncoderBits) { case _E1: ENCODER_DIFF_CW; break; case _E2: ENCODER_DIFF_CCW; }
  3768. uint8_t enc = 0;
  3769. if (buttons & EN_A) enc |= B01;
  3770. if (buttons & EN_B) enc |= B10;
  3771. if (enc != lastEncoderBits) {
  3772. switch (enc) {
  3773. case encrot0: ENCODER_SPIN(encrot3, encrot1); break;
  3774. case encrot1: ENCODER_SPIN(encrot0, encrot2); break;
  3775. case encrot2: ENCODER_SPIN(encrot1, encrot3); break;
  3776. case encrot3: ENCODER_SPIN(encrot2, encrot0); break;
  3777. }
  3778. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3779. if (ubl.has_control_of_lcd_panel) {
  3780. ubl.encoder_diff = encoderDiff; // Make the encoder's rotation available to G29's Mesh Editor
  3781. encoderDiff = 0; // We are going to lie to the LCD Panel and claim the encoder
  3782. // knob has not turned.
  3783. }
  3784. #endif
  3785. lastEncoderBits = enc;
  3786. }
  3787. }
  3788. #if (ENABLED(LCD_I2C_TYPE_MCP23017) || ENABLED(LCD_I2C_TYPE_MCP23008)) && ENABLED(DETECT_DEVICE)
  3789. bool lcd_detected() { return lcd.LcdDetected() == 1; }
  3790. #else
  3791. bool lcd_detected() { return true; }
  3792. #endif
  3793. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3794. void chirp_at_user() {
  3795. #if ENABLED(LCD_USE_I2C_BUZZER)
  3796. lcd.buzz(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
  3797. #elif PIN_EXISTS(BEEPER)
  3798. buzzer.tone(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
  3799. #endif
  3800. }
  3801. bool ubl_lcd_clicked() { return LCD_CLICKED; }
  3802. #endif
  3803. #endif // ULTIPANEL
  3804. #endif // ULTRA_LCD