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

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