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

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