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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755
  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. lcd_completion_feedback();
  724. }
  725. #if defined(USER_DESC_1) && defined(USER_GCODE_1)
  726. void lcd_user_gcode_1() { _lcd_user_gcode(PSTR(USER_GCODE_1 _DONE_SCRIPT)); }
  727. #endif
  728. #if defined(USER_DESC_2) && defined(USER_GCODE_2)
  729. void lcd_user_gcode_2() { _lcd_user_gcode(PSTR(USER_GCODE_2 _DONE_SCRIPT)); }
  730. #endif
  731. #if defined(USER_DESC_3) && defined(USER_GCODE_3)
  732. void lcd_user_gcode_3() { _lcd_user_gcode(PSTR(USER_GCODE_3 _DONE_SCRIPT)); }
  733. #endif
  734. #if defined(USER_DESC_4) && defined(USER_GCODE_4)
  735. void lcd_user_gcode_4() { _lcd_user_gcode(PSTR(USER_GCODE_4 _DONE_SCRIPT)); }
  736. #endif
  737. #if defined(USER_DESC_5) && defined(USER_GCODE_5)
  738. void lcd_user_gcode_5() { _lcd_user_gcode(PSTR(USER_GCODE_5 _DONE_SCRIPT)); }
  739. #endif
  740. void _lcd_user_menu() {
  741. START_MENU();
  742. MENU_BACK(MSG_MAIN);
  743. #if defined(USER_DESC_1) && defined(USER_GCODE_1)
  744. MENU_ITEM(function, USER_DESC_1, lcd_user_gcode_1);
  745. #endif
  746. #if defined(USER_DESC_2) && defined(USER_GCODE_2)
  747. MENU_ITEM(function, USER_DESC_2, lcd_user_gcode_2);
  748. #endif
  749. #if defined(USER_DESC_3) && defined(USER_GCODE_3)
  750. MENU_ITEM(function, USER_DESC_3, lcd_user_gcode_3);
  751. #endif
  752. #if defined(USER_DESC_4) && defined(USER_GCODE_4)
  753. MENU_ITEM(function, USER_DESC_4, lcd_user_gcode_4);
  754. #endif
  755. #if defined(USER_DESC_5) && defined(USER_GCODE_5)
  756. MENU_ITEM(function, USER_DESC_5, lcd_user_gcode_5);
  757. #endif
  758. END_MENU();
  759. }
  760. #endif
  761. /**
  762. *
  763. * "Main" menu
  764. *
  765. */
  766. void lcd_main_menu() {
  767. START_MENU();
  768. MENU_BACK(MSG_WATCH);
  769. #if ENABLED(CUSTOM_USER_MENUS)
  770. MENU_ITEM(submenu, MSG_USER_MENU, _lcd_user_menu);
  771. #endif
  772. //
  773. // Debug Menu when certain options are enabled
  774. //
  775. #if HAS_DEBUG_MENU
  776. MENU_ITEM(submenu, MSG_DEBUG_MENU, lcd_debug_menu);
  777. #endif
  778. //
  779. // Set Case light on/off/brightness
  780. //
  781. #if ENABLED(MENU_ITEM_CASE_LIGHT)
  782. if (USEABLE_HARDWARE_PWM(CASE_LIGHT_PIN)) {
  783. MENU_ITEM(submenu, MSG_CASE_LIGHT, case_light_menu);
  784. }
  785. else
  786. MENU_ITEM_EDIT_CALLBACK(bool, MSG_CASE_LIGHT, (bool*)&case_light_on, update_case_light);
  787. #endif
  788. if (planner.movesplanned() || IS_SD_PRINTING) {
  789. MENU_ITEM(submenu, MSG_TUNE, lcd_tune_menu);
  790. }
  791. else {
  792. MENU_ITEM(submenu, MSG_PREPARE, lcd_prepare_menu);
  793. #if ENABLED(DELTA_CALIBRATION_MENU)
  794. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE, lcd_delta_calibrate_menu);
  795. #endif
  796. }
  797. MENU_ITEM(submenu, MSG_CONTROL, lcd_control_menu);
  798. #if ENABLED(SDSUPPORT)
  799. if (card.cardOK) {
  800. if (card.isFileOpen()) {
  801. if (card.sdprinting)
  802. MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause);
  803. else
  804. MENU_ITEM(function, MSG_RESUME_PRINT, lcd_sdcard_resume);
  805. MENU_ITEM(function, MSG_STOP_PRINT, lcd_sdcard_stop);
  806. }
  807. else {
  808. MENU_ITEM(submenu, MSG_CARD_MENU, lcd_sdcard_menu);
  809. #if !PIN_EXISTS(SD_DETECT)
  810. MENU_ITEM(gcode, MSG_CNG_SDCARD, PSTR("M21")); // SD-card changed by user
  811. #endif
  812. }
  813. }
  814. else {
  815. MENU_ITEM(submenu, MSG_NO_CARD, lcd_sdcard_menu);
  816. #if !PIN_EXISTS(SD_DETECT)
  817. MENU_ITEM(gcode, MSG_INIT_SDCARD, PSTR("M21")); // Manually initialize the SD-card via user interface
  818. #endif
  819. }
  820. #endif // SDSUPPORT
  821. #if ENABLED(LCD_INFO_MENU)
  822. MENU_ITEM(submenu, MSG_INFO_MENU, lcd_info_menu);
  823. #endif
  824. END_MENU();
  825. }
  826. /**
  827. *
  828. * "Tune" submenu items
  829. *
  830. */
  831. #if HAS_M206_COMMAND
  832. /**
  833. * Set the home offset based on the current_position
  834. */
  835. void lcd_set_home_offsets() {
  836. // M428 Command
  837. enqueue_and_echo_commands_P(PSTR("M428"));
  838. lcd_return_to_status();
  839. }
  840. #endif
  841. #if ENABLED(BABYSTEPPING)
  842. void _lcd_babystep(const AxisEnum axis, const char* msg) {
  843. if (lcd_clicked) { defer_return_to_status = false; return lcd_goto_previous_menu(); }
  844. ENCODER_DIRECTION_NORMAL();
  845. if (encoderPosition) {
  846. const int16_t babystep_increment = (int32_t)encoderPosition * (BABYSTEP_MULTIPLICATOR);
  847. encoderPosition = 0;
  848. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  849. thermalManager.babystep_axis(axis, babystep_increment);
  850. babysteps_done += babystep_increment;
  851. }
  852. if (lcdDrawUpdate)
  853. lcd_implementation_drawedit(msg, ftostr43sign(planner.steps_to_mm[axis] * babysteps_done));
  854. }
  855. #if ENABLED(BABYSTEP_XY)
  856. void _lcd_babystep_x() { _lcd_babystep(X_AXIS, PSTR(MSG_BABYSTEPPING_X)); }
  857. void _lcd_babystep_y() { _lcd_babystep(Y_AXIS, PSTR(MSG_BABYSTEPPING_Y)); }
  858. void lcd_babystep_x() { lcd_goto_screen(_lcd_babystep_x); babysteps_done = 0; defer_return_to_status = true; }
  859. void lcd_babystep_y() { lcd_goto_screen(_lcd_babystep_y); babysteps_done = 0; defer_return_to_status = true; }
  860. #endif
  861. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  862. void lcd_babystep_zoffset() {
  863. if (lcd_clicked) { defer_return_to_status = false; return lcd_goto_previous_menu(); }
  864. defer_return_to_status = true;
  865. ENCODER_DIRECTION_NORMAL();
  866. if (encoderPosition) {
  867. const int16_t babystep_increment = (int32_t)encoderPosition * (BABYSTEP_MULTIPLICATOR);
  868. encoderPosition = 0;
  869. const float new_zoffset = zprobe_zoffset + planner.steps_to_mm[Z_AXIS] * babystep_increment;
  870. if (WITHIN(new_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX)) {
  871. if (planner.abl_enabled)
  872. thermalManager.babystep_axis(Z_AXIS, babystep_increment);
  873. zprobe_zoffset = new_zoffset;
  874. refresh_zprobe_zoffset(true);
  875. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  876. }
  877. }
  878. if (lcdDrawUpdate)
  879. lcd_implementation_drawedit(PSTR(MSG_ZPROBE_ZOFFSET), ftostr43sign(zprobe_zoffset));
  880. }
  881. #else // !BABYSTEP_ZPROBE_OFFSET
  882. void _lcd_babystep_z() { _lcd_babystep(Z_AXIS, PSTR(MSG_BABYSTEPPING_Z)); }
  883. void lcd_babystep_z() { lcd_goto_screen(_lcd_babystep_z); babysteps_done = 0; defer_return_to_status = true; }
  884. #endif // !BABYSTEP_ZPROBE_OFFSET
  885. #endif // BABYSTEPPING
  886. #if ENABLED(AUTO_BED_LEVELING_UBL)
  887. float mesh_edit_value, mesh_edit_accumulator; // We round mesh_edit_value to 2.5 decimal places. So we keep a
  888. // separate value that doesn't lose precision.
  889. static int16_t ubl_encoderPosition = 0;
  890. static void _lcd_mesh_fine_tune(const char* msg) {
  891. defer_return_to_status = true;
  892. if (ubl.encoder_diff) {
  893. ubl_encoderPosition = (ubl.encoder_diff > 0) ? 1 : -1;
  894. ubl.encoder_diff = 0;
  895. mesh_edit_accumulator += float(ubl_encoderPosition) * 0.005 / 2.0;
  896. mesh_edit_value = mesh_edit_accumulator;
  897. encoderPosition = 0;
  898. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  899. const int32_t rounded = (int32_t)(mesh_edit_value * 1000.0);
  900. mesh_edit_value = float(rounded - (rounded % 5L)) / 1000.0;
  901. }
  902. if (lcdDrawUpdate)
  903. lcd_implementation_drawedit(msg, ftostr43sign(mesh_edit_value));
  904. }
  905. void _lcd_mesh_edit_NOP() {
  906. defer_return_to_status = true;
  907. }
  908. float lcd_mesh_edit() {
  909. lcd_goto_screen(_lcd_mesh_edit_NOP);
  910. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  911. _lcd_mesh_fine_tune(PSTR("Mesh Editor"));
  912. return mesh_edit_value;
  913. }
  914. void lcd_mesh_edit_setup(float initial) {
  915. mesh_edit_value = mesh_edit_accumulator = initial;
  916. lcd_goto_screen(_lcd_mesh_edit_NOP);
  917. }
  918. void _lcd_z_offset_edit() {
  919. _lcd_mesh_fine_tune(PSTR("Z-Offset: "));
  920. }
  921. float lcd_z_offset_edit() {
  922. lcd_goto_screen(_lcd_z_offset_edit);
  923. return mesh_edit_value;
  924. }
  925. void lcd_z_offset_edit_setup(float initial) {
  926. mesh_edit_value = mesh_edit_accumulator = initial;
  927. lcd_goto_screen(_lcd_z_offset_edit);
  928. }
  929. #endif // AUTO_BED_LEVELING_UBL
  930. /**
  931. * Watch temperature callbacks
  932. */
  933. #if HAS_TEMP_HOTEND
  934. #if WATCH_HOTENDS
  935. #define _WATCH_FUNC(N) thermalManager.start_watching_heater(N)
  936. #else
  937. #define _WATCH_FUNC(N) NOOP
  938. #endif
  939. void watch_temp_callback_E0() { _WATCH_FUNC(0); }
  940. #if HOTENDS > 1
  941. void watch_temp_callback_E1() { _WATCH_FUNC(1); }
  942. #if HOTENDS > 2
  943. void watch_temp_callback_E2() { _WATCH_FUNC(2); }
  944. #if HOTENDS > 3
  945. void watch_temp_callback_E3() { _WATCH_FUNC(3); }
  946. #if HOTENDS > 4
  947. void watch_temp_callback_E4() { _WATCH_FUNC(4); }
  948. #endif // HOTENDS > 4
  949. #endif // HOTENDS > 3
  950. #endif // HOTENDS > 2
  951. #endif // HOTENDS > 1
  952. #endif // HAS_TEMP_HOTEND
  953. void watch_temp_callback_bed() {
  954. #if WATCH_THE_BED
  955. thermalManager.start_watching_bed();
  956. #endif
  957. }
  958. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  959. void lcd_enqueue_filament_change() {
  960. #if ENABLED(PREVENT_COLD_EXTRUSION)
  961. if (!DEBUGGING(DRYRUN) && !thermalManager.allow_cold_extrude &&
  962. thermalManager.degTargetHotend(active_extruder) < thermalManager.extrude_min_temp) {
  963. lcd_save_previous_screen();
  964. lcd_goto_screen(lcd_advanced_pause_toocold_menu);
  965. return;
  966. }
  967. #endif
  968. lcd_advanced_pause_show_message(ADVANCED_PAUSE_MESSAGE_INIT);
  969. enqueue_and_echo_commands_P(PSTR("M600 B0"));
  970. }
  971. #endif // ADVANCED_PAUSE_FEATURE
  972. /**
  973. *
  974. * "Tune" submenu
  975. *
  976. */
  977. void lcd_tune_menu() {
  978. START_MENU();
  979. //
  980. // ^ Main
  981. //
  982. MENU_BACK(MSG_MAIN);
  983. //
  984. // Speed:
  985. //
  986. MENU_ITEM_EDIT(int3, MSG_SPEED, &feedrate_percentage, 10, 999);
  987. // Manual bed leveling, Bed Z:
  988. #if ENABLED(MESH_BED_LEVELING) && ENABLED(LCD_BED_LEVELING)
  989. MENU_ITEM_EDIT(float43, MSG_BED_Z, &mbl.z_offset, -1, 1);
  990. #endif
  991. //
  992. // Nozzle:
  993. // Nozzle [1-4]:
  994. //
  995. #if HOTENDS == 1
  996. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  997. #else // HOTENDS > 1
  998. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N1, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  999. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N2, &thermalManager.target_temperature[1], 0, HEATER_1_MAXTEMP - 15, watch_temp_callback_E1);
  1000. #if HOTENDS > 2
  1001. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N3, &thermalManager.target_temperature[2], 0, HEATER_2_MAXTEMP - 15, watch_temp_callback_E2);
  1002. #if HOTENDS > 3
  1003. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N4, &thermalManager.target_temperature[3], 0, HEATER_3_MAXTEMP - 15, watch_temp_callback_E3);
  1004. #if HOTENDS > 4
  1005. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N5, &thermalManager.target_temperature[4], 0, HEATER_4_MAXTEMP - 15, watch_temp_callback_E4);
  1006. #endif // HOTENDS > 4
  1007. #endif // HOTENDS > 3
  1008. #endif // HOTENDS > 2
  1009. #endif // HOTENDS > 1
  1010. //
  1011. // Bed:
  1012. //
  1013. #if HAS_TEMP_BED
  1014. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_BED, &thermalManager.target_temperature_bed, 0, BED_MAXTEMP - 15, watch_temp_callback_bed);
  1015. #endif
  1016. //
  1017. // Fan Speed:
  1018. //
  1019. #if FAN_COUNT > 0
  1020. #if HAS_FAN0
  1021. #if FAN_COUNT > 1
  1022. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED " 1"
  1023. #else
  1024. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED
  1025. #endif
  1026. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_1ST_FAN_SPEED, &fanSpeeds[0], 0, 255);
  1027. #endif
  1028. #if HAS_FAN1
  1029. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 2", &fanSpeeds[1], 0, 255);
  1030. #endif
  1031. #if HAS_FAN2
  1032. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 3", &fanSpeeds[2], 0, 255);
  1033. #endif
  1034. #endif // FAN_COUNT > 0
  1035. //
  1036. // Flow:
  1037. // Flow [1-5]:
  1038. //
  1039. #if EXTRUDERS == 1
  1040. MENU_ITEM_EDIT(int3, MSG_FLOW, &flow_percentage[0], 10, 999);
  1041. #else // EXTRUDERS > 1
  1042. MENU_ITEM_EDIT(int3, MSG_FLOW, &flow_percentage[active_extruder], 10, 999);
  1043. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N1, &flow_percentage[0], 10, 999);
  1044. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N2, &flow_percentage[1], 10, 999);
  1045. #if EXTRUDERS > 2
  1046. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N3, &flow_percentage[2], 10, 999);
  1047. #if EXTRUDERS > 3
  1048. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N4, &flow_percentage[3], 10, 999);
  1049. #if EXTRUDERS > 4
  1050. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N5, &flow_percentage[4], 10, 999);
  1051. #endif // EXTRUDERS > 4
  1052. #endif // EXTRUDERS > 3
  1053. #endif // EXTRUDERS > 2
  1054. #endif // EXTRUDERS > 1
  1055. //
  1056. // Babystep X:
  1057. // Babystep Y:
  1058. // Babystep Z:
  1059. //
  1060. #if ENABLED(BABYSTEPPING)
  1061. #if ENABLED(BABYSTEP_XY)
  1062. MENU_ITEM(submenu, MSG_BABYSTEP_X, lcd_babystep_x);
  1063. MENU_ITEM(submenu, MSG_BABYSTEP_Y, lcd_babystep_y);
  1064. #endif
  1065. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  1066. MENU_ITEM(submenu, MSG_ZPROBE_ZOFFSET, lcd_babystep_zoffset);
  1067. #else
  1068. MENU_ITEM(submenu, MSG_BABYSTEP_Z, lcd_babystep_z);
  1069. #endif
  1070. #endif
  1071. //
  1072. // Change filament
  1073. //
  1074. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  1075. if (!thermalManager.tooColdToExtrude(active_extruder))
  1076. MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
  1077. #endif
  1078. END_MENU();
  1079. }
  1080. /**
  1081. *
  1082. * "Driver current control" submenu items
  1083. *
  1084. */
  1085. #if ENABLED(DAC_STEPPER_CURRENT)
  1086. void dac_driver_getValues() { LOOP_XYZE(i) driverPercent[i] = dac_current_get_percent((AxisEnum)i); }
  1087. void dac_driver_commit() { dac_current_set_percents(driverPercent); }
  1088. void dac_driver_eeprom_write() { dac_commit_eeprom(); }
  1089. void lcd_dac_menu() {
  1090. dac_driver_getValues();
  1091. START_MENU();
  1092. MENU_BACK(MSG_CONTROL);
  1093. MENU_ITEM_EDIT_CALLBACK(int8, MSG_X " " MSG_DAC_PERCENT, &driverPercent[X_AXIS], 0, 100, dac_driver_commit);
  1094. MENU_ITEM_EDIT_CALLBACK(int8, MSG_Y " " MSG_DAC_PERCENT, &driverPercent[Y_AXIS], 0, 100, dac_driver_commit);
  1095. MENU_ITEM_EDIT_CALLBACK(int8, MSG_Z " " MSG_DAC_PERCENT, &driverPercent[Z_AXIS], 0, 100, dac_driver_commit);
  1096. MENU_ITEM_EDIT_CALLBACK(int8, MSG_E " " MSG_DAC_PERCENT, &driverPercent[E_AXIS], 0, 100, dac_driver_commit);
  1097. MENU_ITEM(function, MSG_DAC_EEPROM_WRITE, dac_driver_eeprom_write);
  1098. END_MENU();
  1099. }
  1100. #endif // DAC_STEPPER_CURRENT
  1101. #if HAS_MOTOR_CURRENT_PWM
  1102. void lcd_pwm_menu() {
  1103. START_MENU();
  1104. MENU_BACK(MSG_CONTROL);
  1105. #if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
  1106. MENU_ITEM_EDIT_CALLBACK(long5, MSG_X MSG_Y, &stepper.motor_current_setting[0], 100, 2000, Stepper::refresh_motor_power);
  1107. #endif
  1108. #if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
  1109. MENU_ITEM_EDIT_CALLBACK(long5, MSG_Z, &stepper.motor_current_setting[1], 100, 2000, Stepper::refresh_motor_power);
  1110. #endif
  1111. #if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
  1112. MENU_ITEM_EDIT_CALLBACK(long5, MSG_E, &stepper.motor_current_setting[2], 100, 2000, Stepper::refresh_motor_power);
  1113. #endif
  1114. END_MENU();
  1115. }
  1116. #endif // HAS_MOTOR_CURRENT_PWM
  1117. constexpr int16_t heater_maxtemp[HOTENDS] = ARRAY_BY_HOTENDS(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP, HEATER_4_MAXTEMP);
  1118. /**
  1119. *
  1120. * "Prepare" submenu items
  1121. *
  1122. */
  1123. void _lcd_preheat(const int16_t endnum, const int16_t temph, const int16_t tempb, const int16_t fan) {
  1124. if (temph > 0) thermalManager.setTargetHotend(min(heater_maxtemp[endnum], temph), endnum);
  1125. #if TEMP_SENSOR_BED != 0
  1126. if (tempb >= 0) thermalManager.setTargetBed(tempb);
  1127. #else
  1128. UNUSED(tempb);
  1129. #endif
  1130. #if FAN_COUNT > 0
  1131. #if FAN_COUNT > 1
  1132. fanSpeeds[active_extruder < FAN_COUNT ? active_extruder : 0] = fan;
  1133. #else
  1134. fanSpeeds[0] = fan;
  1135. #endif
  1136. #else
  1137. UNUSED(fan);
  1138. #endif
  1139. lcd_return_to_status();
  1140. }
  1141. #if TEMP_SENSOR_0 != 0
  1142. void lcd_preheat_m1_e0_only() { _lcd_preheat(0, lcd_preheat_hotend_temp[0], -1, lcd_preheat_fan_speed[0]); }
  1143. void lcd_preheat_m2_e0_only() { _lcd_preheat(0, lcd_preheat_hotend_temp[1], -1, lcd_preheat_fan_speed[1]); }
  1144. #if TEMP_SENSOR_BED != 0
  1145. void lcd_preheat_m1_e0() { _lcd_preheat(0, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1146. void lcd_preheat_m2_e0() { _lcd_preheat(0, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1147. #endif
  1148. #endif
  1149. #if HOTENDS > 1
  1150. void lcd_preheat_m1_e1_only() { _lcd_preheat(1, lcd_preheat_hotend_temp[0], -1, lcd_preheat_fan_speed[0]); }
  1151. void lcd_preheat_m2_e1_only() { _lcd_preheat(1, lcd_preheat_hotend_temp[1], -1, lcd_preheat_fan_speed[1]); }
  1152. #if TEMP_SENSOR_BED != 0
  1153. void lcd_preheat_m1_e1() { _lcd_preheat(1, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1154. void lcd_preheat_m2_e1() { _lcd_preheat(1, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1155. #endif
  1156. #if HOTENDS > 2
  1157. void lcd_preheat_m1_e2_only() { _lcd_preheat(2, lcd_preheat_hotend_temp[0], -1, lcd_preheat_fan_speed[0]); }
  1158. void lcd_preheat_m2_e2_only() { _lcd_preheat(2, lcd_preheat_hotend_temp[1], -1, lcd_preheat_fan_speed[1]); }
  1159. #if TEMP_SENSOR_BED != 0
  1160. void lcd_preheat_m1_e2() { _lcd_preheat(2, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1161. void lcd_preheat_m2_e2() { _lcd_preheat(2, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1162. #endif
  1163. #if HOTENDS > 3
  1164. void lcd_preheat_m1_e3_only() { _lcd_preheat(3, lcd_preheat_hotend_temp[0], -1, lcd_preheat_fan_speed[0]); }
  1165. void lcd_preheat_m2_e3_only() { _lcd_preheat(3, lcd_preheat_hotend_temp[1], -1, lcd_preheat_fan_speed[1]); }
  1166. #if TEMP_SENSOR_BED != 0
  1167. void lcd_preheat_m1_e3() { _lcd_preheat(3, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1168. void lcd_preheat_m2_e3() { _lcd_preheat(3, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1169. #endif
  1170. #if HOTENDS > 4
  1171. void lcd_preheat_m1_e4_only() { _lcd_preheat(4, lcd_preheat_hotend_temp[0], -1, lcd_preheat_fan_speed[0]); }
  1172. void lcd_preheat_m2_e4_only() { _lcd_preheat(4, lcd_preheat_hotend_temp[1], -1, lcd_preheat_fan_speed[1]); }
  1173. #if TEMP_SENSOR_BED != 0
  1174. void lcd_preheat_m1_e4() { _lcd_preheat(4, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1175. void lcd_preheat_m2_e4() { _lcd_preheat(4, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1176. #endif
  1177. #endif // HOTENDS > 4
  1178. #endif // HOTENDS > 3
  1179. #endif // HOTENDS > 2
  1180. void lcd_preheat_m1_all() {
  1181. #if HOTENDS > 1
  1182. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 1);
  1183. #if HOTENDS > 2
  1184. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 2);
  1185. #if HOTENDS > 3
  1186. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 3);
  1187. #if HOTENDS > 4
  1188. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 4);
  1189. #endif // HOTENDS > 4
  1190. #endif // HOTENDS > 3
  1191. #endif // HOTENDS > 2
  1192. #endif // HOTENDS > 1
  1193. #if TEMP_SENSOR_BED != 0
  1194. lcd_preheat_m1_e0();
  1195. #else
  1196. lcd_preheat_m1_e0_only();
  1197. #endif
  1198. }
  1199. void lcd_preheat_m2_all() {
  1200. #if HOTENDS > 1
  1201. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 1);
  1202. #if HOTENDS > 2
  1203. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 2);
  1204. #if HOTENDS > 3
  1205. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 3);
  1206. #if HOTENDS > 4
  1207. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 4);
  1208. #endif // HOTENDS > 4
  1209. #endif // HOTENDS > 3
  1210. #endif // HOTENDS > 2
  1211. #endif // HOTENDS > 1
  1212. #if TEMP_SENSOR_BED != 0
  1213. lcd_preheat_m2_e0();
  1214. #else
  1215. lcd_preheat_m2_e0_only();
  1216. #endif
  1217. }
  1218. #endif // HOTENDS > 1
  1219. #if TEMP_SENSOR_BED != 0
  1220. void lcd_preheat_m1_bedonly() { _lcd_preheat(0, 0, lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  1221. void lcd_preheat_m2_bedonly() { _lcd_preheat(0, 0, lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  1222. #endif
  1223. #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)
  1224. void lcd_preheat_m1_menu() {
  1225. START_MENU();
  1226. MENU_BACK(MSG_PREPARE);
  1227. #if HOTENDS == 1
  1228. #if TEMP_SENSOR_BED != 0
  1229. MENU_ITEM(function, MSG_PREHEAT_1, lcd_preheat_m1_e0);
  1230. MENU_ITEM(function, MSG_PREHEAT_1_END, lcd_preheat_m1_e0_only);
  1231. #else
  1232. MENU_ITEM(function, MSG_PREHEAT_1, lcd_preheat_m1_e0_only);
  1233. #endif
  1234. #else
  1235. #if TEMP_SENSOR_BED != 0
  1236. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H1, lcd_preheat_m1_e0);
  1237. MENU_ITEM(function, MSG_PREHEAT_1_END " " MSG_E1, lcd_preheat_m1_e0_only);
  1238. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H2, lcd_preheat_m1_e1);
  1239. MENU_ITEM(function, MSG_PREHEAT_1_END " " MSG_E2, lcd_preheat_m1_e1_only);
  1240. #else
  1241. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H1, lcd_preheat_m1_e0_only);
  1242. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H2, lcd_preheat_m1_e1_only);
  1243. #endif
  1244. #if HOTENDS > 2
  1245. #if TEMP_SENSOR_BED != 0
  1246. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H3, lcd_preheat_m1_e2);
  1247. MENU_ITEM(function, MSG_PREHEAT_1_END " " MSG_E3, lcd_preheat_m1_e2_only);
  1248. #else
  1249. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H3, lcd_preheat_m1_e2_only);
  1250. #endif
  1251. #if HOTENDS > 3
  1252. #if TEMP_SENSOR_BED != 0
  1253. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H4, lcd_preheat_m1_e3);
  1254. MENU_ITEM(function, MSG_PREHEAT_1_END " " MSG_E4, lcd_preheat_m1_e3_only);
  1255. #else
  1256. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H4, lcd_preheat_m1_e3_only);
  1257. #endif
  1258. #if HOTENDS > 4
  1259. #if TEMP_SENSOR_BED != 0
  1260. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H5, lcd_preheat_m1_e4);
  1261. MENU_ITEM(function, MSG_PREHEAT_1_END " " MSG_E5, lcd_preheat_m1_e4_only);
  1262. #else
  1263. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H5, lcd_preheat_m1_e4_only);
  1264. #endif
  1265. #endif // HOTENDS > 4
  1266. #endif // HOTENDS > 3
  1267. #endif // HOTENDS > 2
  1268. MENU_ITEM(function, MSG_PREHEAT_1_ALL, lcd_preheat_m1_all);
  1269. #endif // HOTENDS > 1
  1270. #if TEMP_SENSOR_BED != 0
  1271. MENU_ITEM(function, MSG_PREHEAT_1_BEDONLY, lcd_preheat_m1_bedonly);
  1272. #endif
  1273. END_MENU();
  1274. }
  1275. void lcd_preheat_m2_menu() {
  1276. START_MENU();
  1277. MENU_BACK(MSG_PREPARE);
  1278. #if HOTENDS == 1
  1279. #if TEMP_SENSOR_BED != 0
  1280. MENU_ITEM(function, MSG_PREHEAT_2, lcd_preheat_m2_e0);
  1281. MENU_ITEM(function, MSG_PREHEAT_2_END, lcd_preheat_m2_e0_only);
  1282. #else
  1283. MENU_ITEM(function, MSG_PREHEAT_2, lcd_preheat_m2_e0_only);
  1284. #endif
  1285. #else
  1286. #if TEMP_SENSOR_BED != 0
  1287. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H1, lcd_preheat_m2_e0);
  1288. MENU_ITEM(function, MSG_PREHEAT_2_END " " MSG_E1, lcd_preheat_m2_e0_only);
  1289. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H2, lcd_preheat_m2_e1);
  1290. MENU_ITEM(function, MSG_PREHEAT_2_END " " MSG_E2, lcd_preheat_m2_e1_only);
  1291. #else
  1292. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H1, lcd_preheat_m2_e0_only);
  1293. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H2, lcd_preheat_m2_e1_only);
  1294. #endif
  1295. #if HOTENDS > 2
  1296. #if TEMP_SENSOR_BED != 0
  1297. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H3, lcd_preheat_m2_e2);
  1298. MENU_ITEM(function, MSG_PREHEAT_2_END " " MSG_E3, lcd_preheat_m2_e2_only);
  1299. #else
  1300. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H3, lcd_preheat_m2_e2_only);
  1301. #endif
  1302. #if HOTENDS > 3
  1303. #if TEMP_SENSOR_BED != 0
  1304. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H4, lcd_preheat_m2_e3);
  1305. MENU_ITEM(function, MSG_PREHEAT_2_END " " MSG_E4, lcd_preheat_m2_e3_only);
  1306. #else
  1307. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H4, lcd_preheat_m2_e3_only);
  1308. #endif
  1309. #if HOTENDS > 4
  1310. #if TEMP_SENSOR_BED != 0
  1311. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H5, lcd_preheat_m2_e4);
  1312. MENU_ITEM(function, MSG_PREHEAT_2_END " " MSG_E5, lcd_preheat_m2_e4_only);
  1313. #else
  1314. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H5, lcd_preheat_m2_e4_only);
  1315. #endif
  1316. #endif // HOTENDS > 4
  1317. #endif // HOTENDS > 3
  1318. #endif // HOTENDS > 2
  1319. MENU_ITEM(function, MSG_PREHEAT_2_ALL, lcd_preheat_m2_all);
  1320. #endif // HOTENDS > 1
  1321. #if TEMP_SENSOR_BED != 0
  1322. MENU_ITEM(function, MSG_PREHEAT_2_BEDONLY, lcd_preheat_m2_bedonly);
  1323. #endif
  1324. END_MENU();
  1325. }
  1326. #endif // TEMP_SENSOR_0 && (TEMP_SENSOR_1 || TEMP_SENSOR_2 || TEMP_SENSOR_3 || TEMP_SENSOR_4 || TEMP_SENSOR_BED)
  1327. void lcd_cooldown() {
  1328. #if FAN_COUNT > 0
  1329. for (uint8_t i = 0; i < FAN_COUNT; i++) fanSpeeds[i] = 0;
  1330. #endif
  1331. thermalManager.disable_all_heaters();
  1332. lcd_return_to_status();
  1333. }
  1334. #if ENABLED(SDSUPPORT) && ENABLED(MENU_ADDAUTOSTART)
  1335. void lcd_autostart_sd() {
  1336. card.autostart_index = 0;
  1337. card.setroot();
  1338. card.checkautostart(true);
  1339. }
  1340. #endif
  1341. #if ENABLED(EEPROM_SETTINGS)
  1342. static void lcd_store_settings() { lcd_completion_feedback(settings.save()); }
  1343. static void lcd_load_settings() { lcd_completion_feedback(settings.load()); }
  1344. #endif
  1345. #if HAS_BED_PROBE && DISABLED(BABYSTEP_ZPROBE_OFFSET)
  1346. static void lcd_refresh_zprobe_zoffset() { refresh_zprobe_zoffset(); }
  1347. #endif
  1348. #if ENABLED(LCD_BED_LEVELING)
  1349. /**
  1350. *
  1351. * "Prepare" > "Level Bed" handlers
  1352. *
  1353. */
  1354. static uint8_t manual_probe_index;
  1355. // LCD probed points are from defaults
  1356. constexpr uint8_t total_probe_points = (
  1357. #if ENABLED(AUTO_BED_LEVELING_3POINT)
  1358. 3
  1359. #elif ABL_GRID || ENABLED(MESH_BED_LEVELING)
  1360. GRID_MAX_POINTS
  1361. #endif
  1362. );
  1363. //
  1364. // Raise Z to the "manual probe height"
  1365. // Don't return until done.
  1366. // ** This blocks the command queue! **
  1367. //
  1368. void _lcd_after_probing() {
  1369. #if MANUAL_PROBE_HEIGHT > 0
  1370. line_to_z(LOGICAL_Z_POSITION(Z_MIN_POS) + MANUAL_PROBE_HEIGHT);
  1371. #endif
  1372. // Display "Done" screen and wait for moves to complete
  1373. #if MANUAL_PROBE_HEIGHT > 0 || ENABLED(MESH_BED_LEVELING)
  1374. lcd_synchronize(PSTR(MSG_LEVEL_BED_DONE));
  1375. #endif
  1376. lcd_goto_previous_menu();
  1377. lcd_completion_feedback();
  1378. defer_return_to_status = false;
  1379. //LCD_MESSAGEPGM(MSG_LEVEL_BED_DONE);
  1380. }
  1381. #if ENABLED(MESH_BED_LEVELING)
  1382. // Utility to go to the next mesh point
  1383. inline void _manual_probe_goto_xy(float x, float y) {
  1384. #if MANUAL_PROBE_HEIGHT > 0
  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(LOGICAL_Z_POSITION(Z_MIN_POS));
  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))
  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. END_MENU();
  2155. }
  2156. float move_menu_scale;
  2157. #if ENABLED(DELTA_CALIBRATION_MENU)
  2158. void lcd_move_z();
  2159. void lcd_delta_calibrate_menu();
  2160. void _lcd_calibrate_homing() {
  2161. if (lcdDrawUpdate) lcd_implementation_drawmenu_static(LCD_HEIGHT >= 4 ? 1 : 0, PSTR(MSG_LEVEL_BED_HOMING));
  2162. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  2163. if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
  2164. lcd_goto_previous_menu();
  2165. }
  2166. void _lcd_delta_calibrate_home() {
  2167. #if HAS_LEVELING
  2168. reset_bed_level(); // After calibration bed-level data is no longer valid
  2169. #endif
  2170. enqueue_and_echo_commands_P(PSTR("G28"));
  2171. lcd_goto_screen(_lcd_calibrate_homing);
  2172. }
  2173. void _man_probe_pt(const float &lx, const float &ly) {
  2174. #if HAS_LEVELING
  2175. reset_bed_level(); // After calibration bed-level data is no longer valid
  2176. #endif
  2177. float z_dest = LOGICAL_Z_POSITION((Z_CLEARANCE_BETWEEN_PROBES) + (DELTA_PRINTABLE_RADIUS) / 5);
  2178. line_to_z(z_dest);
  2179. current_position[X_AXIS] = LOGICAL_X_POSITION(lx);
  2180. current_position[Y_AXIS] = LOGICAL_Y_POSITION(ly);
  2181. line_to_current_z();
  2182. z_dest = LOGICAL_Z_POSITION(Z_CLEARANCE_BETWEEN_PROBES);
  2183. line_to_z(z_dest);
  2184. lcd_synchronize();
  2185. move_menu_scale = PROBE_MANUALLY_STEP;
  2186. lcd_goto_screen(lcd_move_z);
  2187. }
  2188. float lcd_probe_pt(const float &lx, const float &ly) {
  2189. _man_probe_pt(lx, ly);
  2190. KEEPALIVE_STATE(PAUSED_FOR_USER);
  2191. defer_return_to_status = true;
  2192. wait_for_user = true;
  2193. while (wait_for_user) idle();
  2194. KEEPALIVE_STATE(IN_HANDLER);
  2195. defer_return_to_status = false;
  2196. lcd_goto_previous_menu();
  2197. return current_position[Z_AXIS];
  2198. }
  2199. void _goto_tower_x() { _man_probe_pt(cos(RADIANS(210)) * delta_calibration_radius, sin(RADIANS(210)) * delta_calibration_radius); }
  2200. void _goto_tower_y() { _man_probe_pt(cos(RADIANS(330)) * delta_calibration_radius, sin(RADIANS(330)) * delta_calibration_radius); }
  2201. void _goto_tower_z() { _man_probe_pt(cos(RADIANS( 90)) * delta_calibration_radius, sin(RADIANS( 90)) * delta_calibration_radius); }
  2202. void _goto_center() { _man_probe_pt(0,0); }
  2203. void lcd_delta_G33_settings() {
  2204. START_MENU();
  2205. MENU_BACK(MSG_DELTA_CALIBRATE);
  2206. float delta_height = DELTA_HEIGHT + home_offset[Z_AXIS], Tz = 0.00;
  2207. MENU_ITEM_EDIT(float52, "Height", &delta_height, delta_height, delta_height);
  2208. MENU_ITEM_EDIT(float43, "Ex", &endstop_adj[A_AXIS], -5.0, 5.0);
  2209. MENU_ITEM_EDIT(float43, "Ey", &endstop_adj[B_AXIS], -5.0, 5.0);
  2210. MENU_ITEM_EDIT(float43, "Ez", &endstop_adj[C_AXIS], -5.0, 5.0);
  2211. MENU_ITEM_EDIT(float52, "Radius", &delta_radius, DELTA_RADIUS - 5.0, DELTA_RADIUS + 5.0);
  2212. MENU_ITEM_EDIT(float43, "Tx", &delta_tower_angle_trim[A_AXIS], -5.0, 5.0);
  2213. MENU_ITEM_EDIT(float43, "Ty", &delta_tower_angle_trim[B_AXIS], -5.0, 5.0);
  2214. MENU_ITEM_EDIT(float43, "Tz", &Tz, -5.0, 5.0);
  2215. END_MENU();
  2216. }
  2217. void lcd_delta_calibrate_menu() {
  2218. START_MENU();
  2219. MENU_BACK(MSG_MAIN);
  2220. #if ENABLED(DELTA_AUTO_CALIBRATION)
  2221. MENU_ITEM(submenu, MSG_DELTA_SETTINGS, lcd_delta_G33_settings);
  2222. MENU_ITEM(gcode, MSG_DELTA_AUTO_CALIBRATE, PSTR("G33"));
  2223. MENU_ITEM(gcode, MSG_DELTA_HEIGHT_CALIBRATE, PSTR("G33 P1"));
  2224. #if ENABLED(EEPROM_SETTINGS)
  2225. MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
  2226. MENU_ITEM(function, MSG_LOAD_EEPROM, lcd_load_settings);
  2227. #endif
  2228. #endif
  2229. MENU_ITEM(submenu, MSG_AUTO_HOME, _lcd_delta_calibrate_home);
  2230. if (axis_homed[Z_AXIS]) {
  2231. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_X, _goto_tower_x);
  2232. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_Y, _goto_tower_y);
  2233. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_Z, _goto_tower_z);
  2234. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_CENTER, _goto_center);
  2235. }
  2236. END_MENU();
  2237. }
  2238. #endif // DELTA_CALIBRATION_MENU
  2239. /**
  2240. * If the most recent manual move hasn't been fed to the planner yet,
  2241. * and the planner can accept one, send immediately
  2242. */
  2243. inline void manage_manual_move() {
  2244. if (manual_move_axis != (int8_t)NO_AXIS && ELAPSED(millis(), manual_move_start_time) && !planner.is_full()) {
  2245. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(manual_feedrate_mm_m[manual_move_axis]), manual_move_e_index);
  2246. manual_move_axis = (int8_t)NO_AXIS;
  2247. }
  2248. }
  2249. /**
  2250. * Set a flag that lcd_update() should start a move
  2251. * to "current_position" after a short delay.
  2252. */
  2253. inline void manual_move_to_current(AxisEnum axis
  2254. #if E_MANUAL > 1
  2255. , int8_t eindex=-1
  2256. #endif
  2257. ) {
  2258. #if E_MANUAL > 1
  2259. if (axis == E_AXIS) manual_move_e_index = eindex >= 0 ? eindex : active_extruder;
  2260. #endif
  2261. manual_move_start_time = millis() + (move_menu_scale < 0.99 ? 0UL : 250UL); // delay for bigger moves
  2262. manual_move_axis = (int8_t)axis;
  2263. }
  2264. /**
  2265. *
  2266. * "Prepare" > "Move Axis" submenu
  2267. *
  2268. */
  2269. void _lcd_move_xyz(const char* name, AxisEnum axis) {
  2270. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2271. ENCODER_DIRECTION_NORMAL();
  2272. if (encoderPosition) {
  2273. refresh_cmd_timeout();
  2274. float min = current_position[axis] - 1000,
  2275. max = current_position[axis] + 1000;
  2276. #if HAS_SOFTWARE_ENDSTOPS
  2277. // Limit to software endstops, if enabled
  2278. if (soft_endstops_enabled) {
  2279. #if ENABLED(MIN_SOFTWARE_ENDSTOPS)
  2280. min = soft_endstop_min[axis];
  2281. #endif
  2282. #if ENABLED(MAX_SOFTWARE_ENDSTOPS)
  2283. max = soft_endstop_max[axis];
  2284. #endif
  2285. }
  2286. #endif
  2287. // Get the new position
  2288. current_position[axis] += float((int32_t)encoderPosition) * move_menu_scale;
  2289. // Delta limits XY based on the current offset from center
  2290. // This assumes the center is 0,0
  2291. #if ENABLED(DELTA)
  2292. if (axis != Z_AXIS) {
  2293. max = SQRT(sq((float)(DELTA_PRINTABLE_RADIUS)) - sq(current_position[Y_AXIS - axis]));
  2294. min = -max;
  2295. }
  2296. #endif
  2297. // Limit only when trying to move towards the limit
  2298. if ((int32_t)encoderPosition < 0) NOLESS(current_position[axis], min);
  2299. if ((int32_t)encoderPosition > 0) NOMORE(current_position[axis], max);
  2300. manual_move_to_current(axis);
  2301. encoderPosition = 0;
  2302. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  2303. }
  2304. if (lcdDrawUpdate)
  2305. lcd_implementation_drawedit(name, move_menu_scale >= 0.1 ? ftostr41sign(current_position[axis]) : ftostr43sign(current_position[axis]));
  2306. }
  2307. void lcd_move_x() { _lcd_move_xyz(PSTR(MSG_MOVE_X), X_AXIS); }
  2308. void lcd_move_y() { _lcd_move_xyz(PSTR(MSG_MOVE_Y), Y_AXIS); }
  2309. void lcd_move_z() { _lcd_move_xyz(PSTR(MSG_MOVE_Z), Z_AXIS); }
  2310. void _lcd_move_e(
  2311. #if E_MANUAL > 1
  2312. int8_t eindex=-1
  2313. #endif
  2314. ) {
  2315. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2316. ENCODER_DIRECTION_NORMAL();
  2317. if (encoderPosition) {
  2318. current_position[E_AXIS] += float((int32_t)encoderPosition) * move_menu_scale;
  2319. encoderPosition = 0;
  2320. manual_move_to_current(E_AXIS
  2321. #if E_MANUAL > 1
  2322. , eindex
  2323. #endif
  2324. );
  2325. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  2326. }
  2327. if (lcdDrawUpdate) {
  2328. PGM_P pos_label;
  2329. #if E_MANUAL == 1
  2330. pos_label = PSTR(MSG_MOVE_E);
  2331. #else
  2332. switch (eindex) {
  2333. default: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E1); break;
  2334. case 1: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E2); break;
  2335. #if E_MANUAL > 2
  2336. case 2: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E3); break;
  2337. #if E_MANUAL > 3
  2338. case 3: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E4); break;
  2339. #if E_MANUAL > 4
  2340. case 4: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E5); break;
  2341. #endif // E_MANUAL > 4
  2342. #endif // E_MANUAL > 3
  2343. #endif // E_MANUAL > 2
  2344. }
  2345. #endif // E_MANUAL > 1
  2346. lcd_implementation_drawedit(pos_label, ftostr41sign(current_position[E_AXIS]));
  2347. }
  2348. }
  2349. void lcd_move_e() { _lcd_move_e(); }
  2350. #if E_MANUAL > 1
  2351. void lcd_move_e0() { _lcd_move_e(0); }
  2352. void lcd_move_e1() { _lcd_move_e(1); }
  2353. #if E_MANUAL > 2
  2354. void lcd_move_e2() { _lcd_move_e(2); }
  2355. #if E_MANUAL > 3
  2356. void lcd_move_e3() { _lcd_move_e(3); }
  2357. #if E_MANUAL > 4
  2358. void lcd_move_e4() { _lcd_move_e(4); }
  2359. #endif // E_MANUAL > 4
  2360. #endif // E_MANUAL > 3
  2361. #endif // E_MANUAL > 2
  2362. #endif // E_MANUAL > 1
  2363. /**
  2364. *
  2365. * "Prepare" > "Move Xmm" > "Move XYZ" submenu
  2366. *
  2367. */
  2368. screenFunc_t _manual_move_func_ptr;
  2369. void lcd_move_menu_10mm() { move_menu_scale = 10.0; lcd_goto_screen(_manual_move_func_ptr); }
  2370. void lcd_move_menu_1mm() { move_menu_scale = 1.0; lcd_goto_screen(_manual_move_func_ptr); }
  2371. void lcd_move_menu_01mm() { move_menu_scale = 0.1; lcd_goto_screen(_manual_move_func_ptr); }
  2372. void _lcd_move_distance_menu(AxisEnum axis, screenFunc_t func) {
  2373. _manual_move_func_ptr = func;
  2374. START_MENU();
  2375. if (LCD_HEIGHT >= 4) {
  2376. switch(axis) {
  2377. case X_AXIS:
  2378. STATIC_ITEM(MSG_MOVE_X, true, true); break;
  2379. case Y_AXIS:
  2380. STATIC_ITEM(MSG_MOVE_Y, true, true); break;
  2381. case Z_AXIS:
  2382. STATIC_ITEM(MSG_MOVE_Z, true, true); break;
  2383. default:
  2384. STATIC_ITEM(MSG_MOVE_E, true, true); break;
  2385. }
  2386. }
  2387. MENU_BACK(MSG_MOVE_AXIS);
  2388. MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm);
  2389. MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm);
  2390. MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm);
  2391. END_MENU();
  2392. }
  2393. void lcd_move_get_x_amount() { _lcd_move_distance_menu(X_AXIS, lcd_move_x); }
  2394. void lcd_move_get_y_amount() { _lcd_move_distance_menu(Y_AXIS, lcd_move_y); }
  2395. void lcd_move_get_z_amount() { _lcd_move_distance_menu(Z_AXIS, lcd_move_z); }
  2396. void lcd_move_get_e_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e); }
  2397. #if E_MANUAL > 1
  2398. void lcd_move_get_e0_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e0); }
  2399. void lcd_move_get_e1_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e1); }
  2400. #if E_MANUAL > 2
  2401. void lcd_move_get_e2_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e2); }
  2402. #if E_MANUAL > 3
  2403. void lcd_move_get_e3_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e3); }
  2404. #if E_MANUAL > 4
  2405. void lcd_move_get_e4_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e4); }
  2406. #endif // E_MANUAL > 4
  2407. #endif // E_MANUAL > 3
  2408. #endif // E_MANUAL > 2
  2409. #endif // E_MANUAL > 1
  2410. /**
  2411. *
  2412. * "Prepare" > "Move Axis" submenu
  2413. *
  2414. */
  2415. #if IS_KINEMATIC
  2416. #define _MOVE_XYZ_ALLOWED (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
  2417. #if ENABLED(DELTA)
  2418. #define _MOVE_XY_ALLOWED (current_position[Z_AXIS] <= delta_clip_start_height)
  2419. void lcd_lower_z_to_clip_height() {
  2420. line_to_z(delta_clip_start_height);
  2421. lcd_synchronize();
  2422. }
  2423. #else
  2424. #define _MOVE_XY_ALLOWED true
  2425. #endif
  2426. #else
  2427. #define _MOVE_XYZ_ALLOWED true
  2428. #define _MOVE_XY_ALLOWED true
  2429. #endif
  2430. void lcd_move_menu() {
  2431. START_MENU();
  2432. MENU_BACK(MSG_PREPARE);
  2433. if (_MOVE_XYZ_ALLOWED) {
  2434. if (_MOVE_XY_ALLOWED) {
  2435. MENU_ITEM(submenu, MSG_MOVE_X, lcd_move_get_x_amount);
  2436. MENU_ITEM(submenu, MSG_MOVE_Y, lcd_move_get_y_amount);
  2437. }
  2438. #if ENABLED(DELTA)
  2439. else
  2440. MENU_ITEM(function, MSG_FREE_XY, lcd_lower_z_to_clip_height);
  2441. #endif
  2442. MENU_ITEM(submenu, MSG_MOVE_Z, lcd_move_get_z_amount);
  2443. }
  2444. else
  2445. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  2446. #if ENABLED(SWITCHING_EXTRUDER)
  2447. if (active_extruder)
  2448. MENU_ITEM(gcode, MSG_SELECT " " MSG_E1, PSTR("T0"));
  2449. else
  2450. MENU_ITEM(gcode, MSG_SELECT " " MSG_E2, PSTR("T1"));
  2451. #endif
  2452. MENU_ITEM(submenu, MSG_MOVE_E, lcd_move_get_e_amount);
  2453. #if E_MANUAL > 1
  2454. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E1, lcd_move_get_e0_amount);
  2455. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E2, lcd_move_get_e1_amount);
  2456. #if E_MANUAL > 2
  2457. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E3, lcd_move_get_e2_amount);
  2458. #if E_MANUAL > 3
  2459. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E4, lcd_move_get_e3_amount);
  2460. #if E_MANUAL > 4
  2461. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E5, lcd_move_get_e4_amount);
  2462. #endif // E_MANUAL > 4
  2463. #endif // E_MANUAL > 3
  2464. #endif // E_MANUAL > 2
  2465. #endif // E_MANUAL > 1
  2466. END_MENU();
  2467. }
  2468. /**
  2469. *
  2470. * "Control" submenu
  2471. *
  2472. */
  2473. #if HAS_LCD_CONTRAST
  2474. void lcd_callback_set_contrast() { set_lcd_contrast(lcd_contrast); }
  2475. #endif
  2476. static void lcd_factory_settings() {
  2477. settings.reset();
  2478. lcd_completion_feedback();
  2479. }
  2480. void lcd_control_menu() {
  2481. START_MENU();
  2482. MENU_BACK(MSG_MAIN);
  2483. MENU_ITEM(submenu, MSG_TEMPERATURE, lcd_control_temperature_menu);
  2484. MENU_ITEM(submenu, MSG_MOTION, lcd_control_motion_menu);
  2485. MENU_ITEM(submenu, MSG_FILAMENT, lcd_control_filament_menu);
  2486. #if HAS_LCD_CONTRAST
  2487. MENU_ITEM_EDIT_CALLBACK(int3, MSG_CONTRAST, (int*)&lcd_contrast, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX, lcd_callback_set_contrast, true);
  2488. #endif
  2489. #if ENABLED(FWRETRACT)
  2490. MENU_ITEM(submenu, MSG_RETRACT, lcd_control_retract_menu);
  2491. #endif
  2492. #if ENABLED(DAC_STEPPER_CURRENT)
  2493. MENU_ITEM(submenu, MSG_DRIVE_STRENGTH, lcd_dac_menu);
  2494. #endif
  2495. #if HAS_MOTOR_CURRENT_PWM
  2496. MENU_ITEM(submenu, MSG_DRIVE_STRENGTH, lcd_pwm_menu);
  2497. #endif
  2498. #if ENABLED(BLTOUCH)
  2499. MENU_ITEM(submenu, MSG_BLTOUCH, bltouch_menu);
  2500. #endif
  2501. #if ENABLED(EEPROM_SETTINGS)
  2502. MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
  2503. MENU_ITEM(function, MSG_LOAD_EEPROM, lcd_load_settings);
  2504. #endif
  2505. MENU_ITEM(function, MSG_RESTORE_FAILSAFE, lcd_factory_settings);
  2506. #if ENABLED(EEPROM_SETTINGS)
  2507. MENU_ITEM(gcode, MSG_INIT_EEPROM, PSTR("M502\nM500")); // TODO: Add "Are You Sure?" step
  2508. #endif
  2509. END_MENU();
  2510. }
  2511. /**
  2512. *
  2513. * "Temperature" submenu
  2514. *
  2515. */
  2516. #if ENABLED(PID_AUTOTUNE_MENU)
  2517. #if ENABLED(PIDTEMP)
  2518. int16_t autotune_temp[HOTENDS] = ARRAY_BY_HOTENDS1(150);
  2519. #endif
  2520. #if ENABLED(PIDTEMPBED)
  2521. int16_t autotune_temp_bed = 70;
  2522. #endif
  2523. void _lcd_autotune(int16_t e) {
  2524. char cmd[30];
  2525. sprintf_P(cmd, PSTR("M303 U1 E%i S%i"), e,
  2526. #if HAS_PID_FOR_BOTH
  2527. e < 0 ? autotune_temp_bed : autotune_temp[e]
  2528. #elif ENABLED(PIDTEMPBED)
  2529. autotune_temp_bed
  2530. #else
  2531. autotune_temp[e]
  2532. #endif
  2533. );
  2534. enqueue_and_echo_command(cmd);
  2535. }
  2536. #endif // PID_AUTOTUNE_MENU
  2537. #if ENABLED(PIDTEMP)
  2538. // Helpers for editing PID Ki & Kd values
  2539. // grab the PID value out of the temp variable; scale it; then update the PID driver
  2540. void copy_and_scalePID_i(int16_t e) {
  2541. #if DISABLED(PID_PARAMS_PER_HOTEND) || HOTENDS == 1
  2542. UNUSED(e);
  2543. #endif
  2544. PID_PARAM(Ki, e) = scalePID_i(raw_Ki);
  2545. thermalManager.updatePID();
  2546. }
  2547. void copy_and_scalePID_d(int16_t e) {
  2548. #if DISABLED(PID_PARAMS_PER_HOTEND) || HOTENDS == 1
  2549. UNUSED(e);
  2550. #endif
  2551. PID_PARAM(Kd, e) = scalePID_d(raw_Kd);
  2552. thermalManager.updatePID();
  2553. }
  2554. #define _DEFINE_PIDTEMP_BASE_FUNCS(N) \
  2555. void copy_and_scalePID_i_E ## N() { copy_and_scalePID_i(N); } \
  2556. void copy_and_scalePID_d_E ## N() { copy_and_scalePID_d(N); }
  2557. #if ENABLED(PID_AUTOTUNE_MENU)
  2558. #define DEFINE_PIDTEMP_FUNCS(N) \
  2559. _DEFINE_PIDTEMP_BASE_FUNCS(N); \
  2560. void lcd_autotune_callback_E ## N() { _lcd_autotune(N); } typedef void _pid_##N##_void
  2561. #else
  2562. #define DEFINE_PIDTEMP_FUNCS(N) _DEFINE_PIDTEMP_BASE_FUNCS(N) typedef void _pid_##N##_void
  2563. #endif
  2564. DEFINE_PIDTEMP_FUNCS(0);
  2565. #if ENABLED(PID_PARAMS_PER_HOTEND)
  2566. #if HOTENDS > 1
  2567. DEFINE_PIDTEMP_FUNCS(1);
  2568. #if HOTENDS > 2
  2569. DEFINE_PIDTEMP_FUNCS(2);
  2570. #if HOTENDS > 3
  2571. DEFINE_PIDTEMP_FUNCS(3);
  2572. #if HOTENDS > 4
  2573. DEFINE_PIDTEMP_FUNCS(4);
  2574. #endif // HOTENDS > 4
  2575. #endif // HOTENDS > 3
  2576. #endif // HOTENDS > 2
  2577. #endif // HOTENDS > 1
  2578. #endif // PID_PARAMS_PER_HOTEND
  2579. #endif // PIDTEMP
  2580. /**
  2581. *
  2582. * "Control" > "Temperature" submenu
  2583. *
  2584. */
  2585. void lcd_control_temperature_menu() {
  2586. START_MENU();
  2587. //
  2588. // ^ Control
  2589. //
  2590. MENU_BACK(MSG_CONTROL);
  2591. //
  2592. // Nozzle:
  2593. // Nozzle [1-5]:
  2594. //
  2595. #if HOTENDS == 1
  2596. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  2597. #else // HOTENDS > 1
  2598. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N1, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  2599. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N2, &thermalManager.target_temperature[1], 0, HEATER_1_MAXTEMP - 15, watch_temp_callback_E1);
  2600. #if HOTENDS > 2
  2601. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N3, &thermalManager.target_temperature[2], 0, HEATER_2_MAXTEMP - 15, watch_temp_callback_E2);
  2602. #if HOTENDS > 3
  2603. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N4, &thermalManager.target_temperature[3], 0, HEATER_3_MAXTEMP - 15, watch_temp_callback_E3);
  2604. #if HOTENDS > 4
  2605. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N5, &thermalManager.target_temperature[4], 0, HEATER_4_MAXTEMP - 15, watch_temp_callback_E4);
  2606. #endif // HOTENDS > 4
  2607. #endif // HOTENDS > 3
  2608. #endif // HOTENDS > 2
  2609. #endif // HOTENDS > 1
  2610. //
  2611. // Bed:
  2612. //
  2613. #if HAS_TEMP_BED
  2614. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_BED, &thermalManager.target_temperature_bed, 0, BED_MAXTEMP - 15, watch_temp_callback_bed);
  2615. #endif
  2616. //
  2617. // Fan Speed:
  2618. //
  2619. #if FAN_COUNT > 0
  2620. #if HAS_FAN0
  2621. #if FAN_COUNT > 1
  2622. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED " 1"
  2623. #else
  2624. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED
  2625. #endif
  2626. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_1ST_FAN_SPEED, &fanSpeeds[0], 0, 255);
  2627. #endif
  2628. #if HAS_FAN1
  2629. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 2", &fanSpeeds[1], 0, 255);
  2630. #endif
  2631. #if HAS_FAN2
  2632. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 3", &fanSpeeds[2], 0, 255);
  2633. #endif
  2634. #endif // FAN_COUNT > 0
  2635. //
  2636. // Autotemp, Min, Max, Fact
  2637. //
  2638. #if ENABLED(AUTOTEMP) && (TEMP_SENSOR_0 != 0)
  2639. MENU_ITEM_EDIT(bool, MSG_AUTOTEMP, &planner.autotemp_enabled);
  2640. MENU_ITEM_EDIT(float3, MSG_MIN, &planner.autotemp_min, 0, HEATER_0_MAXTEMP - 15);
  2641. MENU_ITEM_EDIT(float3, MSG_MAX, &planner.autotemp_max, 0, HEATER_0_MAXTEMP - 15);
  2642. MENU_ITEM_EDIT(float32, MSG_FACTOR, &planner.autotemp_factor, 0.0, 1.0);
  2643. #endif
  2644. //
  2645. // PID-P, PID-I, PID-D, PID-C, PID Autotune
  2646. // PID-P E1, PID-I E1, PID-D E1, PID-C E1, PID Autotune E1
  2647. // PID-P E2, PID-I E2, PID-D E2, PID-C E2, PID Autotune E2
  2648. // PID-P E3, PID-I E3, PID-D E3, PID-C E3, PID Autotune E3
  2649. // PID-P E4, PID-I E4, PID-D E4, PID-C E4, PID Autotune E4
  2650. // PID-P E5, PID-I E5, PID-D E5, PID-C E5, PID Autotune E5
  2651. //
  2652. #if ENABLED(PIDTEMP)
  2653. #define _PID_BASE_MENU_ITEMS(ELABEL, eindex) \
  2654. raw_Ki = unscalePID_i(PID_PARAM(Ki, eindex)); \
  2655. raw_Kd = unscalePID_d(PID_PARAM(Kd, eindex)); \
  2656. MENU_ITEM_EDIT(float52, MSG_PID_P ELABEL, &PID_PARAM(Kp, eindex), 1, 9990); \
  2657. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I ELABEL, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E ## eindex); \
  2658. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D ELABEL, &raw_Kd, 1, 9990, copy_and_scalePID_d_E ## eindex)
  2659. #if ENABLED(PID_EXTRUSION_SCALING)
  2660. #define _PID_MENU_ITEMS(ELABEL, eindex) \
  2661. _PID_BASE_MENU_ITEMS(ELABEL, eindex); \
  2662. MENU_ITEM_EDIT(float3, MSG_PID_C ELABEL, &PID_PARAM(Kc, eindex), 1, 9990)
  2663. #else
  2664. #define _PID_MENU_ITEMS(ELABEL, eindex) _PID_BASE_MENU_ITEMS(ELABEL, eindex)
  2665. #endif
  2666. #if ENABLED(PID_AUTOTUNE_MENU)
  2667. #define PID_MENU_ITEMS(ELABEL, eindex) \
  2668. _PID_MENU_ITEMS(ELABEL, eindex); \
  2669. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_PID_AUTOTUNE ELABEL, &autotune_temp[eindex], 150, heater_maxtemp[eindex] - 15, lcd_autotune_callback_E ## eindex)
  2670. #else
  2671. #define PID_MENU_ITEMS(ELABEL, eindex) _PID_MENU_ITEMS(ELABEL, eindex)
  2672. #endif
  2673. #if ENABLED(PID_PARAMS_PER_HOTEND) && HOTENDS > 1
  2674. PID_MENU_ITEMS(" " MSG_E1, 0);
  2675. PID_MENU_ITEMS(" " MSG_E2, 1);
  2676. #if HOTENDS > 2
  2677. PID_MENU_ITEMS(" " MSG_E3, 2);
  2678. #if HOTENDS > 3
  2679. PID_MENU_ITEMS(" " MSG_E4, 3);
  2680. #if HOTENDS > 4
  2681. PID_MENU_ITEMS(" " MSG_E5, 4);
  2682. #endif // HOTENDS > 4
  2683. #endif // HOTENDS > 3
  2684. #endif // HOTENDS > 2
  2685. #else // !PID_PARAMS_PER_HOTEND || HOTENDS == 1
  2686. PID_MENU_ITEMS("", 0);
  2687. #endif // !PID_PARAMS_PER_HOTEND || HOTENDS == 1
  2688. #endif // PIDTEMP
  2689. //
  2690. // Preheat Material 1 conf
  2691. //
  2692. MENU_ITEM(submenu, MSG_PREHEAT_1_SETTINGS, lcd_control_temperature_preheat_material1_settings_menu);
  2693. //
  2694. // Preheat Material 2 conf
  2695. //
  2696. MENU_ITEM(submenu, MSG_PREHEAT_2_SETTINGS, lcd_control_temperature_preheat_material2_settings_menu);
  2697. END_MENU();
  2698. }
  2699. void _lcd_control_temperature_preheat_settings_menu(uint8_t material) {
  2700. #if HOTENDS > 4
  2701. #define MINTEMP_ALL MIN5(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP, HEATER_3_MINTEMP, HEATER_4_MINTEMP)
  2702. #define MAXTEMP_ALL MAX5(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP, HEATER_4_MAXTEMP)
  2703. #elif HOTENDS > 3
  2704. #define MINTEMP_ALL MIN4(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP, HEATER_3_MINTEMP)
  2705. #define MAXTEMP_ALL MAX4(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP)
  2706. #elif HOTENDS > 2
  2707. #define MINTEMP_ALL MIN3(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP)
  2708. #define MAXTEMP_ALL MAX3(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP)
  2709. #elif HOTENDS > 1
  2710. #define MINTEMP_ALL min(HEATER_0_MINTEMP, HEATER_1_MINTEMP)
  2711. #define MAXTEMP_ALL max(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP)
  2712. #else
  2713. #define MINTEMP_ALL HEATER_0_MINTEMP
  2714. #define MAXTEMP_ALL HEATER_0_MAXTEMP
  2715. #endif
  2716. START_MENU();
  2717. MENU_BACK(MSG_TEMPERATURE);
  2718. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &lcd_preheat_fan_speed[material], 0, 255);
  2719. #if TEMP_SENSOR_0 != 0
  2720. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &lcd_preheat_hotend_temp[material], MINTEMP_ALL, MAXTEMP_ALL - 15);
  2721. #endif
  2722. #if TEMP_SENSOR_BED != 0
  2723. MENU_ITEM_EDIT(int3, MSG_BED, &lcd_preheat_bed_temp[material], BED_MINTEMP, BED_MAXTEMP - 15);
  2724. #endif
  2725. #if ENABLED(EEPROM_SETTINGS)
  2726. MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
  2727. #endif
  2728. END_MENU();
  2729. }
  2730. /**
  2731. *
  2732. * "Temperature" > "Preheat Material 1 conf" submenu
  2733. *
  2734. */
  2735. void lcd_control_temperature_preheat_material1_settings_menu() { _lcd_control_temperature_preheat_settings_menu(0); }
  2736. /**
  2737. *
  2738. * "Temperature" > "Preheat Material 2 conf" submenu
  2739. *
  2740. */
  2741. void lcd_control_temperature_preheat_material2_settings_menu() { _lcd_control_temperature_preheat_settings_menu(1); }
  2742. /**
  2743. *
  2744. * "Control" > "Motion" submenu
  2745. *
  2746. */
  2747. void _reset_acceleration_rates() { planner.reset_acceleration_rates(); }
  2748. #if ENABLED(DISTINCT_E_FACTORS)
  2749. void _reset_e_acceleration_rate(const uint8_t e) { if (e == active_extruder) _reset_acceleration_rates(); }
  2750. void _reset_e0_acceleration_rate() { _reset_e_acceleration_rate(0); }
  2751. void _reset_e1_acceleration_rate() { _reset_e_acceleration_rate(1); }
  2752. #if E_STEPPERS > 2
  2753. void _reset_e2_acceleration_rate() { _reset_e_acceleration_rate(2); }
  2754. #if E_STEPPERS > 3
  2755. void _reset_e3_acceleration_rate() { _reset_e_acceleration_rate(3); }
  2756. #if E_STEPPERS > 4
  2757. void _reset_e4_acceleration_rate() { _reset_e_acceleration_rate(4); }
  2758. #endif // E_STEPPERS > 4
  2759. #endif // E_STEPPERS > 3
  2760. #endif // E_STEPPERS > 2
  2761. #endif
  2762. void _planner_refresh_positioning() { planner.refresh_positioning(); }
  2763. #if ENABLED(DISTINCT_E_FACTORS)
  2764. void _planner_refresh_e_positioning(const uint8_t e) {
  2765. if (e == active_extruder)
  2766. _planner_refresh_positioning();
  2767. else
  2768. planner.steps_to_mm[E_AXIS + e] = 1.0 / planner.axis_steps_per_mm[E_AXIS + e];
  2769. }
  2770. void _planner_refresh_e0_positioning() { _planner_refresh_e_positioning(0); }
  2771. void _planner_refresh_e1_positioning() { _planner_refresh_e_positioning(1); }
  2772. #if E_STEPPERS > 2
  2773. void _planner_refresh_e2_positioning() { _planner_refresh_e_positioning(2); }
  2774. #if E_STEPPERS > 3
  2775. void _planner_refresh_e3_positioning() { _planner_refresh_e_positioning(3); }
  2776. #if E_STEPPERS > 4
  2777. void _planner_refresh_e4_positioning() { _planner_refresh_e_positioning(4); }
  2778. #endif // E_STEPPERS > 4
  2779. #endif // E_STEPPERS > 3
  2780. #endif // E_STEPPERS > 2
  2781. #endif
  2782. // M203 / M205 Velocity options
  2783. void lcd_control_motion_velocity_menu() {
  2784. START_MENU();
  2785. MENU_BACK(MSG_MOTION);
  2786. // M203 Max Feedrate
  2787. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_X, &planner.max_feedrate_mm_s[X_AXIS], 1, 999);
  2788. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Y, &planner.max_feedrate_mm_s[Y_AXIS], 1, 999);
  2789. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Z, &planner.max_feedrate_mm_s[Z_AXIS], 1, 999);
  2790. #if ENABLED(DISTINCT_E_FACTORS)
  2791. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E, &planner.max_feedrate_mm_s[E_AXIS + active_extruder], 1, 999);
  2792. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E1, &planner.max_feedrate_mm_s[E_AXIS], 1, 999);
  2793. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E2, &planner.max_feedrate_mm_s[E_AXIS + 1], 1, 999);
  2794. #if E_STEPPERS > 2
  2795. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E3, &planner.max_feedrate_mm_s[E_AXIS + 2], 1, 999);
  2796. #if E_STEPPERS > 3
  2797. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E4, &planner.max_feedrate_mm_s[E_AXIS + 3], 1, 999);
  2798. #if E_STEPPERS > 4
  2799. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E5, &planner.max_feedrate_mm_s[E_AXIS + 4], 1, 999);
  2800. #endif // E_STEPPERS > 4
  2801. #endif // E_STEPPERS > 3
  2802. #endif // E_STEPPERS > 2
  2803. #else
  2804. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E, &planner.max_feedrate_mm_s[E_AXIS], 1, 999);
  2805. #endif
  2806. // M205 S Min Feedrate
  2807. MENU_ITEM_EDIT(float3, MSG_VMIN, &planner.min_feedrate_mm_s, 0, 999);
  2808. // M205 T Min Travel Feedrate
  2809. MENU_ITEM_EDIT(float3, MSG_VTRAV_MIN, &planner.min_travel_feedrate_mm_s, 0, 999);
  2810. END_MENU();
  2811. }
  2812. // M201 / M204 Accelerations
  2813. void lcd_control_motion_acceleration_menu() {
  2814. START_MENU();
  2815. MENU_BACK(MSG_MOTION);
  2816. // M204 P Acceleration
  2817. MENU_ITEM_EDIT(float5, MSG_ACC, &planner.acceleration, 10, 99000);
  2818. // M204 R Retract Acceleration
  2819. MENU_ITEM_EDIT(float5, MSG_A_RETRACT, &planner.retract_acceleration, 100, 99000);
  2820. // M204 T Travel Acceleration
  2821. MENU_ITEM_EDIT(float5, MSG_A_TRAVEL, &planner.travel_acceleration, 100, 99000);
  2822. // M201 settings
  2823. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_X, &planner.max_acceleration_mm_per_s2[X_AXIS], 100, 99000, _reset_acceleration_rates);
  2824. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Y, &planner.max_acceleration_mm_per_s2[Y_AXIS], 100, 99000, _reset_acceleration_rates);
  2825. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Z, &planner.max_acceleration_mm_per_s2[Z_AXIS], 10, 99000, _reset_acceleration_rates);
  2826. #if ENABLED(DISTINCT_E_FACTORS)
  2827. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E, &planner.max_acceleration_mm_per_s2[E_AXIS + active_extruder], 100, 99000, _reset_acceleration_rates);
  2828. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E1, &planner.max_acceleration_mm_per_s2[E_AXIS], 100, 99000, _reset_e0_acceleration_rate);
  2829. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E2, &planner.max_acceleration_mm_per_s2[E_AXIS + 1], 100, 99000, _reset_e1_acceleration_rate);
  2830. #if E_STEPPERS > 2
  2831. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E3, &planner.max_acceleration_mm_per_s2[E_AXIS + 2], 100, 99000, _reset_e2_acceleration_rate);
  2832. #if E_STEPPERS > 3
  2833. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E4, &planner.max_acceleration_mm_per_s2[E_AXIS + 3], 100, 99000, _reset_e3_acceleration_rate);
  2834. #if E_STEPPERS > 4
  2835. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E5, &planner.max_acceleration_mm_per_s2[E_AXIS + 4], 100, 99000, _reset_e4_acceleration_rate);
  2836. #endif // E_STEPPERS > 4
  2837. #endif // E_STEPPERS > 3
  2838. #endif // E_STEPPERS > 2
  2839. #else
  2840. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E, &planner.max_acceleration_mm_per_s2[E_AXIS], 100, 99000, _reset_acceleration_rates);
  2841. #endif
  2842. END_MENU();
  2843. }
  2844. // M205 Jerk
  2845. void lcd_control_motion_jerk_menu() {
  2846. START_MENU();
  2847. MENU_BACK(MSG_MOTION);
  2848. MENU_ITEM_EDIT(float3, MSG_VX_JERK, &planner.max_jerk[X_AXIS], 1, 990);
  2849. MENU_ITEM_EDIT(float3, MSG_VY_JERK, &planner.max_jerk[Y_AXIS], 1, 990);
  2850. #if ENABLED(DELTA)
  2851. MENU_ITEM_EDIT(float3, MSG_VZ_JERK, &planner.max_jerk[Z_AXIS], 1, 990);
  2852. #else
  2853. MENU_ITEM_EDIT(float52, MSG_VZ_JERK, &planner.max_jerk[Z_AXIS], 0.1, 990);
  2854. #endif
  2855. MENU_ITEM_EDIT(float3, MSG_VE_JERK, &planner.max_jerk[E_AXIS], 1, 990);
  2856. END_MENU();
  2857. }
  2858. // M92 Steps-per-mm
  2859. void lcd_control_motion_steps_per_mm_menu() {
  2860. START_MENU();
  2861. MENU_BACK(MSG_MOTION);
  2862. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_XSTEPS, &planner.axis_steps_per_mm[X_AXIS], 5, 9999, _planner_refresh_positioning);
  2863. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_YSTEPS, &planner.axis_steps_per_mm[Y_AXIS], 5, 9999, _planner_refresh_positioning);
  2864. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_ZSTEPS, &planner.axis_steps_per_mm[Z_AXIS], 5, 9999, _planner_refresh_positioning);
  2865. #if ENABLED(DISTINCT_E_FACTORS)
  2866. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_ESTEPS, &planner.axis_steps_per_mm[E_AXIS + active_extruder], 5, 9999, _planner_refresh_positioning);
  2867. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_E1STEPS, &planner.axis_steps_per_mm[E_AXIS], 5, 9999, _planner_refresh_e0_positioning);
  2868. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_E2STEPS, &planner.axis_steps_per_mm[E_AXIS + 1], 5, 9999, _planner_refresh_e1_positioning);
  2869. #if E_STEPPERS > 2
  2870. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_E3STEPS, &planner.axis_steps_per_mm[E_AXIS + 2], 5, 9999, _planner_refresh_e2_positioning);
  2871. #if E_STEPPERS > 3
  2872. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_E4STEPS, &planner.axis_steps_per_mm[E_AXIS + 3], 5, 9999, _planner_refresh_e3_positioning);
  2873. #if E_STEPPERS > 4
  2874. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_E5STEPS, &planner.axis_steps_per_mm[E_AXIS + 4], 5, 9999, _planner_refresh_e4_positioning);
  2875. #endif // E_STEPPERS > 4
  2876. #endif // E_STEPPERS > 3
  2877. #endif // E_STEPPERS > 2
  2878. #else
  2879. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float62, MSG_ESTEPS, &planner.axis_steps_per_mm[E_AXIS], 5, 9999, _planner_refresh_positioning);
  2880. #endif
  2881. END_MENU();
  2882. }
  2883. void lcd_control_motion_menu() {
  2884. START_MENU();
  2885. MENU_BACK(MSG_CONTROL);
  2886. #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
  2887. MENU_ITEM(submenu, MSG_ZPROBE_ZOFFSET, lcd_babystep_zoffset);
  2888. #elif HAS_BED_PROBE
  2889. MENU_ITEM_EDIT_CALLBACK(float32, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX, lcd_refresh_zprobe_zoffset);
  2890. #endif
  2891. // M203 / M205 - Feedrate items
  2892. MENU_ITEM(submenu, MSG_VELOCITY, lcd_control_motion_velocity_menu);
  2893. // M201 - Acceleration items
  2894. MENU_ITEM(submenu, MSG_ACCELERATION, lcd_control_motion_acceleration_menu);
  2895. // M205 - Max Jerk
  2896. MENU_ITEM(submenu, MSG_JERK, lcd_control_motion_jerk_menu);
  2897. // M92 - Steps Per mm
  2898. MENU_ITEM(submenu, MSG_STEPS_PER_MM, lcd_control_motion_steps_per_mm_menu);
  2899. // M540 S - Abort on endstop hit when SD printing
  2900. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  2901. MENU_ITEM_EDIT(bool, MSG_ENDSTOP_ABORT, &stepper.abort_on_endstop_hit);
  2902. #endif
  2903. END_MENU();
  2904. }
  2905. /**
  2906. *
  2907. * "Control" > "Filament" submenu
  2908. *
  2909. */
  2910. void lcd_control_filament_menu() {
  2911. START_MENU();
  2912. MENU_BACK(MSG_CONTROL);
  2913. #if ENABLED(LIN_ADVANCE)
  2914. MENU_ITEM_EDIT(float3, MSG_ADVANCE_K, &planner.extruder_advance_k, 0, 999);
  2915. #endif
  2916. MENU_ITEM_EDIT_CALLBACK(bool, MSG_VOLUMETRIC_ENABLED, &volumetric_enabled, calculate_volumetric_multipliers);
  2917. if (volumetric_enabled) {
  2918. #if EXTRUDERS == 1
  2919. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM, &filament_size[0], 1.5, 3.25, calculate_volumetric_multipliers);
  2920. #else // EXTRUDERS > 1
  2921. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E1, &filament_size[0], 1.5, 3.25, calculate_volumetric_multipliers);
  2922. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E2, &filament_size[1], 1.5, 3.25, calculate_volumetric_multipliers);
  2923. #if EXTRUDERS > 2
  2924. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E3, &filament_size[2], 1.5, 3.25, calculate_volumetric_multipliers);
  2925. #if EXTRUDERS > 3
  2926. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E4, &filament_size[3], 1.5, 3.25, calculate_volumetric_multipliers);
  2927. #if EXTRUDERS > 4
  2928. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E5, &filament_size[4], 1.5, 3.25, calculate_volumetric_multipliers);
  2929. #endif // EXTRUDERS > 4
  2930. #endif // EXTRUDERS > 3
  2931. #endif // EXTRUDERS > 2
  2932. #endif // EXTRUDERS > 1
  2933. }
  2934. END_MENU();
  2935. }
  2936. /**
  2937. *
  2938. * "Control" > "Retract" submenu
  2939. *
  2940. */
  2941. #if ENABLED(FWRETRACT)
  2942. void lcd_control_retract_menu() {
  2943. START_MENU();
  2944. MENU_BACK(MSG_CONTROL);
  2945. MENU_ITEM_EDIT(bool, MSG_AUTORETRACT, &autoretract_enabled);
  2946. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT, &retract_length, 0, 100);
  2947. #if EXTRUDERS > 1
  2948. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_SWAP, &retract_length_swap, 0, 100);
  2949. #endif
  2950. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACTF, &retract_feedrate_mm_s, 1, 999);
  2951. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_ZLIFT, &retract_zlift, 0, 999);
  2952. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER, &retract_recover_length, -100, 100);
  2953. #if EXTRUDERS > 1
  2954. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER_SWAP, &retract_recover_length_swap, -100, 100);
  2955. #endif
  2956. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACT_RECOVERF, &retract_recover_feedrate_mm_s, 1, 999);
  2957. END_MENU();
  2958. }
  2959. #endif // FWRETRACT
  2960. #if ENABLED(SDSUPPORT)
  2961. #if !PIN_EXISTS(SD_DETECT)
  2962. void lcd_sd_refresh() {
  2963. card.initsd();
  2964. encoderTopLine = 0;
  2965. }
  2966. #endif
  2967. void lcd_sd_updir() {
  2968. card.updir();
  2969. encoderTopLine = 0;
  2970. screen_changed = true;
  2971. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  2972. }
  2973. /**
  2974. *
  2975. * "Print from SD" submenu
  2976. *
  2977. */
  2978. void lcd_sdcard_menu() {
  2979. ENCODER_DIRECTION_MENUS();
  2980. if (!lcdDrawUpdate && !lcd_clicked) return; // nothing to do (so don't thrash the SD card)
  2981. const uint16_t fileCnt = card.getnrfilenames();
  2982. START_MENU();
  2983. MENU_BACK(MSG_MAIN);
  2984. card.getWorkDirName();
  2985. if (card.filename[0] == '/') {
  2986. #if !PIN_EXISTS(SD_DETECT)
  2987. MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
  2988. #endif
  2989. }
  2990. else {
  2991. MENU_ITEM(function, LCD_STR_FOLDER "..", lcd_sd_updir);
  2992. }
  2993. for (uint16_t i = 0; i < fileCnt; i++) {
  2994. if (_menuLineNr == _thisItemNr) {
  2995. const uint16_t nr =
  2996. #if ENABLED(SDCARD_RATHERRECENTFIRST) && DISABLED(SDCARD_SORT_ALPHA)
  2997. fileCnt - 1 -
  2998. #endif
  2999. i;
  3000. #if ENABLED(SDCARD_SORT_ALPHA)
  3001. card.getfilename_sorted(nr);
  3002. #else
  3003. card.getfilename(nr);
  3004. #endif
  3005. if (card.filenameIsDir)
  3006. MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
  3007. else
  3008. MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
  3009. }
  3010. else {
  3011. MENU_ITEM_DUMMY();
  3012. }
  3013. }
  3014. END_MENU();
  3015. }
  3016. #endif // SDSUPPORT
  3017. #if ENABLED(LCD_INFO_MENU)
  3018. #if ENABLED(PRINTCOUNTER)
  3019. /**
  3020. *
  3021. * About Printer > Statistics submenu
  3022. *
  3023. */
  3024. void lcd_info_stats_menu() {
  3025. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  3026. char buffer[21];
  3027. printStatistics stats = print_job_timer.getStats();
  3028. START_SCREEN(); // 12345678901234567890
  3029. STATIC_ITEM(MSG_INFO_PRINT_COUNT ": ", false, false, itostr3left(stats.totalPrints)); // Print Count: 999
  3030. STATIC_ITEM(MSG_INFO_COMPLETED_PRINTS": ", false, false, itostr3left(stats.finishedPrints)); // Completed : 666
  3031. duration_t elapsed = stats.printTime;
  3032. elapsed.toString(buffer);
  3033. STATIC_ITEM(MSG_INFO_PRINT_TIME ": ", false, false); // Total print Time:
  3034. STATIC_ITEM("", false, false, buffer); // 99y 364d 23h 59m 59s
  3035. elapsed = stats.longestPrint;
  3036. elapsed.toString(buffer);
  3037. STATIC_ITEM(MSG_INFO_PRINT_LONGEST ": ", false, false); // Longest job time:
  3038. STATIC_ITEM("", false, false, buffer); // 99y 364d 23h 59m 59s
  3039. sprintf_P(buffer, PSTR("%ld.%im"), long(stats.filamentUsed / 1000), int16_t(stats.filamentUsed / 100) % 10);
  3040. STATIC_ITEM(MSG_INFO_PRINT_FILAMENT ": ", false, false); // Extruded total:
  3041. STATIC_ITEM("", false, false, buffer); // 125m
  3042. END_SCREEN();
  3043. }
  3044. #endif // PRINTCOUNTER
  3045. /**
  3046. *
  3047. * About Printer > Thermistors
  3048. *
  3049. */
  3050. void lcd_info_thermistors_menu() {
  3051. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  3052. START_SCREEN();
  3053. #define THERMISTOR_ID TEMP_SENSOR_0
  3054. #include "thermistornames.h"
  3055. STATIC_ITEM("T0: " THERMISTOR_NAME, false, true);
  3056. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_0_MINTEMP), false);
  3057. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_0_MAXTEMP), false);
  3058. #if TEMP_SENSOR_1 != 0
  3059. #undef THERMISTOR_ID
  3060. #define THERMISTOR_ID TEMP_SENSOR_1
  3061. #include "thermistornames.h"
  3062. STATIC_ITEM("T1: " THERMISTOR_NAME, false, true);
  3063. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_1_MINTEMP), false);
  3064. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_1_MAXTEMP), false);
  3065. #endif
  3066. #if TEMP_SENSOR_2 != 0
  3067. #undef THERMISTOR_ID
  3068. #define THERMISTOR_ID TEMP_SENSOR_2
  3069. #include "thermistornames.h"
  3070. STATIC_ITEM("T2: " THERMISTOR_NAME, false, true);
  3071. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_2_MINTEMP), false);
  3072. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_2_MAXTEMP), false);
  3073. #endif
  3074. #if TEMP_SENSOR_3 != 0
  3075. #undef THERMISTOR_ID
  3076. #define THERMISTOR_ID TEMP_SENSOR_3
  3077. #include "thermistornames.h"
  3078. STATIC_ITEM("T3: " THERMISTOR_NAME, false, true);
  3079. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_3_MINTEMP), false);
  3080. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_3_MAXTEMP), false);
  3081. #endif
  3082. #if TEMP_SENSOR_4 != 0
  3083. #undef THERMISTOR_ID
  3084. #define THERMISTOR_ID TEMP_SENSOR_4
  3085. #include "thermistornames.h"
  3086. STATIC_ITEM("T4: " THERMISTOR_NAME, false, true);
  3087. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_4_MINTEMP), false);
  3088. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_4_MAXTEMP), false);
  3089. #endif
  3090. #if TEMP_SENSOR_BED != 0
  3091. #undef THERMISTOR_ID
  3092. #define THERMISTOR_ID TEMP_SENSOR_BED
  3093. #include "thermistornames.h"
  3094. STATIC_ITEM("TBed:" THERMISTOR_NAME, false, true);
  3095. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(BED_MINTEMP), false);
  3096. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(BED_MAXTEMP), false);
  3097. #endif
  3098. END_SCREEN();
  3099. }
  3100. /**
  3101. *
  3102. * About Printer > Board Info
  3103. *
  3104. */
  3105. void lcd_info_board_menu() {
  3106. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  3107. START_SCREEN();
  3108. STATIC_ITEM(BOARD_NAME, true, true); // MyPrinterController
  3109. STATIC_ITEM(MSG_INFO_BAUDRATE ": " STRINGIFY(BAUDRATE), true); // Baud: 250000
  3110. STATIC_ITEM(MSG_INFO_PROTOCOL ": " PROTOCOL_VERSION, true); // Protocol: 1.0
  3111. #if POWER_SUPPLY == 0
  3112. STATIC_ITEM(MSG_INFO_PSU ": Generic", true);
  3113. #elif POWER_SUPPLY == 1
  3114. STATIC_ITEM(MSG_INFO_PSU ": ATX", true); // Power Supply: ATX
  3115. #elif POWER_SUPPLY == 2
  3116. STATIC_ITEM(MSG_INFO_PSU ": XBox", true); // Power Supply: XBox
  3117. #endif
  3118. END_SCREEN();
  3119. }
  3120. /**
  3121. *
  3122. * About Printer > Printer Info
  3123. *
  3124. */
  3125. void lcd_info_printer_menu() {
  3126. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  3127. START_SCREEN();
  3128. STATIC_ITEM(MSG_MARLIN, true, true); // Marlin
  3129. STATIC_ITEM(SHORT_BUILD_VERSION, true); // x.x.x-Branch
  3130. STATIC_ITEM(STRING_DISTRIBUTION_DATE, true); // YYYY-MM-DD HH:MM
  3131. STATIC_ITEM(MACHINE_NAME, true); // My3DPrinter
  3132. STATIC_ITEM(WEBSITE_URL, true); // www.my3dprinter.com
  3133. STATIC_ITEM(MSG_INFO_EXTRUDERS ": " STRINGIFY(EXTRUDERS), true); // Extruders: 2
  3134. #if ENABLED(AUTO_BED_LEVELING_3POINT)
  3135. STATIC_ITEM(MSG_3POINT_LEVELING, true); // 3-Point Leveling
  3136. #elif ENABLED(AUTO_BED_LEVELING_LINEAR)
  3137. STATIC_ITEM(MSG_LINEAR_LEVELING, true); // Linear Leveling
  3138. #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
  3139. STATIC_ITEM(MSG_BILINEAR_LEVELING, true); // Bi-linear Leveling
  3140. #elif ENABLED(AUTO_BED_LEVELING_UBL)
  3141. STATIC_ITEM(MSG_UBL_LEVELING, true); // Unified Bed Leveling
  3142. #elif ENABLED(MESH_BED_LEVELING)
  3143. STATIC_ITEM(MSG_MESH_LEVELING, true); // Mesh Leveling
  3144. #endif
  3145. END_SCREEN();
  3146. }
  3147. /**
  3148. *
  3149. * "About Printer" submenu
  3150. *
  3151. */
  3152. void lcd_info_menu() {
  3153. START_MENU();
  3154. MENU_BACK(MSG_MAIN);
  3155. MENU_ITEM(submenu, MSG_INFO_PRINTER_MENU, lcd_info_printer_menu); // Printer Info >
  3156. MENU_ITEM(submenu, MSG_INFO_BOARD_MENU, lcd_info_board_menu); // Board Info >
  3157. MENU_ITEM(submenu, MSG_INFO_THERMISTOR_MENU, lcd_info_thermistors_menu); // Thermistors >
  3158. #if ENABLED(PRINTCOUNTER)
  3159. MENU_ITEM(submenu, MSG_INFO_STATS_MENU, lcd_info_stats_menu); // Printer Statistics >
  3160. #endif
  3161. END_MENU();
  3162. }
  3163. #endif // LCD_INFO_MENU
  3164. /**
  3165. *
  3166. * Filament Change Feature Screens
  3167. *
  3168. */
  3169. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  3170. // Portions from STATIC_ITEM...
  3171. #define HOTEND_STATUS_ITEM() do { \
  3172. if (_menuLineNr == _thisItemNr) { \
  3173. if (lcdDrawUpdate) { \
  3174. lcd_implementation_drawmenu_static(_lcdLineNr, PSTR(MSG_FILAMENT_CHANGE_NOZZLE), false, true); \
  3175. lcd_implementation_hotend_status(_lcdLineNr); \
  3176. } \
  3177. if (_skipStatic && encoderLine <= _thisItemNr) { \
  3178. encoderPosition += ENCODER_STEPS_PER_MENU_ITEM; \
  3179. ++encoderLine; \
  3180. } \
  3181. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT; \
  3182. } \
  3183. ++_thisItemNr; \
  3184. }while(0)
  3185. void lcd_advanced_pause_toocold_menu() {
  3186. START_MENU();
  3187. STATIC_ITEM(MSG_HEATING_FAILED_LCD, true, true);
  3188. STATIC_ITEM(MSG_FILAMENT_CHANGE_MINTEMP STRINGIFY(EXTRUDE_MINTEMP) ".", false, false);
  3189. MENU_BACK(MSG_BACK);
  3190. #if LCD_HEIGHT > 4
  3191. STATIC_ITEM(" ");
  3192. #endif
  3193. HOTEND_STATUS_ITEM();
  3194. END_MENU();
  3195. }
  3196. void lcd_advanced_pause_resume_print() {
  3197. advanced_pause_menu_response = ADVANCED_PAUSE_RESPONSE_RESUME_PRINT;
  3198. }
  3199. void lcd_advanced_pause_extrude_more() {
  3200. advanced_pause_menu_response = ADVANCED_PAUSE_RESPONSE_EXTRUDE_MORE;
  3201. }
  3202. void lcd_advanced_pause_option_menu() {
  3203. START_MENU();
  3204. #if LCD_HEIGHT > 2
  3205. STATIC_ITEM(MSG_FILAMENT_CHANGE_OPTION_HEADER, true, false);
  3206. #endif
  3207. MENU_ITEM(function, MSG_FILAMENT_CHANGE_OPTION_RESUME, lcd_advanced_pause_resume_print);
  3208. MENU_ITEM(function, MSG_FILAMENT_CHANGE_OPTION_EXTRUDE, lcd_advanced_pause_extrude_more);
  3209. END_MENU();
  3210. }
  3211. void lcd_advanced_pause_init_message() {
  3212. START_SCREEN();
  3213. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3214. STATIC_ITEM(MSG_FILAMENT_CHANGE_INIT_1);
  3215. #ifdef MSG_FILAMENT_CHANGE_INIT_2
  3216. STATIC_ITEM(MSG_FILAMENT_CHANGE_INIT_2);
  3217. #define __FC_LINES_A 3
  3218. #else
  3219. #define __FC_LINES_A 2
  3220. #endif
  3221. #ifdef MSG_FILAMENT_CHANGE_INIT_3
  3222. STATIC_ITEM(MSG_FILAMENT_CHANGE_INIT_3);
  3223. #define _FC_LINES_A (__FC_LINES_A + 1)
  3224. #else
  3225. #define _FC_LINES_A __FC_LINES_A
  3226. #endif
  3227. #if LCD_HEIGHT > _FC_LINES_A + 1
  3228. STATIC_ITEM(" ");
  3229. #endif
  3230. HOTEND_STATUS_ITEM();
  3231. END_SCREEN();
  3232. }
  3233. void lcd_advanced_pause_unload_message() {
  3234. START_SCREEN();
  3235. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3236. STATIC_ITEM(MSG_FILAMENT_CHANGE_UNLOAD_1);
  3237. #ifdef MSG_FILAMENT_CHANGE_UNLOAD_2
  3238. STATIC_ITEM(MSG_FILAMENT_CHANGE_UNLOAD_2);
  3239. #define __FC_LINES_B 3
  3240. #else
  3241. #define __FC_LINES_B 2
  3242. #endif
  3243. #ifdef MSG_FILAMENT_CHANGE_UNLOAD_3
  3244. STATIC_ITEM(MSG_FILAMENT_CHANGE_UNLOAD_3);
  3245. #define _FC_LINES_B (__FC_LINES_B + 1)
  3246. #else
  3247. #define _FC_LINES_B __FC_LINES_B
  3248. #endif
  3249. #if LCD_HEIGHT > _FC_LINES_B + 1
  3250. STATIC_ITEM(" ");
  3251. #endif
  3252. HOTEND_STATUS_ITEM();
  3253. END_SCREEN();
  3254. }
  3255. void lcd_advanced_pause_wait_for_nozzles_to_heat() {
  3256. START_SCREEN();
  3257. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3258. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEATING_1);
  3259. #ifdef MSG_FILAMENT_CHANGE_HEATING_2
  3260. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEATING_2);
  3261. #define _FC_LINES_C 3
  3262. #else
  3263. #define _FC_LINES_C 2
  3264. #endif
  3265. #if LCD_HEIGHT > _FC_LINES_C + 1
  3266. STATIC_ITEM(" ");
  3267. #endif
  3268. HOTEND_STATUS_ITEM();
  3269. END_SCREEN();
  3270. }
  3271. void lcd_advanced_pause_heat_nozzle() {
  3272. START_SCREEN();
  3273. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3274. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEAT_1);
  3275. #ifdef MSG_FILAMENT_CHANGE_INSERT_2
  3276. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEAT_2);
  3277. #define _FC_LINES_D 3
  3278. #else
  3279. #define _FC_LINES_D 2
  3280. #endif
  3281. #if LCD_HEIGHT > _FC_LINES_D + 1
  3282. STATIC_ITEM(" ");
  3283. #endif
  3284. HOTEND_STATUS_ITEM();
  3285. END_SCREEN();
  3286. }
  3287. void lcd_advanced_pause_insert_message() {
  3288. START_SCREEN();
  3289. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3290. STATIC_ITEM(MSG_FILAMENT_CHANGE_INSERT_1);
  3291. #ifdef MSG_FILAMENT_CHANGE_INSERT_2
  3292. STATIC_ITEM(MSG_FILAMENT_CHANGE_INSERT_2);
  3293. #define __FC_LINES_E 3
  3294. #else
  3295. #define __FC_LINES_E 2
  3296. #endif
  3297. #ifdef MSG_FILAMENT_CHANGE_INSERT_3
  3298. STATIC_ITEM(MSG_FILAMENT_CHANGE_INSERT_3);
  3299. #define _FC_LINES_E (__FC_LINES_E + 1)
  3300. #else
  3301. #define _FC_LINES_E __FC_LINES_E
  3302. #endif
  3303. #if LCD_HEIGHT > _FC_LINES_E + 1
  3304. STATIC_ITEM(" ");
  3305. #endif
  3306. HOTEND_STATUS_ITEM();
  3307. END_SCREEN();
  3308. }
  3309. void lcd_advanced_pause_load_message() {
  3310. START_SCREEN();
  3311. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3312. STATIC_ITEM(MSG_FILAMENT_CHANGE_LOAD_1);
  3313. #ifdef MSG_FILAMENT_CHANGE_LOAD_2
  3314. STATIC_ITEM(MSG_FILAMENT_CHANGE_LOAD_2);
  3315. #define __FC_LINES_F 3
  3316. #else
  3317. #define __FC_LINES_F 2
  3318. #endif
  3319. #ifdef MSG_FILAMENT_CHANGE_LOAD_3
  3320. STATIC_ITEM(MSG_FILAMENT_CHANGE_LOAD_3);
  3321. #define _FC_LINES_F (__FC_LINES_F + 1)
  3322. #else
  3323. #define _FC_LINES_F __FC_LINES_F
  3324. #endif
  3325. #if LCD_HEIGHT > _FC_LINES_F + 1
  3326. STATIC_ITEM(" ");
  3327. #endif
  3328. HOTEND_STATUS_ITEM();
  3329. END_SCREEN();
  3330. }
  3331. void lcd_advanced_pause_extrude_message() {
  3332. START_SCREEN();
  3333. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3334. STATIC_ITEM(MSG_FILAMENT_CHANGE_EXTRUDE_1);
  3335. #ifdef MSG_FILAMENT_CHANGE_EXTRUDE_2
  3336. STATIC_ITEM(MSG_FILAMENT_CHANGE_EXTRUDE_2);
  3337. #define __FC_LINES_G 3
  3338. #else
  3339. #define __FC_LINES_G 2
  3340. #endif
  3341. #ifdef MSG_FILAMENT_CHANGE_EXTRUDE_3
  3342. STATIC_ITEM(MSG_FILAMENT_CHANGE_EXTRUDE_3);
  3343. #define _FC_LINES_G (__FC_LINES_G + 1)
  3344. #else
  3345. #define _FC_LINES_G __FC_LINES_G
  3346. #endif
  3347. #if LCD_HEIGHT > _FC_LINES_G + 1
  3348. STATIC_ITEM(" ");
  3349. #endif
  3350. HOTEND_STATUS_ITEM();
  3351. END_SCREEN();
  3352. }
  3353. void lcd_advanced_pause_resume_message() {
  3354. START_SCREEN();
  3355. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  3356. STATIC_ITEM(MSG_FILAMENT_CHANGE_RESUME_1);
  3357. #ifdef MSG_FILAMENT_CHANGE_RESUME_2
  3358. STATIC_ITEM(MSG_FILAMENT_CHANGE_RESUME_2);
  3359. #endif
  3360. #ifdef MSG_FILAMENT_CHANGE_RESUME_3
  3361. STATIC_ITEM(MSG_FILAMENT_CHANGE_RESUME_3);
  3362. #endif
  3363. END_SCREEN();
  3364. }
  3365. void lcd_advanced_pause_show_message(const AdvancedPauseMessage message) {
  3366. switch (message) {
  3367. case ADVANCED_PAUSE_MESSAGE_INIT:
  3368. defer_return_to_status = true;
  3369. lcd_goto_screen(lcd_advanced_pause_init_message);
  3370. break;
  3371. case ADVANCED_PAUSE_MESSAGE_UNLOAD:
  3372. defer_return_to_status = true;
  3373. lcd_goto_screen(lcd_advanced_pause_unload_message);
  3374. break;
  3375. case ADVANCED_PAUSE_MESSAGE_INSERT:
  3376. defer_return_to_status = true;
  3377. lcd_goto_screen(lcd_advanced_pause_insert_message);
  3378. break;
  3379. case ADVANCED_PAUSE_MESSAGE_LOAD:
  3380. defer_return_to_status = true;
  3381. lcd_goto_screen(lcd_advanced_pause_load_message);
  3382. break;
  3383. case ADVANCED_PAUSE_MESSAGE_EXTRUDE:
  3384. defer_return_to_status = true;
  3385. lcd_goto_screen(lcd_advanced_pause_extrude_message);
  3386. break;
  3387. case ADVANCED_PAUSE_MESSAGE_CLICK_TO_HEAT_NOZZLE:
  3388. defer_return_to_status = true;
  3389. lcd_goto_screen(lcd_advanced_pause_heat_nozzle);
  3390. break;
  3391. case ADVANCED_PAUSE_MESSAGE_WAIT_FOR_NOZZLES_TO_HEAT:
  3392. defer_return_to_status = true;
  3393. lcd_goto_screen(lcd_advanced_pause_wait_for_nozzles_to_heat);
  3394. break;
  3395. case ADVANCED_PAUSE_MESSAGE_OPTION:
  3396. defer_return_to_status = true;
  3397. advanced_pause_menu_response = ADVANCED_PAUSE_RESPONSE_WAIT_FOR;
  3398. lcd_goto_screen(lcd_advanced_pause_option_menu);
  3399. break;
  3400. case ADVANCED_PAUSE_MESSAGE_RESUME:
  3401. defer_return_to_status = true;
  3402. lcd_goto_screen(lcd_advanced_pause_resume_message);
  3403. break;
  3404. case ADVANCED_PAUSE_MESSAGE_STATUS:
  3405. lcd_return_to_status();
  3406. break;
  3407. }
  3408. }
  3409. #endif // ADVANCED_PAUSE_FEATURE
  3410. /**
  3411. *
  3412. * Functions for editing single values
  3413. *
  3414. * The "DEFINE_MENU_EDIT_TYPE" macro generates the functions needed to edit a numerical value.
  3415. *
  3416. * For example, DEFINE_MENU_EDIT_TYPE(int16_t, int3, itostr3, 1) expands into these functions:
  3417. *
  3418. * bool _menu_edit_int3();
  3419. * void menu_edit_int3(); // edit int16_t (interactively)
  3420. * void menu_edit_callback_int3(); // edit int16_t (interactively) with callback on completion
  3421. * void _menu_action_setting_edit_int3(const char * const pstr, int16_t * const ptr, const int16_t minValue, const int16_t maxValue);
  3422. * void menu_action_setting_edit_int3(const char * const pstr, int16_t * const ptr, const int16_t minValue, const int16_t maxValue);
  3423. * 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
  3424. *
  3425. * You can then use one of the menu macros to present the edit interface:
  3426. * MENU_ITEM_EDIT(int3, MSG_SPEED, &feedrate_percentage, 10, 999)
  3427. *
  3428. * This expands into a more primitive menu item:
  3429. * MENU_ITEM(setting_edit_int3, MSG_SPEED, PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  3430. *
  3431. * ...which calls:
  3432. * menu_action_setting_edit_int3(PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  3433. */
  3434. #define DEFINE_MENU_EDIT_TYPE(_type, _name, _strFunc, _scale) \
  3435. bool _menu_edit_ ## _name() { \
  3436. ENCODER_DIRECTION_NORMAL(); \
  3437. if ((int32_t)encoderPosition < 0) encoderPosition = 0; \
  3438. if ((int32_t)encoderPosition > maxEditValue) encoderPosition = maxEditValue; \
  3439. if (lcdDrawUpdate) \
  3440. lcd_implementation_drawedit(editLabel, _strFunc(((_type)((int32_t)encoderPosition + minEditValue)) * (1.0 / _scale))); \
  3441. if (lcd_clicked || (liveEdit && lcdDrawUpdate)) { \
  3442. _type value = ((_type)((int32_t)encoderPosition + minEditValue)) * (1.0 / _scale); \
  3443. if (editValue != NULL) *((_type*)editValue) = value; \
  3444. if (liveEdit) (*callbackFunc)(); \
  3445. if (lcd_clicked) lcd_goto_previous_menu(); \
  3446. } \
  3447. return lcd_clicked; \
  3448. } \
  3449. void menu_edit_ ## _name() { _menu_edit_ ## _name(); } \
  3450. void menu_edit_callback_ ## _name() { if (_menu_edit_ ## _name()) (*callbackFunc)(); } \
  3451. void _menu_action_setting_edit_ ## _name(const char * const pstr, _type* const ptr, const _type minValue, const _type maxValue) { \
  3452. lcd_save_previous_screen(); \
  3453. \
  3454. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; \
  3455. \
  3456. editLabel = pstr; \
  3457. editValue = ptr; \
  3458. minEditValue = minValue * _scale; \
  3459. maxEditValue = maxValue * _scale - minEditValue; \
  3460. encoderPosition = (*ptr) * _scale - minEditValue; \
  3461. } \
  3462. void menu_action_setting_edit_ ## _name(const char * const pstr, _type * const ptr, const _type minValue, const _type maxValue) { \
  3463. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  3464. currentScreen = menu_edit_ ## _name; \
  3465. } \
  3466. 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) { \
  3467. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  3468. currentScreen = menu_edit_callback_ ## _name; \
  3469. callbackFunc = callback; \
  3470. liveEdit = live; \
  3471. } \
  3472. typedef void _name
  3473. DEFINE_MENU_EDIT_TYPE(int16_t, int3, itostr3, 1);
  3474. DEFINE_MENU_EDIT_TYPE(uint8_t, int8, i8tostr3, 1);
  3475. DEFINE_MENU_EDIT_TYPE(float, float3, ftostr3, 1.0);
  3476. DEFINE_MENU_EDIT_TYPE(float, float32, ftostr32, 100.0);
  3477. DEFINE_MENU_EDIT_TYPE(float, float43, ftostr43sign, 1000.0);
  3478. DEFINE_MENU_EDIT_TYPE(float, float5, ftostr5rj, 0.01);
  3479. DEFINE_MENU_EDIT_TYPE(float, float51, ftostr51sign, 10.0);
  3480. DEFINE_MENU_EDIT_TYPE(float, float52, ftostr52sign, 100.0);
  3481. DEFINE_MENU_EDIT_TYPE(float, float62, ftostr62rj, 100.0);
  3482. DEFINE_MENU_EDIT_TYPE(uint32_t, long5, ftostr5rj, 0.01);
  3483. /**
  3484. *
  3485. * Handlers for Keypad input
  3486. *
  3487. */
  3488. #if ENABLED(ADC_KEYPAD)
  3489. inline bool handle_adc_keypad() {
  3490. static uint8_t adc_steps = 0;
  3491. if (buttons_reprapworld_keypad) {
  3492. if (adc_steps < 20) ++adc_steps;
  3493. lcd_quick_feedback();
  3494. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  3495. if (encoderDirection == -1) { // side effect which signals we are inside a menu
  3496. if (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_DOWN) encoderPosition -= ENCODER_STEPS_PER_MENU_ITEM;
  3497. else if (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_UP) encoderPosition += ENCODER_STEPS_PER_MENU_ITEM;
  3498. else if (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_LEFT) menu_action_back();
  3499. else if (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_RIGHT) lcd_return_to_status();
  3500. }
  3501. else {
  3502. const int8_t step = adc_steps > 19 ? 100 : adc_steps > 10 ? 10 : 1;
  3503. if (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_DOWN) encoderPosition += ENCODER_PULSES_PER_STEP * step;
  3504. else if (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_UP) encoderPosition -= ENCODER_PULSES_PER_STEP * step;
  3505. else if (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_RIGHT) encoderPosition = 0;
  3506. }
  3507. #if ENABLED(ADC_KEYPAD_DEBUG)
  3508. SERIAL_PROTOCOLLNPAIR("buttons_reprapworld_keypad = ", (uint32_t)buttons_reprapworld_keypad);
  3509. SERIAL_PROTOCOLLNPAIR("encoderPosition = ", (uint32_t)encoderPosition);
  3510. #endif
  3511. return true;
  3512. }
  3513. else if (!thermalManager.current_ADCKey_raw)
  3514. adc_steps = 0; // reset stepping acceleration
  3515. return false;
  3516. }
  3517. #elif ENABLED(REPRAPWORLD_KEYPAD)
  3518. void _reprapworld_keypad_move(const AxisEnum axis, const int16_t dir) {
  3519. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  3520. encoderPosition = dir;
  3521. switch (axis) {
  3522. case X_AXIS: lcd_move_x(); break;
  3523. case Y_AXIS: lcd_move_y(); break;
  3524. case Z_AXIS: lcd_move_z();
  3525. default: break;
  3526. }
  3527. }
  3528. void reprapworld_keypad_move_z_up() { _reprapworld_keypad_move(Z_AXIS, 1); }
  3529. void reprapworld_keypad_move_z_down() { _reprapworld_keypad_move(Z_AXIS, -1); }
  3530. void reprapworld_keypad_move_x_left() { _reprapworld_keypad_move(X_AXIS, -1); }
  3531. void reprapworld_keypad_move_x_right() { _reprapworld_keypad_move(X_AXIS, 1); }
  3532. void reprapworld_keypad_move_y_up() { _reprapworld_keypad_move(Y_AXIS, -1); }
  3533. void reprapworld_keypad_move_y_down() { _reprapworld_keypad_move(Y_AXIS, 1); }
  3534. void reprapworld_keypad_move_home() { enqueue_and_echo_commands_P(PSTR("G28")); } // move all axes home and wait
  3535. void reprapworld_keypad_move_menu() { lcd_goto_screen(lcd_move_menu); }
  3536. inline void handle_reprapworld_keypad() {
  3537. static uint8_t keypad_debounce = 0;
  3538. if (!REPRAPWORLD_KEYPAD_PRESSED) {
  3539. if (keypad_debounce > 0) keypad_debounce--;
  3540. }
  3541. else if (!keypad_debounce) {
  3542. keypad_debounce = 2;
  3543. if (REPRAPWORLD_KEYPAD_MOVE_MENU) reprapworld_keypad_move_menu();
  3544. #if DISABLED(DELTA) && Z_HOME_DIR == -1
  3545. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) reprapworld_keypad_move_z_up();
  3546. #endif
  3547. if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS]) {
  3548. #if ENABLED(DELTA) || Z_HOME_DIR != -1
  3549. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) reprapworld_keypad_move_z_up();
  3550. #endif
  3551. if (REPRAPWORLD_KEYPAD_MOVE_Z_DOWN) reprapworld_keypad_move_z_down();
  3552. if (REPRAPWORLD_KEYPAD_MOVE_X_LEFT) reprapworld_keypad_move_x_left();
  3553. if (REPRAPWORLD_KEYPAD_MOVE_X_RIGHT) reprapworld_keypad_move_x_right();
  3554. if (REPRAPWORLD_KEYPAD_MOVE_Y_DOWN) reprapworld_keypad_move_y_down();
  3555. if (REPRAPWORLD_KEYPAD_MOVE_Y_UP) reprapworld_keypad_move_y_up();
  3556. }
  3557. else {
  3558. if (REPRAPWORLD_KEYPAD_MOVE_HOME) reprapworld_keypad_move_home();
  3559. }
  3560. }
  3561. }
  3562. #endif // REPRAPWORLD_KEYPAD
  3563. /**
  3564. *
  3565. * Menu actions
  3566. *
  3567. */
  3568. void _menu_action_back() { lcd_goto_previous_menu(); }
  3569. void menu_action_submenu(screenFunc_t func) { lcd_save_previous_screen(); lcd_goto_screen(func); }
  3570. void menu_action_gcode(const char* pgcode) { enqueue_and_echo_commands_P(pgcode); }
  3571. void menu_action_function(screenFunc_t func) { (*func)(); }
  3572. #if ENABLED(SDSUPPORT)
  3573. void menu_action_sdfile(const char* filename, char* longFilename) {
  3574. UNUSED(longFilename);
  3575. card.openAndPrintFile(filename);
  3576. lcd_return_to_status();
  3577. }
  3578. void menu_action_sddirectory(const char* filename, char* longFilename) {
  3579. UNUSED(longFilename);
  3580. card.chdir(filename);
  3581. encoderPosition = 0;
  3582. screen_changed = true;
  3583. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  3584. }
  3585. #endif // SDSUPPORT
  3586. void menu_action_setting_edit_bool(const char* pstr, bool* ptr) { UNUSED(pstr); *ptr ^= true; lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; }
  3587. void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, screenFunc_t callback) {
  3588. menu_action_setting_edit_bool(pstr, ptr);
  3589. (*callback)();
  3590. }
  3591. #endif // ULTIPANEL
  3592. void lcd_init() {
  3593. lcd_implementation_init(
  3594. #if ENABLED(LCD_PROGRESS_BAR)
  3595. true
  3596. #endif
  3597. );
  3598. #if ENABLED(NEWPANEL)
  3599. #if BUTTON_EXISTS(EN1)
  3600. SET_INPUT_PULLUP(BTN_EN1);
  3601. #endif
  3602. #if BUTTON_EXISTS(EN2)
  3603. SET_INPUT_PULLUP(BTN_EN2);
  3604. #endif
  3605. #if BUTTON_EXISTS(ENC)
  3606. SET_INPUT_PULLUP(BTN_ENC);
  3607. #endif
  3608. #if ENABLED(REPRAPWORLD_KEYPAD) && DISABLED(ADC_KEYPAD)
  3609. SET_OUTPUT(SHIFT_CLK);
  3610. OUT_WRITE(SHIFT_LD, HIGH);
  3611. SET_INPUT_PULLUP(SHIFT_OUT);
  3612. #endif
  3613. #if BUTTON_EXISTS(UP)
  3614. SET_INPUT(BTN_UP);
  3615. #endif
  3616. #if BUTTON_EXISTS(DWN)
  3617. SET_INPUT(BTN_DWN);
  3618. #endif
  3619. #if BUTTON_EXISTS(LFT)
  3620. SET_INPUT(BTN_LFT);
  3621. #endif
  3622. #if BUTTON_EXISTS(RT)
  3623. SET_INPUT(BTN_RT);
  3624. #endif
  3625. #else // !NEWPANEL
  3626. #if ENABLED(SR_LCD_2W_NL) // Non latching 2 wire shift register
  3627. SET_OUTPUT(SR_DATA_PIN);
  3628. SET_OUTPUT(SR_CLK_PIN);
  3629. #elif defined(SHIFT_CLK)
  3630. SET_OUTPUT(SHIFT_CLK);
  3631. OUT_WRITE(SHIFT_LD, HIGH);
  3632. OUT_WRITE(SHIFT_EN, LOW);
  3633. SET_INPUT_PULLUP(SHIFT_OUT);
  3634. #endif // SR_LCD_2W_NL
  3635. #endif // !NEWPANEL
  3636. #if ENABLED(SDSUPPORT) && PIN_EXISTS(SD_DETECT)
  3637. SET_INPUT_PULLUP(SD_DETECT_PIN);
  3638. lcd_sd_status = 2; // UNKNOWN
  3639. #endif
  3640. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  3641. slow_buttons = 0;
  3642. #endif
  3643. lcd_buttons_update();
  3644. #if ENABLED(ULTIPANEL)
  3645. encoderDiff = 0;
  3646. #endif
  3647. }
  3648. int16_t lcd_strlen(const char* s) {
  3649. int16_t i = 0, j = 0;
  3650. while (s[i]) {
  3651. if (PRINTABLE(s[i])) j++;
  3652. i++;
  3653. }
  3654. return j;
  3655. }
  3656. int16_t lcd_strlen_P(const char* s) {
  3657. int16_t j = 0;
  3658. while (pgm_read_byte(s)) {
  3659. if (PRINTABLE(pgm_read_byte(s))) j++;
  3660. s++;
  3661. }
  3662. return j;
  3663. }
  3664. bool lcd_blink() {
  3665. static uint8_t blink = 0;
  3666. static millis_t next_blink_ms = 0;
  3667. millis_t ms = millis();
  3668. if (ELAPSED(ms, next_blink_ms)) {
  3669. blink ^= 0xFF;
  3670. next_blink_ms = ms + 1000 - LCD_UPDATE_INTERVAL / 2;
  3671. }
  3672. return blink != 0;
  3673. }
  3674. /**
  3675. * Update the LCD, read encoder buttons, etc.
  3676. * - Read button states
  3677. * - Check the SD Card slot state
  3678. * - Act on RepRap World keypad input
  3679. * - Update the encoder position
  3680. * - Apply acceleration to the encoder position
  3681. * - Set lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NOW on controller events
  3682. * - Reset the Info Screen timeout if there's any input
  3683. * - Update status indicators, if any
  3684. *
  3685. * Run the current LCD menu handler callback function:
  3686. * - Call the handler only if lcdDrawUpdate != LCDVIEW_NONE
  3687. * - Before calling the handler, LCDVIEW_CALL_NO_REDRAW => LCDVIEW_NONE
  3688. * - Call the menu handler. Menu handlers should do the following:
  3689. * - If a value changes, set lcdDrawUpdate to LCDVIEW_REDRAW_NOW and draw the value
  3690. * (Encoder events automatically set lcdDrawUpdate for you.)
  3691. * - if (lcdDrawUpdate) { redraw }
  3692. * - Before exiting the handler set lcdDrawUpdate to:
  3693. * - LCDVIEW_CLEAR_CALL_REDRAW to clear screen and set LCDVIEW_CALL_REDRAW_NEXT.
  3694. * - LCDVIEW_REDRAW_NOW to draw now (including remaining stripes).
  3695. * - LCDVIEW_CALL_REDRAW_NEXT to draw now and get LCDVIEW_REDRAW_NOW on the next loop.
  3696. * - LCDVIEW_CALL_NO_REDRAW to draw now and get LCDVIEW_NONE on the next loop.
  3697. * - NOTE: For graphical displays menu handlers may be called 2 or more times per loop,
  3698. * so don't change lcdDrawUpdate without considering this.
  3699. *
  3700. * After the menu handler callback runs (or not):
  3701. * - Clear the LCD if lcdDrawUpdate == LCDVIEW_CLEAR_CALL_REDRAW
  3702. * - Update lcdDrawUpdate for the next loop (i.e., move one state down, usually)
  3703. *
  3704. * No worries. This function is only called from the main thread.
  3705. */
  3706. void lcd_update() {
  3707. #if ENABLED(ULTIPANEL)
  3708. static millis_t return_to_status_ms = 0;
  3709. manage_manual_move();
  3710. lcd_buttons_update();
  3711. #if ENABLED(AUTO_BED_LEVELING_UBL)
  3712. const bool UBL_CONDITION = !ubl.has_control_of_lcd_panel;
  3713. #else
  3714. constexpr bool UBL_CONDITION = true;
  3715. #endif
  3716. // If the action button is pressed...
  3717. if (UBL_CONDITION && LCD_CLICKED) {
  3718. if (!wait_for_unclick) { // If not waiting for a debounce release:
  3719. wait_for_unclick = true; // Set debounce flag to ignore continous clicks
  3720. lcd_clicked = !wait_for_user; // Keep the click if not waiting for a user-click
  3721. wait_for_user = false; // Any click clears wait for user
  3722. lcd_quick_feedback(); // Always make a click sound
  3723. }
  3724. }
  3725. else wait_for_unclick = false;
  3726. #endif
  3727. #if ENABLED(SDSUPPORT) && PIN_EXISTS(SD_DETECT)
  3728. const bool sd_status = IS_SD_INSERTED;
  3729. if (sd_status != lcd_sd_status && lcd_detected()) {
  3730. if (sd_status) {
  3731. card.initsd();
  3732. if (lcd_sd_status != 2) LCD_MESSAGEPGM(MSG_SD_INSERTED);
  3733. }
  3734. else {
  3735. card.release();
  3736. if (lcd_sd_status != 2) LCD_MESSAGEPGM(MSG_SD_REMOVED);
  3737. }
  3738. lcd_sd_status = sd_status;
  3739. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  3740. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  3741. #if ENABLED(LCD_PROGRESS_BAR)
  3742. currentScreen == lcd_status_screen
  3743. #endif
  3744. );
  3745. }
  3746. #endif // SDSUPPORT && SD_DETECT_PIN
  3747. const millis_t ms = millis();
  3748. if (ELAPSED(ms, next_lcd_update_ms)
  3749. #if ENABLED(DOGLCD)
  3750. || drawing_screen
  3751. #endif
  3752. ) {
  3753. next_lcd_update_ms = ms + LCD_UPDATE_INTERVAL;
  3754. #if ENABLED(LCD_HAS_STATUS_INDICATORS)
  3755. lcd_implementation_update_indicators();
  3756. #endif
  3757. #if ENABLED(ULTIPANEL)
  3758. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  3759. slow_buttons = lcd_implementation_read_slow_buttons(); // buttons which take too long to read in interrupt context
  3760. #endif
  3761. #if ENABLED(ADC_KEYPAD)
  3762. if (handle_adc_keypad())
  3763. return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS;
  3764. #elif ENABLED(REPRAPWORLD_KEYPAD)
  3765. handle_reprapworld_keypad();
  3766. #endif
  3767. bool encoderPastThreshold = (abs(encoderDiff) >= ENCODER_PULSES_PER_STEP);
  3768. if (encoderPastThreshold || lcd_clicked) {
  3769. if (encoderPastThreshold) {
  3770. int32_t encoderMultiplier = 1;
  3771. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  3772. if (encoderRateMultiplierEnabled) {
  3773. int32_t encoderMovementSteps = abs(encoderDiff) / ENCODER_PULSES_PER_STEP;
  3774. if (lastEncoderMovementMillis) {
  3775. // Note that the rate is always calculated between two passes through the
  3776. // loop and that the abs of the encoderDiff value is tracked.
  3777. float encoderStepRate = float(encoderMovementSteps) / float(ms - lastEncoderMovementMillis) * 1000.0;
  3778. if (encoderStepRate >= ENCODER_100X_STEPS_PER_SEC) encoderMultiplier = 100;
  3779. else if (encoderStepRate >= ENCODER_10X_STEPS_PER_SEC) encoderMultiplier = 10;
  3780. #if ENABLED(ENCODER_RATE_MULTIPLIER_DEBUG)
  3781. SERIAL_ECHO_START();
  3782. SERIAL_ECHOPAIR("Enc Step Rate: ", encoderStepRate);
  3783. SERIAL_ECHOPAIR(" Multiplier: ", encoderMultiplier);
  3784. SERIAL_ECHOPAIR(" ENCODER_10X_STEPS_PER_SEC: ", ENCODER_10X_STEPS_PER_SEC);
  3785. SERIAL_ECHOPAIR(" ENCODER_100X_STEPS_PER_SEC: ", ENCODER_100X_STEPS_PER_SEC);
  3786. SERIAL_EOL();
  3787. #endif // ENCODER_RATE_MULTIPLIER_DEBUG
  3788. }
  3789. lastEncoderMovementMillis = ms;
  3790. } // encoderRateMultiplierEnabled
  3791. #endif // ENCODER_RATE_MULTIPLIER
  3792. encoderPosition += (encoderDiff * encoderMultiplier) / ENCODER_PULSES_PER_STEP;
  3793. encoderDiff = 0;
  3794. }
  3795. return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS;
  3796. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  3797. }
  3798. #endif // ULTIPANEL
  3799. // We arrive here every ~100ms when idling often enough.
  3800. // Instead of tracking the changes simply redraw the Info Screen ~1 time a second.
  3801. static int8_t lcd_status_update_delay = 1; // first update one loop delayed
  3802. if (
  3803. #if ENABLED(ULTIPANEL)
  3804. currentScreen == lcd_status_screen &&
  3805. #endif
  3806. !lcd_status_update_delay--
  3807. ) {
  3808. lcd_status_update_delay = 9
  3809. #if ENABLED(DOGLCD)
  3810. + 3
  3811. #endif
  3812. ;
  3813. max_display_update_time--;
  3814. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  3815. }
  3816. // then we want to use 1/2 of the time only.
  3817. uint16_t bbr2 = planner.block_buffer_runtime() >> 1;
  3818. #if ENABLED(DOGLCD)
  3819. if ((lcdDrawUpdate || drawing_screen) && (!bbr2 || (bbr2 > max_display_update_time)))
  3820. #else
  3821. if (lcdDrawUpdate && (!bbr2 || (bbr2 > max_display_update_time)))
  3822. #endif
  3823. {
  3824. #if ENABLED(DOGLCD)
  3825. if (!drawing_screen)
  3826. #endif
  3827. {
  3828. switch (lcdDrawUpdate) {
  3829. case LCDVIEW_CALL_NO_REDRAW:
  3830. lcdDrawUpdate = LCDVIEW_NONE;
  3831. break;
  3832. case LCDVIEW_CLEAR_CALL_REDRAW: // set by handlers, then altered after (rarely occurs here)
  3833. case LCDVIEW_CALL_REDRAW_NEXT: // set by handlers, then altered after (never occurs here?)
  3834. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  3835. case LCDVIEW_REDRAW_NOW: // set above, or by a handler through LCDVIEW_CALL_REDRAW_NEXT
  3836. case LCDVIEW_NONE:
  3837. break;
  3838. } // switch
  3839. }
  3840. #if ENABLED(ADC_KEYPAD)
  3841. buttons_reprapworld_keypad = 0;
  3842. #endif
  3843. #if ENABLED(ULTIPANEL)
  3844. #define CURRENTSCREEN() (*currentScreen)(), lcd_clicked = false
  3845. #else
  3846. #define CURRENTSCREEN() lcd_status_screen()
  3847. #endif
  3848. #if ENABLED(DOGLCD) // Changes due to different driver architecture of the DOGM display
  3849. if (!drawing_screen) {
  3850. u8g.firstPage();
  3851. drawing_screen = 1;
  3852. }
  3853. lcd_setFont(FONT_MENU);
  3854. u8g.setColorIndex(1);
  3855. CURRENTSCREEN();
  3856. if (drawing_screen && (drawing_screen = u8g.nextPage())) {
  3857. NOLESS(max_display_update_time, millis() - ms);
  3858. return;
  3859. }
  3860. #else
  3861. CURRENTSCREEN();
  3862. #endif
  3863. NOLESS(max_display_update_time, millis() - ms);
  3864. }
  3865. #if ENABLED(ULTIPANEL)
  3866. // Return to Status Screen after a timeout
  3867. if (currentScreen == lcd_status_screen || defer_return_to_status)
  3868. return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS;
  3869. else if (ELAPSED(ms, return_to_status_ms))
  3870. lcd_return_to_status();
  3871. #endif // ULTIPANEL
  3872. #if ENABLED(DOGLCD)
  3873. if (!drawing_screen)
  3874. #endif
  3875. {
  3876. switch (lcdDrawUpdate) {
  3877. case LCDVIEW_CLEAR_CALL_REDRAW:
  3878. lcd_implementation_clear();
  3879. case LCDVIEW_CALL_REDRAW_NEXT:
  3880. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  3881. break;
  3882. case LCDVIEW_REDRAW_NOW:
  3883. lcdDrawUpdate = LCDVIEW_NONE;
  3884. break;
  3885. case LCDVIEW_NONE:
  3886. break;
  3887. } // switch
  3888. }
  3889. } // ELAPSED(ms, next_lcd_update_ms)
  3890. }
  3891. void pad_message_string() {
  3892. uint8_t i = 0, j = 0;
  3893. char c;
  3894. while ((c = lcd_status_message[i]) && j < LCD_WIDTH) {
  3895. if (PRINTABLE(c)) j++;
  3896. i++;
  3897. }
  3898. if (true
  3899. #if ENABLED(STATUS_MESSAGE_SCROLLING)
  3900. && j < LCD_WIDTH
  3901. #endif
  3902. ) {
  3903. // pad with spaces to fill up the line
  3904. while (j++ < LCD_WIDTH) lcd_status_message[i++] = ' ';
  3905. // chop off at the edge
  3906. lcd_status_message[i] = '\0';
  3907. }
  3908. }
  3909. void lcd_finishstatus(const bool persist=false) {
  3910. pad_message_string();
  3911. #if !(ENABLED(LCD_PROGRESS_BAR) && (PROGRESS_MSG_EXPIRE > 0))
  3912. UNUSED(persist);
  3913. #endif
  3914. #if ENABLED(LCD_PROGRESS_BAR)
  3915. progress_bar_ms = millis();
  3916. #if PROGRESS_MSG_EXPIRE > 0
  3917. expire_status_ms = persist ? 0 : progress_bar_ms + PROGRESS_MSG_EXPIRE;
  3918. #endif
  3919. #endif
  3920. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  3921. #if ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
  3922. previous_lcd_status_ms = millis(); //get status message to show up for a while
  3923. #endif
  3924. #if ENABLED(STATUS_MESSAGE_SCROLLING)
  3925. status_scroll_pos = 0;
  3926. #endif
  3927. }
  3928. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  3929. void dontExpireStatus() { expire_status_ms = 0; }
  3930. #endif
  3931. bool lcd_hasstatus() { return (lcd_status_message[0] != '\0'); }
  3932. void lcd_setstatus(const char * const message, const bool persist) {
  3933. if (lcd_status_message_level > 0) return;
  3934. strncpy(lcd_status_message, message, 3 * (LCD_WIDTH));
  3935. lcd_finishstatus(persist);
  3936. }
  3937. void lcd_setstatusPGM(const char * const message, int8_t level) {
  3938. if (level < 0) level = lcd_status_message_level = 0;
  3939. if (level < lcd_status_message_level) return;
  3940. lcd_status_message_level = level;
  3941. strncpy_P(lcd_status_message, message, 3 * (LCD_WIDTH));
  3942. lcd_finishstatus(level > 0);
  3943. }
  3944. void lcd_status_printf_P(const uint8_t level, const char * const fmt, ...) {
  3945. if (level < lcd_status_message_level) return;
  3946. lcd_status_message_level = level;
  3947. va_list args;
  3948. va_start(args, fmt);
  3949. vsnprintf_P(lcd_status_message, 3 * (LCD_WIDTH), fmt, args);
  3950. va_end(args);
  3951. lcd_finishstatus(level > 0);
  3952. }
  3953. void lcd_setalertstatusPGM(const char * const message) {
  3954. lcd_setstatusPGM(message, 1);
  3955. #if ENABLED(ULTIPANEL)
  3956. lcd_return_to_status();
  3957. #endif
  3958. }
  3959. void lcd_reset_alert_level() { lcd_status_message_level = 0; }
  3960. #if HAS_LCD_CONTRAST
  3961. void set_lcd_contrast(const uint16_t value) {
  3962. lcd_contrast = constrain(value, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX);
  3963. u8g.setContrast(lcd_contrast);
  3964. }
  3965. #endif
  3966. #if ENABLED(ULTIPANEL)
  3967. /**
  3968. * Setup Rotary Encoder Bit Values (for two pin encoders to indicate movement)
  3969. * These values are independent of which pins are used for EN_A and EN_B indications
  3970. * The rotary encoder part is also independent to the chipset used for the LCD
  3971. */
  3972. #if defined(EN_A) && defined(EN_B)
  3973. #define encrot0 0
  3974. #define encrot1 2
  3975. #define encrot2 3
  3976. #define encrot3 1
  3977. #endif
  3978. #define GET_BUTTON_STATES(DST) \
  3979. uint8_t new_##DST = 0; \
  3980. WRITE(SHIFT_LD, LOW); \
  3981. WRITE(SHIFT_LD, HIGH); \
  3982. for (int8_t i = 0; i < 8; i++) { \
  3983. new_##DST >>= 1; \
  3984. if (READ(SHIFT_OUT)) SBI(new_##DST, 7); \
  3985. WRITE(SHIFT_CLK, HIGH); \
  3986. WRITE(SHIFT_CLK, LOW); \
  3987. } \
  3988. DST = ~new_##DST; //invert it, because a pressed switch produces a logical 0
  3989. /**
  3990. * Read encoder buttons from the hardware registers
  3991. * Warning: This function is called from interrupt context!
  3992. */
  3993. void lcd_buttons_update() {
  3994. static uint8_t lastEncoderBits;
  3995. millis_t now = millis();
  3996. if (ELAPSED(now, next_button_update_ms)) {
  3997. #if ENABLED(NEWPANEL)
  3998. uint8_t newbutton = 0;
  3999. #if BUTTON_EXISTS(EN1)
  4000. if (BUTTON_PRESSED(EN1)) newbutton |= EN_A;
  4001. #endif
  4002. #if BUTTON_EXISTS(EN2)
  4003. if (BUTTON_PRESSED(EN2)) newbutton |= EN_B;
  4004. #endif
  4005. #if BUTTON_EXISTS(ENC)
  4006. if (BUTTON_PRESSED(ENC)) newbutton |= EN_C;
  4007. #endif
  4008. #if LCD_HAS_DIRECTIONAL_BUTTONS
  4009. // Manage directional buttons
  4010. #if ENABLED(REVERSE_MENU_DIRECTION)
  4011. #define _ENCODER_UD_STEPS (ENCODER_STEPS_PER_MENU_ITEM * encoderDirection)
  4012. #else
  4013. #define _ENCODER_UD_STEPS ENCODER_STEPS_PER_MENU_ITEM
  4014. #endif
  4015. #if ENABLED(REVERSE_ENCODER_DIRECTION)
  4016. #define ENCODER_UD_STEPS _ENCODER_UD_STEPS
  4017. #define ENCODER_LR_PULSES ENCODER_PULSES_PER_STEP
  4018. #else
  4019. #define ENCODER_UD_STEPS -(_ENCODER_UD_STEPS)
  4020. #define ENCODER_LR_PULSES -(ENCODER_PULSES_PER_STEP)
  4021. #endif
  4022. if (false) {
  4023. // for the else-ifs below
  4024. }
  4025. #if BUTTON_EXISTS(UP)
  4026. else if (BUTTON_PRESSED(UP)) {
  4027. encoderDiff = -(ENCODER_UD_STEPS);
  4028. next_button_update_ms = now + 300;
  4029. }
  4030. #endif
  4031. #if BUTTON_EXISTS(DWN)
  4032. else if (BUTTON_PRESSED(DWN)) {
  4033. encoderDiff = ENCODER_UD_STEPS;
  4034. next_button_update_ms = now + 300;
  4035. }
  4036. #endif
  4037. #if BUTTON_EXISTS(LFT)
  4038. else if (BUTTON_PRESSED(LFT)) {
  4039. encoderDiff = -(ENCODER_LR_PULSES);
  4040. next_button_update_ms = now + 300;
  4041. }
  4042. #endif
  4043. #if BUTTON_EXISTS(RT)
  4044. else if (BUTTON_PRESSED(RT)) {
  4045. encoderDiff = ENCODER_LR_PULSES;
  4046. next_button_update_ms = now + 300;
  4047. }
  4048. #endif
  4049. #endif // LCD_HAS_DIRECTIONAL_BUTTONS
  4050. buttons = newbutton;
  4051. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  4052. buttons |= slow_buttons;
  4053. #endif
  4054. #if ENABLED(ADC_KEYPAD)
  4055. uint8_t newbutton_reprapworld_keypad = 0;
  4056. buttons = 0;
  4057. if (buttons_reprapworld_keypad == 0) {
  4058. newbutton_reprapworld_keypad = get_ADC_keyValue();
  4059. if (WITHIN(newbutton_reprapworld_keypad, 1, 8))
  4060. buttons_reprapworld_keypad = _BV(newbutton_reprapworld_keypad - 1);
  4061. }
  4062. #elif ENABLED(REPRAPWORLD_KEYPAD)
  4063. GET_BUTTON_STATES(buttons_reprapworld_keypad);
  4064. #endif
  4065. #else
  4066. GET_BUTTON_STATES(buttons);
  4067. #endif // !NEWPANEL
  4068. } // next_button_update_ms
  4069. // Manage encoder rotation
  4070. #if ENABLED(REVERSE_MENU_DIRECTION) && ENABLED(REVERSE_ENCODER_DIRECTION)
  4071. #define ENCODER_DIFF_CW (encoderDiff -= encoderDirection)
  4072. #define ENCODER_DIFF_CCW (encoderDiff += encoderDirection)
  4073. #elif ENABLED(REVERSE_MENU_DIRECTION)
  4074. #define ENCODER_DIFF_CW (encoderDiff += encoderDirection)
  4075. #define ENCODER_DIFF_CCW (encoderDiff -= encoderDirection)
  4076. #elif ENABLED(REVERSE_ENCODER_DIRECTION)
  4077. #define ENCODER_DIFF_CW (encoderDiff--)
  4078. #define ENCODER_DIFF_CCW (encoderDiff++)
  4079. #else
  4080. #define ENCODER_DIFF_CW (encoderDiff++)
  4081. #define ENCODER_DIFF_CCW (encoderDiff--)
  4082. #endif
  4083. #define ENCODER_SPIN(_E1, _E2) switch (lastEncoderBits) { case _E1: ENCODER_DIFF_CW; break; case _E2: ENCODER_DIFF_CCW; }
  4084. uint8_t enc = 0;
  4085. if (buttons & EN_A) enc |= B01;
  4086. if (buttons & EN_B) enc |= B10;
  4087. if (enc != lastEncoderBits) {
  4088. switch (enc) {
  4089. case encrot0: ENCODER_SPIN(encrot3, encrot1); break;
  4090. case encrot1: ENCODER_SPIN(encrot0, encrot2); break;
  4091. case encrot2: ENCODER_SPIN(encrot1, encrot3); break;
  4092. case encrot3: ENCODER_SPIN(encrot2, encrot0); break;
  4093. }
  4094. #if ENABLED(AUTO_BED_LEVELING_UBL)
  4095. if (ubl.has_control_of_lcd_panel) {
  4096. ubl.encoder_diff = encoderDiff; // Make the encoder's rotation available to G29's Mesh Editor
  4097. encoderDiff = 0; // We are going to lie to the LCD Panel and claim the encoder
  4098. // knob has not turned.
  4099. }
  4100. #endif
  4101. lastEncoderBits = enc;
  4102. }
  4103. }
  4104. #if (ENABLED(LCD_I2C_TYPE_MCP23017) || ENABLED(LCD_I2C_TYPE_MCP23008)) && ENABLED(DETECT_DEVICE)
  4105. bool lcd_detected() { return lcd.LcdDetected() == 1; }
  4106. #else
  4107. bool lcd_detected() { return true; }
  4108. #endif
  4109. #if ENABLED(AUTO_BED_LEVELING_UBL)
  4110. void chirp_at_user() {
  4111. #if ENABLED(LCD_USE_I2C_BUZZER)
  4112. lcd.buzz(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
  4113. #elif PIN_EXISTS(BEEPER)
  4114. buzzer.tone(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
  4115. #endif
  4116. }
  4117. bool ubl_lcd_clicked() { return LCD_CLICKED; }
  4118. #endif
  4119. #endif // ULTIPANEL
  4120. #if ENABLED(ADC_KEYPAD)
  4121. typedef struct {
  4122. uint16_t ADCKeyValueMin, ADCKeyValueMax;
  4123. uint8_t ADCKeyNo;
  4124. } _stADCKeypadTable_;
  4125. static const _stADCKeypadTable_ stADCKeyTable[] PROGMEM = {
  4126. // VALUE_MIN, VALUE_MAX, KEY
  4127. { 4000, 4096, BLEN_REPRAPWORLD_KEYPAD_F1 + 1 }, // F1
  4128. { 4000, 4096, BLEN_REPRAPWORLD_KEYPAD_F2 + 1 }, // F2
  4129. { 4000, 4096, BLEN_REPRAPWORLD_KEYPAD_F3 + 1 }, // F3
  4130. { 300, 500, BLEN_REPRAPWORLD_KEYPAD_LEFT + 1 }, // LEFT
  4131. { 1900, 2200, BLEN_REPRAPWORLD_KEYPAD_RIGHT + 1 }, // RIGHT
  4132. { 570, 870, BLEN_REPRAPWORLD_KEYPAD_UP + 1 }, // UP
  4133. { 2670, 2870, BLEN_REPRAPWORLD_KEYPAD_DOWN + 1 }, // DOWN
  4134. { 1150, 1450, BLEN_REPRAPWORLD_KEYPAD_MIDDLE + 1 }, // ENTER
  4135. };
  4136. uint8_t get_ADC_keyValue(void) {
  4137. if (thermalManager.ADCKey_count >= 16) {
  4138. const uint16_t currentkpADCValue = thermalManager.current_ADCKey_raw >> 2;
  4139. #if ENABLED(ADC_KEYPAD_DEBUG)
  4140. SERIAL_PROTOCOLLN(currentkpADCValue);
  4141. #endif
  4142. thermalManager.current_ADCKey_raw = 0;
  4143. thermalManager.ADCKey_count = 0;
  4144. if (currentkpADCValue < 4000)
  4145. for (uint8_t i = 0; i < ADC_KEY_NUM; i++) {
  4146. const uint16_t lo = pgm_read_word(&stADCKeyTable[i].ADCKeyValueMin),
  4147. hi = pgm_read_word(&stADCKeyTable[i].ADCKeyValueMax);
  4148. if (WITHIN(currentkpADCValue, lo, hi)) return pgm_read_byte(&stADCKeyTable[i].ADCKeyNo);
  4149. }
  4150. }
  4151. return 0;
  4152. }
  4153. #endif
  4154. #endif // ULTRA_LCD