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

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