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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408
  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(BLTOUCH)
  35. #include "endstops.h"
  36. #endif
  37. #if ENABLED(PRINTCOUNTER)
  38. #include "printcounter.h"
  39. #include "duration_t.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)
  43. millis_t previous_lcd_status_ms = 0;
  44. #endif
  45. uint8_t lcd_status_message_level;
  46. char lcd_status_message[3 * (LCD_WIDTH) + 1] = WELCOME_MSG; // worst case is kana with up to 3*LCD_WIDTH+1
  47. #if ENABLED(DOGLCD)
  48. #include "ultralcd_impl_DOGM.h"
  49. #include <U8glib.h>
  50. #else
  51. #include "ultralcd_impl_HD44780.h"
  52. #endif
  53. // The main status screen
  54. void lcd_status_screen();
  55. millis_t next_lcd_update_ms;
  56. 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)
  57. uint16_t max_display_update_time = 0;
  58. #if ENABLED(DOGLCD)
  59. bool drawing_screen = false;
  60. #endif
  61. #if ENABLED(DAC_STEPPER_CURRENT)
  62. #include "stepper_dac.h" //was dac_mcp4728.h MarlinMain uses stepper dac for the m-codes
  63. uint16_t driverPercent[XYZE];
  64. #endif
  65. #if ENABLED(ULTIPANEL)
  66. // place-holders for Ki and Kd edits
  67. float raw_Ki, raw_Kd;
  68. /**
  69. * REVERSE_MENU_DIRECTION
  70. *
  71. * To reverse the menu direction we need a general way to reverse
  72. * the direction of the encoder everywhere. So encoderDirection is
  73. * added to allow the encoder to go the other way.
  74. *
  75. * This behavior is limited to scrolling Menus and SD card listings,
  76. * and is disabled in other contexts.
  77. */
  78. #if ENABLED(REVERSE_MENU_DIRECTION)
  79. int8_t encoderDirection = 1;
  80. #define ENCODER_DIRECTION_NORMAL() (encoderDirection = 1)
  81. #define ENCODER_DIRECTION_MENUS() (encoderDirection = -1)
  82. #else
  83. #define ENCODER_DIRECTION_NORMAL() ;
  84. #define ENCODER_DIRECTION_MENUS() ;
  85. #endif
  86. int8_t encoderDiff; // updated from interrupt context and added to encoderPosition every LCD update
  87. millis_t manual_move_start_time = 0;
  88. int8_t manual_move_axis = (int8_t)NO_AXIS;
  89. #if EXTRUDERS > 1
  90. int8_t manual_move_e_index = 0;
  91. #else
  92. #define manual_move_e_index 0
  93. #endif
  94. bool encoderRateMultiplierEnabled;
  95. int32_t lastEncoderMovementMillis;
  96. #if HAS_POWER_SWITCH
  97. extern bool powersupply;
  98. #endif
  99. const float manual_feedrate_mm_m[] = MANUAL_FEEDRATE;
  100. void lcd_main_menu();
  101. void lcd_tune_menu();
  102. void lcd_prepare_menu();
  103. void lcd_move_menu();
  104. void lcd_control_menu();
  105. void lcd_control_temperature_menu();
  106. void lcd_control_temperature_preheat_material1_settings_menu();
  107. void lcd_control_temperature_preheat_material2_settings_menu();
  108. void lcd_control_motion_menu();
  109. void lcd_control_volumetric_menu();
  110. #if ENABLED(DAC_STEPPER_CURRENT)
  111. void dac_driver_commit();
  112. void dac_driver_getValues();
  113. void lcd_dac_menu();
  114. void lcd_dac_write_eeprom();
  115. #endif
  116. #if ENABLED(LCD_INFO_MENU)
  117. #if ENABLED(PRINTCOUNTER)
  118. void lcd_info_stats_menu();
  119. #endif
  120. void lcd_info_thermistors_menu();
  121. void lcd_info_board_menu();
  122. void lcd_info_menu();
  123. #endif // LCD_INFO_MENU
  124. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  125. void lcd_filament_change_toocold_menu();
  126. void lcd_filament_change_option_menu();
  127. void lcd_filament_change_init_message();
  128. void lcd_filament_change_unload_message();
  129. void lcd_filament_change_insert_message();
  130. void lcd_filament_change_load_message();
  131. void lcd_filament_change_heat_nozzle();
  132. void lcd_filament_change_extrude_message();
  133. void lcd_filament_change_resume_message();
  134. #endif
  135. #if HAS_LCD_CONTRAST
  136. void lcd_set_contrast();
  137. #endif
  138. #if ENABLED(FWRETRACT)
  139. void lcd_control_retract_menu();
  140. #endif
  141. #if ENABLED(DELTA_CALIBRATION_MENU)
  142. void lcd_delta_calibrate_menu();
  143. #endif
  144. #if ENABLED(MANUAL_BED_LEVELING)
  145. #include "mesh_bed_leveling.h"
  146. #endif
  147. // Function pointer to menu functions.
  148. typedef void (*screenFunc_t)();
  149. // Different types of actions that can be used in menu items.
  150. #define menu_action_back(dummy) _menu_action_back()
  151. void _menu_action_back();
  152. void menu_action_submenu(screenFunc_t data);
  153. void menu_action_gcode(const char* pgcode);
  154. void menu_action_function(screenFunc_t data);
  155. void menu_action_setting_edit_bool(const char* pstr, bool* ptr);
  156. void menu_action_setting_edit_int3(const char* pstr, int* ptr, int minValue, int maxValue);
  157. void menu_action_setting_edit_float3(const char* pstr, float* ptr, float minValue, float maxValue);
  158. void menu_action_setting_edit_float32(const char* pstr, float* ptr, float minValue, float maxValue);
  159. void menu_action_setting_edit_float43(const char* pstr, float* ptr, float minValue, float maxValue);
  160. void menu_action_setting_edit_float5(const char* pstr, float* ptr, float minValue, float maxValue);
  161. void menu_action_setting_edit_float51(const char* pstr, float* ptr, float minValue, float maxValue);
  162. void menu_action_setting_edit_float52(const char* pstr, float* ptr, float minValue, float maxValue);
  163. void menu_action_setting_edit_float62(const char* pstr, float* ptr, float minValue, float maxValue);
  164. void menu_action_setting_edit_long5(const char* pstr, unsigned long* ptr, unsigned long minValue, unsigned long maxValue);
  165. void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, screenFunc_t callbackFunc);
  166. void menu_action_setting_edit_callback_int3(const char* pstr, int* ptr, int minValue, int maxValue, screenFunc_t callbackFunc);
  167. void menu_action_setting_edit_callback_float3(const char* pstr, float* ptr, float minValue, float maxValue, screenFunc_t callbackFunc);
  168. void menu_action_setting_edit_callback_float32(const char* pstr, float* ptr, float minValue, float maxValue, screenFunc_t callbackFunc);
  169. void menu_action_setting_edit_callback_float43(const char* pstr, float* ptr, float minValue, float maxValue, screenFunc_t callbackFunc);
  170. void menu_action_setting_edit_callback_float5(const char* pstr, float* ptr, float minValue, float maxValue, screenFunc_t callbackFunc);
  171. void menu_action_setting_edit_callback_float51(const char* pstr, float* ptr, float minValue, float maxValue, screenFunc_t callbackFunc);
  172. void menu_action_setting_edit_callback_float52(const char* pstr, float* ptr, float minValue, float maxValue, screenFunc_t callbackFunc);
  173. void menu_action_setting_edit_callback_float62(const char* pstr, float* ptr, float minValue, float maxValue, screenFunc_t callbackFunc);
  174. void menu_action_setting_edit_callback_long5(const char* pstr, unsigned long* ptr, unsigned long minValue, unsigned long maxValue, screenFunc_t callbackFunc);
  175. #if ENABLED(SDSUPPORT)
  176. void lcd_sdcard_menu();
  177. void menu_action_sdfile(const char* filename, char* longFilename);
  178. void menu_action_sddirectory(const char* filename, char* longFilename);
  179. #endif
  180. /* Helper macros for menus */
  181. #ifndef ENCODER_FEEDRATE_DEADZONE
  182. #define ENCODER_FEEDRATE_DEADZONE 10
  183. #endif
  184. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  185. #define ENCODER_STEPS_PER_MENU_ITEM 5
  186. #endif
  187. #ifndef ENCODER_PULSES_PER_STEP
  188. #define ENCODER_PULSES_PER_STEP 1
  189. #endif
  190. #ifndef TALL_FONT_CORRECTION
  191. #define TALL_FONT_CORRECTION 0
  192. #endif
  193. /**
  194. * START_SCREEN_OR_MENU generates init code for a screen or menu
  195. *
  196. * encoderLine is the position based on the encoder
  197. * encoderTopLine is the top menu line to display
  198. * _lcdLineNr is the index of the LCD line (e.g., 0-3)
  199. * _menuLineNr is the menu item to draw and process
  200. * _thisItemNr is the index of each MENU_ITEM or STATIC_ITEM
  201. * _countedItems is the total number of items in the menu (after one call)
  202. */
  203. #define START_SCREEN_OR_MENU(LIMIT) \
  204. ENCODER_DIRECTION_MENUS(); \
  205. encoderRateMultiplierEnabled = false; \
  206. if (encoderPosition > 0x8000) encoderPosition = 0; \
  207. static int8_t _countedItems = 0; \
  208. int8_t encoderLine = encoderPosition / (ENCODER_STEPS_PER_MENU_ITEM); \
  209. if (_countedItems > 0 && encoderLine >= _countedItems - (LIMIT)) { \
  210. encoderLine = max(0, _countedItems - (LIMIT)); \
  211. encoderPosition = encoderLine * (ENCODER_STEPS_PER_MENU_ITEM); \
  212. }
  213. #define SCREEN_OR_MENU_LOOP() \
  214. int8_t _menuLineNr = encoderTopLine, _thisItemNr; \
  215. for (int8_t _lcdLineNr = 0; _lcdLineNr < LCD_HEIGHT - (TALL_FONT_CORRECTION); _lcdLineNr++, _menuLineNr++) { \
  216. _thisItemNr = 0
  217. /**
  218. * START_SCREEN Opening code for a screen having only static items.
  219. * Do simplified scrolling of the entire screen.
  220. *
  221. * START_MENU Opening code for a screen with menu items.
  222. * Scroll as-needed to keep the selected line in view.
  223. */
  224. #define START_SCREEN() \
  225. START_SCREEN_OR_MENU(LCD_HEIGHT - (TALL_FONT_CORRECTION)); \
  226. encoderTopLine = encoderLine; \
  227. bool _skipStatic = false; \
  228. SCREEN_OR_MENU_LOOP()
  229. #define START_MENU() \
  230. START_SCREEN_OR_MENU(1); \
  231. screen_changed = false; \
  232. NOMORE(encoderTopLine, encoderLine); \
  233. if (encoderLine >= encoderTopLine + LCD_HEIGHT - (TALL_FONT_CORRECTION)) { \
  234. encoderTopLine = encoderLine - (LCD_HEIGHT - (TALL_FONT_CORRECTION) - 1); \
  235. } \
  236. bool _skipStatic = true; \
  237. SCREEN_OR_MENU_LOOP()
  238. /**
  239. * MENU_ITEM generates draw & handler code for a menu item, potentially calling:
  240. *
  241. * lcd_implementation_drawmenu_[type](sel, row, label, arg3...)
  242. * menu_action_[type](arg3...)
  243. *
  244. * Examples:
  245. * MENU_ITEM(back, MSG_WATCH, 0 [dummy parameter] )
  246. * or
  247. * MENU_BACK(MSG_WATCH)
  248. * lcd_implementation_drawmenu_back(sel, row, PSTR(MSG_WATCH))
  249. * menu_action_back()
  250. *
  251. * MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause)
  252. * lcd_implementation_drawmenu_function(sel, row, PSTR(MSG_PAUSE_PRINT), lcd_sdcard_pause)
  253. * menu_action_function(lcd_sdcard_pause)
  254. *
  255. * MENU_ITEM_EDIT(int3, MSG_SPEED, &feedrate_percentage, 10, 999)
  256. * MENU_ITEM(setting_edit_int3, MSG_SPEED, PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  257. * lcd_implementation_drawmenu_setting_edit_int3(sel, row, PSTR(MSG_SPEED), PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  258. * menu_action_setting_edit_int3(PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  259. *
  260. */
  261. #define _MENU_ITEM_PART_1(TYPE, LABEL, ...) \
  262. if (_menuLineNr == _thisItemNr) { \
  263. if (lcdDrawUpdate) \
  264. lcd_implementation_drawmenu_ ## TYPE(encoderLine == _thisItemNr, _lcdLineNr, PSTR(LABEL), ## __VA_ARGS__); \
  265. if (lcd_clicked && encoderLine == _thisItemNr) {
  266. #define _MENU_ITEM_PART_2(TYPE, ...) \
  267. menu_action_ ## TYPE(__VA_ARGS__); \
  268. if (screen_changed) return; \
  269. } \
  270. } \
  271. ++_thisItemNr
  272. #define MENU_ITEM(TYPE, LABEL, ...) do { \
  273. _skipStatic = false; \
  274. _MENU_ITEM_PART_1(TYPE, LABEL, ## __VA_ARGS__); \
  275. _MENU_ITEM_PART_2(TYPE, ## __VA_ARGS__); \
  276. } while(0)
  277. #define MENU_BACK(LABEL) MENU_ITEM(back, LABEL, 0)
  278. // Used to print static text with no visible cursor.
  279. // Parameters: label [, bool center [, bool invert [, char *value] ] ]
  280. #define STATIC_ITEM(LABEL, ...) \
  281. if (_menuLineNr == _thisItemNr) { \
  282. if (_skipStatic && encoderLine <= _thisItemNr) { \
  283. encoderPosition += ENCODER_STEPS_PER_MENU_ITEM; \
  284. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT; \
  285. } \
  286. if (lcdDrawUpdate) \
  287. lcd_implementation_drawmenu_static(_lcdLineNr, PSTR(LABEL), ## __VA_ARGS__); \
  288. } \
  289. ++_thisItemNr
  290. #define END_SCREEN() \
  291. } \
  292. _countedItems = _thisItemNr
  293. #define END_MENU() \
  294. } \
  295. _countedItems = _thisItemNr; \
  296. UNUSED(_skipStatic)
  297. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  298. //#define ENCODER_RATE_MULTIPLIER_DEBUG // If defined, output the encoder steps per second value
  299. /**
  300. * MENU_MULTIPLIER_ITEM generates drawing and handling code for a multiplier menu item
  301. */
  302. #define MENU_MULTIPLIER_ITEM(type, label, ...) do { \
  303. _MENU_ITEM_PART_1(type, label, ## __VA_ARGS__); \
  304. encoderRateMultiplierEnabled = true; \
  305. lastEncoderMovementMillis = 0; \
  306. _MENU_ITEM_PART_2(type, ## __VA_ARGS__); \
  307. } while(0)
  308. #endif //ENCODER_RATE_MULTIPLIER
  309. #define MENU_ITEM_DUMMY() do { _thisItemNr++; } while(0)
  310. #define MENU_ITEM_EDIT(type, label, ...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label), ## __VA_ARGS__)
  311. #define MENU_ITEM_EDIT_CALLBACK(type, label, ...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## __VA_ARGS__)
  312. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  313. #define MENU_MULTIPLIER_ITEM_EDIT(type, label, ...) MENU_MULTIPLIER_ITEM(setting_edit_ ## type, label, PSTR(label), ## __VA_ARGS__)
  314. #define MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(type, label, ...) MENU_MULTIPLIER_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## __VA_ARGS__)
  315. #else //!ENCODER_RATE_MULTIPLIER
  316. #define MENU_MULTIPLIER_ITEM_EDIT(type, label, ...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label), ## __VA_ARGS__)
  317. #define MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(type, label, ...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## __VA_ARGS__)
  318. #endif //!ENCODER_RATE_MULTIPLIER
  319. /** Used variables to keep track of the menu */
  320. volatile uint8_t buttons; //the last checked buttons in a bit array.
  321. #if ENABLED(REPRAPWORLD_KEYPAD)
  322. volatile uint8_t buttons_reprapworld_keypad; // to store the keypad shift register values
  323. #endif
  324. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  325. volatile uint8_t slow_buttons; // Bits of the pressed buttons.
  326. #endif
  327. int8_t encoderTopLine; /* scroll offset in the current menu */
  328. millis_t next_button_update_ms;
  329. uint8_t lastEncoderBits;
  330. uint32_t encoderPosition;
  331. #if PIN_EXISTS(SD_DETECT)
  332. uint8_t lcd_sd_status;
  333. #endif
  334. typedef struct {
  335. screenFunc_t menu_function;
  336. uint32_t encoder_position;
  337. } menuPosition;
  338. screenFunc_t currentScreen = lcd_status_screen; // pointer to the currently active menu handler
  339. menuPosition screen_history[10];
  340. uint8_t screen_history_depth = 0;
  341. bool screen_changed;
  342. // LCD and menu clicks
  343. bool lcd_clicked, wait_for_unclick, defer_return_to_status, no_reentrance;
  344. // Variables used when editing values.
  345. const char* editLabel;
  346. void* editValue;
  347. int32_t minEditValue, maxEditValue;
  348. screenFunc_t callbackFunc; // call this after editing
  349. /**
  350. * General function to go directly to a screen
  351. */
  352. void lcd_goto_screen(screenFunc_t screen, const uint32_t encoder = 0) {
  353. if (currentScreen != screen) {
  354. currentScreen = screen;
  355. encoderPosition = encoder;
  356. if (screen == lcd_status_screen) {
  357. defer_return_to_status = false;
  358. screen_history_depth = 0;
  359. }
  360. lcd_implementation_clear();
  361. #if ENABLED(LCD_PROGRESS_BAR)
  362. // For LCD_PROGRESS_BAR re-initialize custom characters
  363. lcd_set_custom_characters(screen == lcd_status_screen);
  364. #endif
  365. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  366. screen_changed = true;
  367. #if ENABLED(DOGLCD)
  368. drawing_screen = false;
  369. #endif
  370. }
  371. }
  372. /**
  373. * Synchronize safely while holding the current screen
  374. * This blocks all further screen or stripe updates once called
  375. */
  376. inline void lcd_synchronize() {
  377. lcd_implementation_drawmenu_static(LCD_HEIGHT >= 4 ? 1 : 0, PSTR(MSG_MOVING));
  378. if (no_reentrance) return;
  379. no_reentrance = true;
  380. screenFunc_t old_screen = currentScreen;
  381. lcd_goto_screen(lcd_synchronize);
  382. stepper.synchronize();
  383. no_reentrance = false;
  384. lcd_goto_screen(old_screen);
  385. }
  386. void lcd_return_to_status() { lcd_goto_screen(lcd_status_screen); }
  387. void lcd_save_previous_screen() {
  388. if (screen_history_depth < COUNT(screen_history)) {
  389. screen_history[screen_history_depth].menu_function = currentScreen;
  390. screen_history[screen_history_depth].encoder_position = encoderPosition;
  391. ++screen_history_depth;
  392. }
  393. }
  394. void lcd_goto_previous_menu() {
  395. if (screen_history_depth > 0) {
  396. --screen_history_depth;
  397. lcd_goto_screen(
  398. screen_history[screen_history_depth].menu_function,
  399. screen_history[screen_history_depth].encoder_position
  400. );
  401. }
  402. else
  403. lcd_return_to_status();
  404. }
  405. #endif // ULTIPANEL
  406. /**
  407. *
  408. * "Info Screen"
  409. *
  410. * This is very display-dependent, so the lcd implementation draws this.
  411. */
  412. void lcd_status_screen() {
  413. #if ENABLED(ULTIPANEL)
  414. ENCODER_DIRECTION_NORMAL();
  415. encoderRateMultiplierEnabled = false;
  416. #endif
  417. #if ENABLED(LCD_PROGRESS_BAR)
  418. millis_t ms = millis();
  419. #if DISABLED(PROGRESS_MSG_ONCE)
  420. if (ELAPSED(ms, progress_bar_ms + PROGRESS_BAR_MSG_TIME + PROGRESS_BAR_BAR_TIME)) {
  421. progress_bar_ms = ms;
  422. }
  423. #endif
  424. #if PROGRESS_MSG_EXPIRE > 0
  425. // Handle message expire
  426. if (expire_status_ms > 0) {
  427. #if ENABLED(SDSUPPORT)
  428. if (card.isFileOpen()) {
  429. // Expire the message when printing is active
  430. if (IS_SD_PRINTING) {
  431. if (ELAPSED(ms, expire_status_ms)) {
  432. lcd_status_message[0] = '\0';
  433. expire_status_ms = 0;
  434. }
  435. }
  436. else {
  437. expire_status_ms += LCD_UPDATE_INTERVAL;
  438. }
  439. }
  440. else {
  441. expire_status_ms = 0;
  442. }
  443. #else
  444. expire_status_ms = 0;
  445. #endif //SDSUPPORT
  446. }
  447. #endif
  448. #endif //LCD_PROGRESS_BAR
  449. lcd_implementation_status_screen();
  450. #if ENABLED(ULTIPANEL)
  451. if (lcd_clicked) {
  452. #if ENABLED(FILAMENT_LCD_DISPLAY)
  453. previous_lcd_status_ms = millis(); // get status message to show up for a while
  454. #endif
  455. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  456. #if ENABLED(LCD_PROGRESS_BAR)
  457. false
  458. #endif
  459. );
  460. lcd_goto_screen(lcd_main_menu);
  461. }
  462. #if ENABLED(ULTIPANEL_FEEDMULTIPLY)
  463. int new_frm = feedrate_percentage + (int32_t)encoderPosition;
  464. // Dead zone at 100% feedrate
  465. if ((feedrate_percentage < 100 && new_frm > 100) || (feedrate_percentage > 100 && new_frm < 100)) {
  466. feedrate_percentage = 100;
  467. encoderPosition = 0;
  468. }
  469. else if (feedrate_percentage == 100) {
  470. if ((int32_t)encoderPosition > ENCODER_FEEDRATE_DEADZONE) {
  471. feedrate_percentage += (int32_t)encoderPosition - (ENCODER_FEEDRATE_DEADZONE);
  472. encoderPosition = 0;
  473. }
  474. else if ((int32_t)encoderPosition < -(ENCODER_FEEDRATE_DEADZONE)) {
  475. feedrate_percentage += (int32_t)encoderPosition + ENCODER_FEEDRATE_DEADZONE;
  476. encoderPosition = 0;
  477. }
  478. }
  479. else {
  480. feedrate_percentage = new_frm;
  481. encoderPosition = 0;
  482. }
  483. #endif // ULTIPANEL_FEEDMULTIPLY
  484. feedrate_percentage = constrain(feedrate_percentage, 10, 999);
  485. #endif //ULTIPANEL
  486. }
  487. /**
  488. *
  489. * draw the kill screen
  490. *
  491. */
  492. void kill_screen(const char* lcd_msg) {
  493. lcd_init();
  494. lcd_setalertstatuspgm(lcd_msg);
  495. #if ENABLED(DOGLCD)
  496. u8g.firstPage();
  497. do {
  498. lcd_kill_screen();
  499. } while (u8g.nextPage());
  500. #else
  501. lcd_kill_screen();
  502. #endif
  503. }
  504. #if ENABLED(ULTIPANEL)
  505. inline void line_to_current(AxisEnum axis) {
  506. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(manual_feedrate_mm_m[axis]), active_extruder);
  507. }
  508. #if ENABLED(SDSUPPORT)
  509. void lcd_sdcard_pause() {
  510. card.pauseSDPrint();
  511. print_job_timer.pause();
  512. }
  513. void lcd_sdcard_resume() {
  514. card.startFileprint();
  515. print_job_timer.start();
  516. }
  517. void lcd_sdcard_stop() {
  518. card.stopSDPrint();
  519. clear_command_queue();
  520. quickstop_stepper();
  521. print_job_timer.stop();
  522. #if ENABLED(AUTOTEMP)
  523. thermalManager.autotempShutdown();
  524. #endif
  525. wait_for_heatup = false;
  526. lcd_setstatus(MSG_PRINT_ABORTED, true);
  527. }
  528. #endif //SDSUPPORT
  529. #if ENABLED(MENU_ITEM_CASE_LIGHT)
  530. extern bool case_light_on;
  531. extern void update_case_light();
  532. void toggle_case_light() {
  533. case_light_on = !case_light_on;
  534. lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NEXT;
  535. update_case_light();
  536. }
  537. #endif // MENU_ITEM_CASE_LIGHT
  538. #if ENABLED(LCD_PROGRESS_BAR_TEST)
  539. static void progress_bar_test() {
  540. static int8_t bar_percent = 0;
  541. if (lcd_clicked) {
  542. lcd_goto_previous_menu();
  543. lcd_set_custom_characters(false);
  544. return;
  545. }
  546. bar_percent += (int8_t)encoderPosition;
  547. bar_percent = constrain(bar_percent, 0, 100);
  548. encoderPosition = 0;
  549. lcd_implementation_drawmenu_static(0, PSTR(MSG_PROGRESS_BAR_TEST), true, true);
  550. lcd.setCursor((LCD_WIDTH) / 2 - 2, LCD_HEIGHT - 2);
  551. lcd.print(itostr3(bar_percent)); lcd.print('%');
  552. lcd.setCursor(0, LCD_HEIGHT - 1); lcd_draw_progress_bar(bar_percent);
  553. }
  554. void _progress_bar_test() {
  555. lcd_goto_screen(progress_bar_test);
  556. lcd_set_custom_characters();
  557. }
  558. #endif // LCD_PROGRESS_BAR_TEST
  559. #if HAS_DEBUG_MENU
  560. void lcd_debug_menu() {
  561. START_MENU();
  562. MENU_BACK(MSG_MAIN); // ^ Main
  563. #if ENABLED(LCD_PROGRESS_BAR_TEST)
  564. MENU_ITEM(submenu, MSG_PROGRESS_BAR_TEST, _progress_bar_test);
  565. #endif
  566. END_MENU();
  567. }
  568. #endif // HAS_DEBUG_MENU
  569. /**
  570. *
  571. * "Main" menu
  572. *
  573. */
  574. void lcd_main_menu() {
  575. START_MENU();
  576. MENU_BACK(MSG_WATCH);
  577. //
  578. // Debug Menu when certain options are enabled
  579. //
  580. #if HAS_DEBUG_MENU
  581. MENU_ITEM(submenu, MSG_DEBUG_MENU, lcd_debug_menu);
  582. #endif
  583. //
  584. // Switch case light on/off
  585. //
  586. #if ENABLED(MENU_ITEM_CASE_LIGHT)
  587. if (case_light_on)
  588. MENU_ITEM(function, MSG_LIGHTS_OFF, toggle_case_light);
  589. else
  590. MENU_ITEM(function, MSG_LIGHTS_ON, toggle_case_light);
  591. #endif
  592. #if ENABLED(BLTOUCH)
  593. if (!endstops.z_probe_enabled && TEST_BLTOUCH())
  594. MENU_ITEM(gcode, MSG_BLTOUCH_RESET, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_RESET)));
  595. #endif
  596. if (planner.movesplanned() || IS_SD_PRINTING) {
  597. MENU_ITEM(submenu, MSG_TUNE, lcd_tune_menu);
  598. }
  599. else {
  600. MENU_ITEM(submenu, MSG_PREPARE, lcd_prepare_menu);
  601. #if ENABLED(DELTA_CALIBRATION_MENU)
  602. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE, lcd_delta_calibrate_menu);
  603. #endif
  604. }
  605. MENU_ITEM(submenu, MSG_CONTROL, lcd_control_menu);
  606. #if ENABLED(SDSUPPORT)
  607. if (card.cardOK) {
  608. if (card.isFileOpen()) {
  609. if (card.sdprinting)
  610. MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause);
  611. else
  612. MENU_ITEM(function, MSG_RESUME_PRINT, lcd_sdcard_resume);
  613. MENU_ITEM(function, MSG_STOP_PRINT, lcd_sdcard_stop);
  614. }
  615. else {
  616. MENU_ITEM(submenu, MSG_CARD_MENU, lcd_sdcard_menu);
  617. #if !PIN_EXISTS(SD_DETECT)
  618. MENU_ITEM(gcode, MSG_CNG_SDCARD, PSTR("M21")); // SD-card changed by user
  619. #endif
  620. }
  621. }
  622. else {
  623. MENU_ITEM(submenu, MSG_NO_CARD, lcd_sdcard_menu);
  624. #if !PIN_EXISTS(SD_DETECT)
  625. MENU_ITEM(gcode, MSG_INIT_SDCARD, PSTR("M21")); // Manually initialize the SD-card via user interface
  626. #endif
  627. }
  628. #endif //SDSUPPORT
  629. #if ENABLED(LCD_INFO_MENU)
  630. MENU_ITEM(submenu, MSG_INFO_MENU, lcd_info_menu);
  631. #endif
  632. END_MENU();
  633. }
  634. /**
  635. *
  636. * "Tune" submenu items
  637. *
  638. */
  639. /**
  640. * Set the home offset based on the current_position
  641. */
  642. void lcd_set_home_offsets() {
  643. // M428 Command
  644. enqueue_and_echo_commands_P(PSTR("M428"));
  645. lcd_return_to_status();
  646. }
  647. #if ENABLED(BABYSTEPPING)
  648. long babysteps_done = 0;
  649. void _lcd_babystep(const AxisEnum axis, const char* msg) {
  650. if (lcd_clicked) { defer_return_to_status = false; return lcd_goto_previous_menu(); }
  651. ENCODER_DIRECTION_NORMAL();
  652. if (encoderPosition) {
  653. int babystep_increment = (int32_t)encoderPosition * (BABYSTEP_MULTIPLICATOR);
  654. encoderPosition = 0;
  655. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  656. thermalManager.babystep_axis(axis, babystep_increment);
  657. babysteps_done += babystep_increment;
  658. }
  659. if (lcdDrawUpdate)
  660. lcd_implementation_drawedit(msg, ftostr43sign(
  661. ((1000 * babysteps_done) * planner.steps_to_mm[axis]) * 0.001f
  662. ));
  663. }
  664. #if ENABLED(BABYSTEP_XY)
  665. void _lcd_babystep_x() { _lcd_babystep(X_AXIS, PSTR(MSG_BABYSTEPPING_X)); }
  666. void _lcd_babystep_y() { _lcd_babystep(Y_AXIS, PSTR(MSG_BABYSTEPPING_Y)); }
  667. void lcd_babystep_x() { lcd_goto_screen(_lcd_babystep_x); babysteps_done = 0; defer_return_to_status = true; }
  668. void lcd_babystep_y() { lcd_goto_screen(_lcd_babystep_y); babysteps_done = 0; defer_return_to_status = true; }
  669. #endif
  670. void _lcd_babystep_z() { _lcd_babystep(Z_AXIS, PSTR(MSG_BABYSTEPPING_Z)); }
  671. void lcd_babystep_z() { lcd_goto_screen(_lcd_babystep_z); babysteps_done = 0; defer_return_to_status = true; }
  672. #endif //BABYSTEPPING
  673. /**
  674. * Watch temperature callbacks
  675. */
  676. #if ENABLED(THERMAL_PROTECTION_HOTENDS) && WATCH_TEMP_PERIOD > 0
  677. #if TEMP_SENSOR_0 != 0
  678. void watch_temp_callback_E0() { thermalManager.start_watching_heater(0); }
  679. #endif
  680. #if HOTENDS > 1 && TEMP_SENSOR_1 != 0
  681. void watch_temp_callback_E1() { thermalManager.start_watching_heater(1); }
  682. #endif // HOTENDS > 1
  683. #if HOTENDS > 2 && TEMP_SENSOR_2 != 0
  684. void watch_temp_callback_E2() { thermalManager.start_watching_heater(2); }
  685. #endif // HOTENDS > 2
  686. #if HOTENDS > 3 && TEMP_SENSOR_3 != 0
  687. void watch_temp_callback_E3() { thermalManager.start_watching_heater(3); }
  688. #endif // HOTENDS > 3
  689. #else
  690. #if TEMP_SENSOR_0 != 0
  691. void watch_temp_callback_E0() {}
  692. #endif
  693. #if HOTENDS > 1 && TEMP_SENSOR_1 != 0
  694. void watch_temp_callback_E1() {}
  695. #endif // HOTENDS > 1
  696. #if HOTENDS > 2 && TEMP_SENSOR_2 != 0
  697. void watch_temp_callback_E2() {}
  698. #endif // HOTENDS > 2
  699. #if HOTENDS > 3 && TEMP_SENSOR_3 != 0
  700. void watch_temp_callback_E3() {}
  701. #endif // HOTENDS > 3
  702. #endif
  703. #if ENABLED(THERMAL_PROTECTION_BED) && WATCH_BED_TEMP_PERIOD > 0
  704. #if TEMP_SENSOR_BED != 0
  705. void watch_temp_callback_bed() { thermalManager.start_watching_bed(); }
  706. #endif
  707. #else
  708. #if TEMP_SENSOR_BED != 0
  709. void watch_temp_callback_bed() {}
  710. #endif
  711. #endif
  712. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  713. void lcd_enqueue_filament_change() {
  714. if (!DEBUGGING(DRYRUN) && thermalManager.tooColdToExtrude(active_extruder)) {
  715. lcd_save_previous_screen();
  716. lcd_goto_screen(lcd_filament_change_toocold_menu);
  717. return;
  718. }
  719. lcd_filament_change_show_message(FILAMENT_CHANGE_MESSAGE_INIT);
  720. enqueue_and_echo_commands_P(PSTR("M600"));
  721. }
  722. #endif
  723. /**
  724. *
  725. * "Tune" submenu
  726. *
  727. */
  728. void lcd_tune_menu() {
  729. START_MENU();
  730. //
  731. // ^ Main
  732. //
  733. MENU_BACK(MSG_MAIN);
  734. //
  735. // Speed:
  736. //
  737. MENU_ITEM_EDIT(int3, MSG_SPEED, &feedrate_percentage, 10, 999);
  738. // Manual bed leveling, Bed Z:
  739. #if ENABLED(MANUAL_BED_LEVELING)
  740. MENU_ITEM_EDIT(float43, MSG_BED_Z, &mbl.z_offset, -1, 1);
  741. #endif
  742. //
  743. // Nozzle:
  744. // Nozzle [1-4]:
  745. //
  746. #if HOTENDS == 1
  747. #if TEMP_SENSOR_0 != 0
  748. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  749. #endif
  750. #else //HOTENDS > 1
  751. #if TEMP_SENSOR_0 != 0
  752. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N1, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  753. #endif
  754. #if TEMP_SENSOR_1 != 0
  755. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N2, &thermalManager.target_temperature[1], 0, HEATER_1_MAXTEMP - 15, watch_temp_callback_E1);
  756. #endif
  757. #if HOTENDS > 2
  758. #if TEMP_SENSOR_2 != 0
  759. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N3, &thermalManager.target_temperature[2], 0, HEATER_2_MAXTEMP - 15, watch_temp_callback_E2);
  760. #endif
  761. #if HOTENDS > 3
  762. #if TEMP_SENSOR_3 != 0
  763. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N4, &thermalManager.target_temperature[3], 0, HEATER_3_MAXTEMP - 15, watch_temp_callback_E3);
  764. #endif
  765. #endif // HOTENDS > 3
  766. #endif // HOTENDS > 2
  767. #endif // HOTENDS > 1
  768. //
  769. // Bed:
  770. //
  771. #if TEMP_SENSOR_BED != 0
  772. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_BED, &thermalManager.target_temperature_bed, 0, BED_MAXTEMP - 15, watch_temp_callback_bed);
  773. #endif
  774. //
  775. // Fan Speed:
  776. //
  777. #if FAN_COUNT > 0
  778. #if HAS_FAN0
  779. #if FAN_COUNT > 1
  780. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED " 1"
  781. #else
  782. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED
  783. #endif
  784. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_1ST_FAN_SPEED, &fanSpeeds[0], 0, 255);
  785. #endif
  786. #if HAS_FAN1
  787. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 2", &fanSpeeds[1], 0, 255);
  788. #endif
  789. #if HAS_FAN2
  790. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 3", &fanSpeeds[2], 0, 255);
  791. #endif
  792. #endif // FAN_COUNT > 0
  793. //
  794. // Flow:
  795. // Flow 1:
  796. // Flow 2:
  797. // Flow 3:
  798. // Flow 4:
  799. //
  800. #if EXTRUDERS == 1
  801. MENU_ITEM_EDIT(int3, MSG_FLOW, &flow_percentage[0], 10, 999);
  802. #else // EXTRUDERS > 1
  803. MENU_ITEM_EDIT(int3, MSG_FLOW, &flow_percentage[active_extruder], 10, 999);
  804. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N1, &flow_percentage[0], 10, 999);
  805. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N2, &flow_percentage[1], 10, 999);
  806. #if EXTRUDERS > 2
  807. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N3, &flow_percentage[2], 10, 999);
  808. #if EXTRUDERS > 3
  809. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N4, &flow_percentage[3], 10, 999);
  810. #endif //EXTRUDERS > 3
  811. #endif //EXTRUDERS > 2
  812. #endif //EXTRUDERS > 1
  813. //
  814. // Babystep X:
  815. // Babystep Y:
  816. // Babystep Z:
  817. //
  818. #if ENABLED(BABYSTEPPING)
  819. #if ENABLED(BABYSTEP_XY)
  820. MENU_ITEM(submenu, MSG_BABYSTEP_X, lcd_babystep_x);
  821. MENU_ITEM(submenu, MSG_BABYSTEP_Y, lcd_babystep_y);
  822. #endif //BABYSTEP_XY
  823. MENU_ITEM(submenu, MSG_BABYSTEP_Z, lcd_babystep_z);
  824. #endif
  825. //
  826. // Change filament
  827. //
  828. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  829. if (!thermalManager.tooColdToExtrude(active_extruder))
  830. MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
  831. #endif
  832. END_MENU();
  833. }
  834. /**
  835. *
  836. * "Driver current control" submenu items
  837. *
  838. */
  839. #if ENABLED(DAC_STEPPER_CURRENT)
  840. void dac_driver_getValues() { LOOP_XYZE(i) driverPercent[i] = dac_current_get_percent((AxisEnum)i); }
  841. void dac_driver_commit() { dac_current_set_percents(driverPercent); }
  842. void dac_driver_eeprom_write() { dac_commit_eeprom(); }
  843. void lcd_dac_menu() {
  844. dac_driver_getValues();
  845. START_MENU();
  846. MENU_BACK(MSG_CONTROL);
  847. MENU_ITEM_EDIT_CALLBACK(int3, MSG_X " " MSG_DAC_PERCENT, &driverPercent[X_AXIS], 0, 100, dac_driver_commit);
  848. MENU_ITEM_EDIT_CALLBACK(int3, MSG_Y " " MSG_DAC_PERCENT, &driverPercent[Y_AXIS], 0, 100, dac_driver_commit);
  849. MENU_ITEM_EDIT_CALLBACK(int3, MSG_Z " " MSG_DAC_PERCENT, &driverPercent[Z_AXIS], 0, 100, dac_driver_commit);
  850. MENU_ITEM_EDIT_CALLBACK(int3, MSG_E " " MSG_DAC_PERCENT, &driverPercent[E_AXIS], 0, 100, dac_driver_commit);
  851. MENU_ITEM(function, MSG_DAC_EEPROM_WRITE, dac_driver_eeprom_write);
  852. END_MENU();
  853. }
  854. #endif
  855. constexpr int heater_maxtemp[HOTENDS] = ARRAY_BY_HOTENDS(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP);
  856. /**
  857. *
  858. * "Prepare" submenu items
  859. *
  860. */
  861. void _lcd_preheat(int endnum, const float temph, const float tempb, const int fan) {
  862. if (temph > 0) thermalManager.setTargetHotend(min(heater_maxtemp[endnum], temph), endnum);
  863. #if TEMP_SENSOR_BED != 0
  864. thermalManager.setTargetBed(tempb);
  865. #else
  866. UNUSED(tempb);
  867. #endif
  868. #if FAN_COUNT > 0
  869. #if FAN_COUNT > 1
  870. fanSpeeds[active_extruder < FAN_COUNT ? active_extruder : 0] = fan;
  871. #else
  872. fanSpeeds[0] = fan;
  873. #endif
  874. #else
  875. UNUSED(fan);
  876. #endif
  877. lcd_return_to_status();
  878. }
  879. #if TEMP_SENSOR_0 != 0
  880. void lcd_preheat_material1_hotend0() { _lcd_preheat(0, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  881. void lcd_preheat_material2_hotend0() { _lcd_preheat(0, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  882. #endif
  883. #if HOTENDS > 1
  884. void lcd_preheat_material1_hotend1() { _lcd_preheat(1, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  885. void lcd_preheat_material2_hotend1() { _lcd_preheat(1, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  886. #if HOTENDS > 2
  887. void lcd_preheat_material1_hotend2() { _lcd_preheat(2, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  888. void lcd_preheat_material2_hotend2() { _lcd_preheat(2, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  889. #if HOTENDS > 3
  890. void lcd_preheat_material1_hotend3() { _lcd_preheat(3, lcd_preheat_hotend_temp[0], lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  891. void lcd_preheat_material2_hotend3() { _lcd_preheat(3, lcd_preheat_hotend_temp[1], lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  892. #endif
  893. #endif
  894. void lcd_preheat_material1_hotend0123() {
  895. #if HOTENDS > 1
  896. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 1);
  897. #if HOTENDS > 2
  898. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 2);
  899. #if HOTENDS > 3
  900. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[0], 3);
  901. #endif
  902. #endif
  903. #endif
  904. lcd_preheat_material1_hotend0();
  905. }
  906. void lcd_preheat_material2_hotend0123() {
  907. #if HOTENDS > 1
  908. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 1);
  909. #if HOTENDS > 2
  910. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 2);
  911. #if HOTENDS > 3
  912. thermalManager.setTargetHotend(lcd_preheat_hotend_temp[1], 3);
  913. #endif
  914. #endif
  915. #endif
  916. lcd_preheat_material2_hotend0();
  917. }
  918. #endif // HOTENDS > 1
  919. #if TEMP_SENSOR_BED != 0
  920. void lcd_preheat_material1_bedonly() { _lcd_preheat(0, 0, lcd_preheat_bed_temp[0], lcd_preheat_fan_speed[0]); }
  921. void lcd_preheat_material2_bedonly() { _lcd_preheat(0, 0, lcd_preheat_bed_temp[1], lcd_preheat_fan_speed[1]); }
  922. #endif
  923. #if TEMP_SENSOR_0 != 0 && (TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_BED != 0)
  924. void lcd_preheat_material1_menu() {
  925. START_MENU();
  926. MENU_BACK(MSG_PREPARE);
  927. #if HOTENDS == 1
  928. MENU_ITEM(function, MSG_PREHEAT_1, lcd_preheat_material1_hotend0);
  929. #else
  930. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H1, lcd_preheat_material1_hotend0);
  931. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H2, lcd_preheat_material1_hotend1);
  932. #if HOTENDS > 2
  933. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H3, lcd_preheat_material1_hotend2);
  934. #if HOTENDS > 3
  935. MENU_ITEM(function, MSG_PREHEAT_1_N MSG_H4, lcd_preheat_material1_hotend3);
  936. #endif
  937. #endif
  938. MENU_ITEM(function, MSG_PREHEAT_1_ALL, lcd_preheat_material1_hotend0123);
  939. #endif
  940. #if TEMP_SENSOR_BED != 0
  941. MENU_ITEM(function, MSG_PREHEAT_1_BEDONLY, lcd_preheat_material1_bedonly);
  942. #endif
  943. END_MENU();
  944. }
  945. void lcd_preheat_material2_menu() {
  946. START_MENU();
  947. MENU_BACK(MSG_PREPARE);
  948. #if HOTENDS == 1
  949. MENU_ITEM(function, MSG_PREHEAT_2, lcd_preheat_material2_hotend0);
  950. #else
  951. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H1, lcd_preheat_material2_hotend0);
  952. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H2, lcd_preheat_material2_hotend1);
  953. #if HOTENDS > 2
  954. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H3, lcd_preheat_material2_hotend2);
  955. #if HOTENDS > 3
  956. MENU_ITEM(function, MSG_PREHEAT_2_N MSG_H4, lcd_preheat_material2_hotend3);
  957. #endif
  958. #endif
  959. MENU_ITEM(function, MSG_PREHEAT_2_ALL, lcd_preheat_material2_hotend0123);
  960. #endif
  961. #if TEMP_SENSOR_BED != 0
  962. MENU_ITEM(function, MSG_PREHEAT_2_BEDONLY, lcd_preheat_material2_bedonly);
  963. #endif
  964. END_MENU();
  965. }
  966. #endif // TEMP_SENSOR_0 && (TEMP_SENSOR_1 || TEMP_SENSOR_2 || TEMP_SENSOR_3 || TEMP_SENSOR_BED)
  967. void lcd_cooldown() {
  968. #if FAN_COUNT > 0
  969. for (uint8_t i = 0; i < FAN_COUNT; i++) fanSpeeds[i] = 0;
  970. #endif
  971. thermalManager.disable_all_heaters();
  972. lcd_return_to_status();
  973. }
  974. #if ENABLED(SDSUPPORT) && ENABLED(MENU_ADDAUTOSTART)
  975. void lcd_autostart_sd() {
  976. card.autostart_index = 0;
  977. card.setroot();
  978. card.checkautostart(true);
  979. }
  980. #endif
  981. #if ENABLED(MANUAL_BED_LEVELING)
  982. /**
  983. *
  984. * "Prepare" > "Bed Leveling" handlers
  985. *
  986. */
  987. static uint8_t _lcd_level_bed_position;
  988. // Utility to go to the next mesh point
  989. // A raise is added between points if Z_HOMING_HEIGHT is in use
  990. // Note: During Manual Bed Leveling the homed Z position is MESH_HOME_SEARCH_Z
  991. // Z position will be restored with the final action, a G28
  992. inline void _mbl_goto_xy(float x, float y) {
  993. if (no_reentrance) return;
  994. current_position[Z_AXIS] = LOGICAL_Z_POSITION(MESH_HOME_SEARCH_Z + Z_HOMING_HEIGHT);
  995. line_to_current(Z_AXIS);
  996. current_position[X_AXIS] = LOGICAL_X_POSITION(x);
  997. current_position[Y_AXIS] = LOGICAL_Y_POSITION(y);
  998. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(XY_PROBE_SPEED), active_extruder);
  999. #if Z_HOMING_HEIGHT > 0
  1000. current_position[Z_AXIS] = LOGICAL_Z_POSITION(MESH_HOME_SEARCH_Z);
  1001. line_to_current(Z_AXIS);
  1002. #endif
  1003. lcd_synchronize();
  1004. }
  1005. void _lcd_level_goto_next_point();
  1006. void _lcd_level_bed_done() {
  1007. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(MSG_LEVEL_BED_DONE));
  1008. lcdDrawUpdate =
  1009. #if ENABLED(DOGLCD)
  1010. LCDVIEW_CALL_REDRAW_NEXT
  1011. #else
  1012. LCDVIEW_CALL_NO_REDRAW
  1013. #endif
  1014. ;
  1015. }
  1016. /**
  1017. * Step 7: Get the Z coordinate, then goto next point or exit
  1018. */
  1019. void _lcd_level_bed_get_z() {
  1020. ENCODER_DIRECTION_NORMAL();
  1021. if (no_reentrance) goto KeepDrawing;
  1022. // Encoder wheel adjusts the Z position
  1023. if (encoderPosition) {
  1024. refresh_cmd_timeout();
  1025. current_position[Z_AXIS] += float((int32_t)encoderPosition) * (MBL_Z_STEP);
  1026. NOLESS(current_position[Z_AXIS], 0);
  1027. NOMORE(current_position[Z_AXIS], MESH_HOME_SEARCH_Z * 2);
  1028. line_to_current(Z_AXIS);
  1029. lcdDrawUpdate =
  1030. #if ENABLED(DOGLCD)
  1031. LCDVIEW_CALL_REDRAW_NEXT
  1032. #else
  1033. LCDVIEW_REDRAW_NOW
  1034. #endif
  1035. ;
  1036. encoderPosition = 0;
  1037. }
  1038. static bool debounce_click = false;
  1039. if (lcd_clicked) {
  1040. if (!debounce_click) {
  1041. debounce_click = true; // ignore multiple "clicks" in a row
  1042. mbl.set_zigzag_z(_lcd_level_bed_position++, current_position[Z_AXIS]);
  1043. if (_lcd_level_bed_position == (MESH_NUM_X_POINTS) * (MESH_NUM_Y_POINTS)) {
  1044. lcd_goto_screen(_lcd_level_bed_done);
  1045. current_position[Z_AXIS] = MESH_HOME_SEARCH_Z + Z_HOMING_HEIGHT;
  1046. line_to_current(Z_AXIS);
  1047. lcd_synchronize();
  1048. mbl.set_has_mesh(true);
  1049. enqueue_and_echo_commands_P(PSTR("G28"));
  1050. lcd_return_to_status();
  1051. //LCD_MESSAGEPGM(MSG_LEVEL_BED_DONE);
  1052. #if HAS_BUZZER
  1053. lcd_buzz(200, 659);
  1054. lcd_buzz(200, 698);
  1055. #endif
  1056. }
  1057. else {
  1058. lcd_goto_screen(_lcd_level_goto_next_point);
  1059. }
  1060. }
  1061. }
  1062. else {
  1063. debounce_click = false;
  1064. }
  1065. KeepDrawing:
  1066. // Update on first display, then only on updates to Z position
  1067. // Show message above on clicks instead
  1068. if (lcdDrawUpdate) {
  1069. float v = current_position[Z_AXIS] - MESH_HOME_SEARCH_Z;
  1070. lcd_implementation_drawedit(PSTR(MSG_MOVE_Z), ftostr43sign(v + (v < 0 ? -0.0001 : 0.0001), '+'));
  1071. }
  1072. }
  1073. /**
  1074. * Step 6: Display "Next point: 1 / 9" while waiting for move to finish
  1075. */
  1076. void _lcd_level_bed_moving() {
  1077. if (lcdDrawUpdate) {
  1078. char msg[10];
  1079. sprintf_P(msg, PSTR("%i / %u"), (int)(_lcd_level_bed_position + 1), (MESH_NUM_X_POINTS) * (MESH_NUM_Y_POINTS));
  1080. lcd_implementation_drawedit(PSTR(MSG_LEVEL_BED_NEXT_POINT), msg);
  1081. }
  1082. lcdDrawUpdate =
  1083. #if ENABLED(DOGLCD)
  1084. LCDVIEW_CALL_REDRAW_NEXT
  1085. #else
  1086. LCDVIEW_CALL_NO_REDRAW
  1087. #endif
  1088. ;
  1089. }
  1090. /**
  1091. * Step 5: Initiate a move to the next point
  1092. */
  1093. void _lcd_level_goto_next_point() {
  1094. // Set the menu to display ahead of blocking call
  1095. lcd_goto_screen(_lcd_level_bed_moving);
  1096. // _mbl_goto_xy runs the menu loop until the move is done
  1097. int8_t px, py;
  1098. mbl.zigzag(_lcd_level_bed_position, px, py);
  1099. _mbl_goto_xy(mbl.get_probe_x(px), mbl.get_probe_y(py));
  1100. // After the blocking function returns, change menus
  1101. lcd_goto_screen(_lcd_level_bed_get_z);
  1102. }
  1103. /**
  1104. * Step 4: Display "Click to Begin", wait for click
  1105. * Move to the first probe position
  1106. */
  1107. void _lcd_level_bed_homing_done() {
  1108. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(MSG_LEVEL_BED_WAITING));
  1109. if (lcd_clicked) {
  1110. _lcd_level_bed_position = 0;
  1111. current_position[Z_AXIS] = MESH_HOME_SEARCH_Z
  1112. #if Z_HOME_DIR > 0
  1113. + Z_MAX_POS
  1114. #endif
  1115. ;
  1116. planner.set_position_mm(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
  1117. lcd_goto_screen(_lcd_level_goto_next_point);
  1118. }
  1119. }
  1120. /**
  1121. * Step 3: Display "Homing XYZ" - Wait for homing to finish
  1122. */
  1123. void _lcd_level_bed_homing() {
  1124. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(MSG_LEVEL_BED_HOMING), NULL);
  1125. lcdDrawUpdate =
  1126. #if ENABLED(DOGLCD)
  1127. LCDVIEW_CALL_REDRAW_NEXT
  1128. #else
  1129. LCDVIEW_CALL_NO_REDRAW
  1130. #endif
  1131. ;
  1132. if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
  1133. lcd_goto_screen(_lcd_level_bed_homing_done);
  1134. }
  1135. /**
  1136. * Step 2: Continue Bed Leveling...
  1137. */
  1138. void _lcd_level_bed_continue() {
  1139. defer_return_to_status = true;
  1140. axis_homed[X_AXIS] = axis_homed[Y_AXIS] = axis_homed[Z_AXIS] = false;
  1141. mbl.reset();
  1142. enqueue_and_echo_commands_P(PSTR("G28"));
  1143. lcd_goto_screen(_lcd_level_bed_homing);
  1144. }
  1145. /**
  1146. * Step 1: MBL entry-point: "Cancel" or "Level Bed"
  1147. */
  1148. void lcd_level_bed() {
  1149. START_MENU();
  1150. MENU_BACK(MSG_LEVEL_BED_CANCEL);
  1151. MENU_ITEM(submenu, MSG_LEVEL_BED, _lcd_level_bed_continue);
  1152. END_MENU();
  1153. }
  1154. #endif // MANUAL_BED_LEVELING
  1155. /**
  1156. *
  1157. * "Prepare" submenu
  1158. *
  1159. */
  1160. void lcd_prepare_menu() {
  1161. START_MENU();
  1162. //
  1163. // ^ Main
  1164. //
  1165. MENU_BACK(MSG_MAIN);
  1166. //
  1167. // Move Axis
  1168. //
  1169. #if ENABLED(DELTA)
  1170. if (axis_homed[Z_AXIS])
  1171. #endif
  1172. MENU_ITEM(submenu, MSG_MOVE_AXIS, lcd_move_menu);
  1173. //
  1174. // Auto Home
  1175. //
  1176. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  1177. #if ENABLED(INDIVIDUAL_AXIS_HOMING_MENU)
  1178. MENU_ITEM(gcode, MSG_AUTO_HOME_X, PSTR("G28 X"));
  1179. MENU_ITEM(gcode, MSG_AUTO_HOME_Y, PSTR("G28 Y"));
  1180. MENU_ITEM(gcode, MSG_AUTO_HOME_Z, PSTR("G28 Z"));
  1181. #endif
  1182. //
  1183. // Level Bed
  1184. //
  1185. #if HAS_ABL
  1186. MENU_ITEM(gcode, MSG_LEVEL_BED,
  1187. axis_homed[X_AXIS] && axis_homed[Y_AXIS] ? PSTR("G29") : PSTR("G28\nG29")
  1188. );
  1189. #elif ENABLED(MANUAL_BED_LEVELING)
  1190. MENU_ITEM(submenu, MSG_LEVEL_BED, lcd_level_bed);
  1191. #endif
  1192. //
  1193. // Set Home Offsets
  1194. //
  1195. MENU_ITEM(function, MSG_SET_HOME_OFFSETS, lcd_set_home_offsets);
  1196. //MENU_ITEM(gcode, MSG_SET_ORIGIN, PSTR("G92 X0 Y0 Z0"));
  1197. //
  1198. // Disable Steppers
  1199. //
  1200. MENU_ITEM(gcode, MSG_DISABLE_STEPPERS, PSTR("M84"));
  1201. //
  1202. // Preheat PLA
  1203. // Preheat ABS
  1204. //
  1205. #if TEMP_SENSOR_0 != 0
  1206. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_BED != 0
  1207. MENU_ITEM(submenu, MSG_PREHEAT_1, lcd_preheat_material1_menu);
  1208. MENU_ITEM(submenu, MSG_PREHEAT_2, lcd_preheat_material2_menu);
  1209. #else
  1210. MENU_ITEM(function, MSG_PREHEAT_1, lcd_preheat_material1_hotend0);
  1211. MENU_ITEM(function, MSG_PREHEAT_2, lcd_preheat_material2_hotend0);
  1212. #endif
  1213. //
  1214. // Change filament
  1215. //
  1216. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  1217. if (!thermalManager.tooColdToExtrude(active_extruder))
  1218. MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
  1219. #endif
  1220. #endif
  1221. //
  1222. // Cooldown
  1223. //
  1224. bool has_heat = false;
  1225. HOTEND_LOOP() if (thermalManager.target_temperature[HOTEND_INDEX]) { has_heat = true; break; }
  1226. #if HAS_TEMP_BED
  1227. if (thermalManager.target_temperature_bed) has_heat = true;
  1228. #endif
  1229. if (has_heat) MENU_ITEM(function, MSG_COOLDOWN, lcd_cooldown);
  1230. //
  1231. // BLTouch Self-Test and Reset
  1232. //
  1233. #if ENABLED(BLTOUCH)
  1234. MENU_ITEM(gcode, MSG_BLTOUCH_SELFTEST, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_SELFTEST)));
  1235. if (!endstops.z_probe_enabled && TEST_BLTOUCH())
  1236. MENU_ITEM(gcode, MSG_BLTOUCH_RESET, PSTR("M280 P" STRINGIFY(Z_ENDSTOP_SERVO_NR) " S" STRINGIFY(BLTOUCH_RESET)));
  1237. #endif
  1238. //
  1239. // Switch power on/off
  1240. //
  1241. #if HAS_POWER_SWITCH
  1242. if (powersupply)
  1243. MENU_ITEM(gcode, MSG_SWITCH_PS_OFF, PSTR("M81"));
  1244. else
  1245. MENU_ITEM(gcode, MSG_SWITCH_PS_ON, PSTR("M80"));
  1246. #endif
  1247. //
  1248. // Autostart
  1249. //
  1250. #if ENABLED(SDSUPPORT) && ENABLED(MENU_ADDAUTOSTART)
  1251. MENU_ITEM(function, MSG_AUTOSTART, lcd_autostart_sd);
  1252. #endif
  1253. END_MENU();
  1254. }
  1255. float move_menu_scale;
  1256. #if ENABLED(DELTA_CALIBRATION_MENU)
  1257. void lcd_move_z();
  1258. void lcd_delta_calibrate_menu();
  1259. void _lcd_calibrate_homing() {
  1260. if (lcdDrawUpdate) lcd_implementation_drawmenu_static(LCD_HEIGHT >= 4 ? 1 : 0, PSTR(MSG_LEVEL_BED_HOMING));
  1261. lcdDrawUpdate =
  1262. #if ENABLED(DOGLCD)
  1263. LCDVIEW_CALL_REDRAW_NEXT
  1264. #else
  1265. LCDVIEW_CALL_NO_REDRAW
  1266. #endif
  1267. ;
  1268. if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
  1269. lcd_goto_previous_menu();
  1270. }
  1271. void _lcd_delta_calibrate_home() {
  1272. enqueue_and_echo_commands_P(PSTR("G28"));
  1273. lcd_goto_screen(_lcd_calibrate_homing);
  1274. }
  1275. // Move directly to the tower position with uninterpolated moves
  1276. // If we used interpolated moves it would cause this to become re-entrant
  1277. void _goto_tower_pos(const float &a) {
  1278. if (no_reentrance) return;
  1279. current_position[Z_AXIS] = max(Z_HOMING_HEIGHT, Z_CLEARANCE_BETWEEN_PROBES) + (DELTA_PRINTABLE_RADIUS) / 5;
  1280. line_to_current(Z_AXIS);
  1281. current_position[X_AXIS] = a < 0 ? X_HOME_POS : sin(a) * -(DELTA_PRINTABLE_RADIUS);
  1282. current_position[Y_AXIS] = a < 0 ? Y_HOME_POS : cos(a) * (DELTA_PRINTABLE_RADIUS);
  1283. line_to_current(Z_AXIS);
  1284. current_position[Z_AXIS] = 4.0;
  1285. line_to_current(Z_AXIS);
  1286. lcd_synchronize();
  1287. move_menu_scale = 0.1;
  1288. lcd_goto_screen(lcd_move_z);
  1289. }
  1290. void _goto_tower_x() { _goto_tower_pos(RADIANS(120)); }
  1291. void _goto_tower_y() { _goto_tower_pos(RADIANS(240)); }
  1292. void _goto_tower_z() { _goto_tower_pos(0); }
  1293. void _goto_center() { _goto_tower_pos(-1); }
  1294. void lcd_delta_calibrate_menu() {
  1295. START_MENU();
  1296. MENU_BACK(MSG_MAIN);
  1297. MENU_ITEM(submenu, MSG_AUTO_HOME, _lcd_delta_calibrate_home);
  1298. if (axis_homed[Z_AXIS]) {
  1299. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_X, _goto_tower_x);
  1300. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_Y, _goto_tower_y);
  1301. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_Z, _goto_tower_z);
  1302. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE_CENTER, _goto_center);
  1303. }
  1304. END_MENU();
  1305. }
  1306. #endif // DELTA_CALIBRATION_MENU
  1307. /**
  1308. * If the most recent manual move hasn't been fed to the planner yet,
  1309. * and the planner can accept one, send immediately
  1310. */
  1311. inline void manage_manual_move() {
  1312. if (manual_move_axis != (int8_t)NO_AXIS && ELAPSED(millis(), manual_move_start_time) && !planner.is_full()) {
  1313. planner.buffer_line_kinematic(current_position, MMM_TO_MMS(manual_feedrate_mm_m[manual_move_axis]), manual_move_e_index);
  1314. manual_move_axis = (int8_t)NO_AXIS;
  1315. }
  1316. }
  1317. /**
  1318. * Set a flag that lcd_update() should start a move
  1319. * to "current_position" after a short delay.
  1320. */
  1321. inline void manual_move_to_current(AxisEnum axis
  1322. #if E_MANUAL > 1
  1323. , int8_t eindex=-1
  1324. #endif
  1325. ) {
  1326. #if E_MANUAL > 1
  1327. if (axis == E_AXIS) manual_move_e_index = eindex >= 0 ? eindex : active_extruder;
  1328. #endif
  1329. manual_move_start_time = millis() + (move_menu_scale < 0.99 ? 0UL : 250UL); // delay for bigger moves
  1330. manual_move_axis = (int8_t)axis;
  1331. }
  1332. /**
  1333. *
  1334. * "Prepare" > "Move Axis" submenu
  1335. *
  1336. */
  1337. void _lcd_move_xyz(const char* name, AxisEnum axis) {
  1338. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  1339. ENCODER_DIRECTION_NORMAL();
  1340. if (encoderPosition) {
  1341. refresh_cmd_timeout();
  1342. // Limit to software endstops, if enabled
  1343. float min = (soft_endstops_enabled && min_software_endstops) ? soft_endstop_min[axis] : current_position[axis] - 1000,
  1344. max = (soft_endstops_enabled && max_software_endstops) ? soft_endstop_max[axis] : current_position[axis] + 1000;
  1345. // Get the new position
  1346. current_position[axis] += float((int32_t)encoderPosition) * move_menu_scale;
  1347. // Delta limits XY based on the current offset from center
  1348. // This assumes the center is 0,0
  1349. #if ENABLED(DELTA)
  1350. if (axis != Z_AXIS) {
  1351. max = sqrt(sq((float)(DELTA_PRINTABLE_RADIUS)) - sq(current_position[Y_AXIS - axis]));
  1352. min = -max;
  1353. }
  1354. #endif
  1355. // Limit only when trying to move towards the limit
  1356. if ((int32_t)encoderPosition < 0) NOLESS(current_position[axis], min);
  1357. if ((int32_t)encoderPosition > 0) NOMORE(current_position[axis], max);
  1358. manual_move_to_current(axis);
  1359. encoderPosition = 0;
  1360. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  1361. }
  1362. if (lcdDrawUpdate) lcd_implementation_drawedit(name, ftostr41sign(current_position[axis]));
  1363. }
  1364. void lcd_move_x() { _lcd_move_xyz(PSTR(MSG_MOVE_X), X_AXIS); }
  1365. void lcd_move_y() { _lcd_move_xyz(PSTR(MSG_MOVE_Y), Y_AXIS); }
  1366. void lcd_move_z() { _lcd_move_xyz(PSTR(MSG_MOVE_Z), Z_AXIS); }
  1367. void _lcd_move_e(
  1368. #if E_MANUAL > 1
  1369. int8_t eindex=-1
  1370. #endif
  1371. ) {
  1372. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  1373. ENCODER_DIRECTION_NORMAL();
  1374. if (encoderPosition) {
  1375. current_position[E_AXIS] += float((int32_t)encoderPosition) * move_menu_scale;
  1376. encoderPosition = 0;
  1377. manual_move_to_current(E_AXIS
  1378. #if E_MANUAL > 1
  1379. , eindex
  1380. #endif
  1381. );
  1382. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  1383. }
  1384. if (lcdDrawUpdate) {
  1385. PGM_P pos_label;
  1386. #if E_MANUAL == 1
  1387. pos_label = PSTR(MSG_MOVE_E);
  1388. #else
  1389. switch (eindex) {
  1390. default: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E1); break;
  1391. case 1: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E2); break;
  1392. #if E_MANUAL > 2
  1393. case 2: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E3); break;
  1394. #if E_MANUAL > 3
  1395. case 3: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E4); break;
  1396. #endif
  1397. #endif
  1398. }
  1399. #endif
  1400. lcd_implementation_drawedit(pos_label, ftostr41sign(current_position[E_AXIS]));
  1401. }
  1402. }
  1403. void lcd_move_e() { _lcd_move_e(); }
  1404. #if E_MANUAL > 1
  1405. void lcd_move_e0() { _lcd_move_e(0); }
  1406. void lcd_move_e1() { _lcd_move_e(1); }
  1407. #if E_MANUAL > 2
  1408. void lcd_move_e2() { _lcd_move_e(2); }
  1409. #if E_MANUAL > 3
  1410. void lcd_move_e3() { _lcd_move_e(3); }
  1411. #endif
  1412. #endif
  1413. #endif
  1414. /**
  1415. *
  1416. * "Prepare" > "Move Xmm" > "Move XYZ" submenu
  1417. *
  1418. */
  1419. screenFunc_t _manual_move_func_ptr;
  1420. void lcd_move_menu_10mm() { move_menu_scale = 10.0; lcd_goto_screen(_manual_move_func_ptr); }
  1421. void lcd_move_menu_1mm() { move_menu_scale = 1.0; lcd_goto_screen(_manual_move_func_ptr); }
  1422. void lcd_move_menu_01mm() { move_menu_scale = 0.1; lcd_goto_screen(_manual_move_func_ptr); }
  1423. void _lcd_move_distance_menu(AxisEnum axis, screenFunc_t func) {
  1424. _manual_move_func_ptr = func;
  1425. START_MENU();
  1426. if (LCD_HEIGHT >= 4) {
  1427. switch(axis) {
  1428. case X_AXIS:
  1429. STATIC_ITEM(MSG_MOVE_X, true, true); break;
  1430. case Y_AXIS:
  1431. STATIC_ITEM(MSG_MOVE_Y, true, true); break;
  1432. case Z_AXIS:
  1433. STATIC_ITEM(MSG_MOVE_Z, true, true); break;
  1434. default:
  1435. STATIC_ITEM(MSG_MOVE_E, true, true); break;
  1436. }
  1437. }
  1438. MENU_BACK(MSG_MOVE_AXIS);
  1439. if (axis == X_AXIS || axis == Y_AXIS)
  1440. MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm);
  1441. MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm);
  1442. MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm);
  1443. END_MENU();
  1444. }
  1445. void lcd_move_get_x_amount() { _lcd_move_distance_menu(X_AXIS, lcd_move_x); }
  1446. void lcd_move_get_y_amount() { _lcd_move_distance_menu(Y_AXIS, lcd_move_y); }
  1447. void lcd_move_get_z_amount() { _lcd_move_distance_menu(Z_AXIS, lcd_move_z); }
  1448. void lcd_move_get_e_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e); }
  1449. #if E_MANUAL > 1
  1450. void lcd_move_get_e0_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e0); }
  1451. void lcd_move_get_e1_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e1); }
  1452. #if E_MANUAL > 2
  1453. void lcd_move_get_e2_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e2); }
  1454. #if E_MANUAL > 3
  1455. void lcd_move_get_e3_amount() { _lcd_move_distance_menu(E_AXIS, lcd_move_e3); }
  1456. #endif
  1457. #endif
  1458. #endif
  1459. /**
  1460. *
  1461. * "Prepare" > "Move Axis" submenu
  1462. *
  1463. */
  1464. #if IS_KINEMATIC
  1465. #define _MOVE_XYZ_ALLOWED (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS])
  1466. #if ENABLED(DELTA)
  1467. #define _MOVE_XY_ALLOWED (current_position[Z_AXIS] <= delta_clip_start_height)
  1468. void lcd_lower_z_to_clip_height() {
  1469. if (!no_reentrance) {
  1470. current_position[Z_AXIS] = delta_clip_start_height;
  1471. line_to_current(Z_AXIS);
  1472. lcd_synchronize();
  1473. }
  1474. }
  1475. #else
  1476. #define _MOVE_XY_ALLOWED true
  1477. #endif
  1478. #else
  1479. #define _MOVE_XYZ_ALLOWED true
  1480. #define _MOVE_XY_ALLOWED true
  1481. #endif
  1482. void lcd_move_menu() {
  1483. START_MENU();
  1484. MENU_BACK(MSG_PREPARE);
  1485. if (_MOVE_XYZ_ALLOWED) {
  1486. if (_MOVE_XY_ALLOWED) {
  1487. MENU_ITEM(submenu, MSG_MOVE_X, lcd_move_get_x_amount);
  1488. MENU_ITEM(submenu, MSG_MOVE_Y, lcd_move_get_y_amount);
  1489. }
  1490. #if ENABLED(DELTA)
  1491. else
  1492. MENU_ITEM(function, MSG_FREE_XY, lcd_lower_z_to_clip_height);
  1493. #endif
  1494. MENU_ITEM(submenu, MSG_MOVE_Z, lcd_move_get_z_amount);
  1495. }
  1496. else
  1497. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  1498. #if ENABLED(SWITCHING_EXTRUDER)
  1499. if (active_extruder)
  1500. MENU_ITEM(gcode, MSG_SELECT " " MSG_E1, PSTR("T0"));
  1501. else
  1502. MENU_ITEM(gcode, MSG_SELECT " " MSG_E2, PSTR("T1"));
  1503. #endif
  1504. MENU_ITEM(submenu, MSG_MOVE_E, lcd_move_get_e_amount);
  1505. #if E_MANUAL > 1
  1506. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E1, lcd_move_get_e0_amount);
  1507. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E2, lcd_move_get_e1_amount);
  1508. #if E_MANUAL > 2
  1509. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E3, lcd_move_get_e2_amount);
  1510. #if E_MANUAL > 3
  1511. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E4, lcd_move_get_e3_amount);
  1512. #endif
  1513. #endif
  1514. #endif
  1515. END_MENU();
  1516. }
  1517. /**
  1518. *
  1519. * "Control" submenu
  1520. *
  1521. */
  1522. void lcd_control_menu() {
  1523. START_MENU();
  1524. MENU_BACK(MSG_MAIN);
  1525. MENU_ITEM(submenu, MSG_TEMPERATURE, lcd_control_temperature_menu);
  1526. MENU_ITEM(submenu, MSG_MOTION, lcd_control_motion_menu);
  1527. MENU_ITEM(submenu, MSG_VOLUMETRIC, lcd_control_volumetric_menu);
  1528. #if HAS_LCD_CONTRAST
  1529. //MENU_ITEM_EDIT(int3, MSG_CONTRAST, &lcd_contrast, 0, 63);
  1530. MENU_ITEM(submenu, MSG_CONTRAST, lcd_set_contrast);
  1531. #endif
  1532. #if ENABLED(FWRETRACT)
  1533. MENU_ITEM(submenu, MSG_RETRACT, lcd_control_retract_menu);
  1534. #endif
  1535. #if ENABLED(DAC_STEPPER_CURRENT)
  1536. MENU_ITEM(submenu, MSG_DRIVE_STRENGTH, lcd_dac_menu);
  1537. #endif
  1538. #if ENABLED(EEPROM_SETTINGS)
  1539. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  1540. MENU_ITEM(function, MSG_LOAD_EPROM, Config_RetrieveSettings);
  1541. #endif
  1542. MENU_ITEM(function, MSG_RESTORE_FAILSAFE, Config_ResetDefault);
  1543. END_MENU();
  1544. }
  1545. /**
  1546. *
  1547. * "Temperature" submenu
  1548. *
  1549. */
  1550. #if ENABLED(PID_AUTOTUNE_MENU)
  1551. #if ENABLED(PIDTEMP)
  1552. int autotune_temp[HOTENDS] = ARRAY_BY_HOTENDS1(150);
  1553. #endif
  1554. #if ENABLED(PIDTEMPBED)
  1555. int autotune_temp_bed = 70;
  1556. #endif
  1557. void _lcd_autotune(int e) {
  1558. char cmd[30];
  1559. sprintf_P(cmd, PSTR("M303 U1 E%i S%i"), e,
  1560. #if HAS_PID_FOR_BOTH
  1561. e < 0 ? autotune_temp_bed : autotune_temp[e]
  1562. #elif ENABLED(PIDTEMPBED)
  1563. autotune_temp_bed
  1564. #else
  1565. autotune_temp[e]
  1566. #endif
  1567. );
  1568. enqueue_and_echo_command(cmd);
  1569. }
  1570. #endif //PID_AUTOTUNE_MENU
  1571. #if ENABLED(PIDTEMP)
  1572. // Helpers for editing PID Ki & Kd values
  1573. // grab the PID value out of the temp variable; scale it; then update the PID driver
  1574. void copy_and_scalePID_i(int e) {
  1575. #if DISABLED(PID_PARAMS_PER_HOTEND) || HOTENDS == 1
  1576. UNUSED(e);
  1577. #endif
  1578. PID_PARAM(Ki, e) = scalePID_i(raw_Ki);
  1579. thermalManager.updatePID();
  1580. }
  1581. void copy_and_scalePID_d(int e) {
  1582. #if DISABLED(PID_PARAMS_PER_HOTEND) || HOTENDS == 1
  1583. UNUSED(e);
  1584. #endif
  1585. PID_PARAM(Kd, e) = scalePID_d(raw_Kd);
  1586. thermalManager.updatePID();
  1587. }
  1588. #define _PIDTEMP_BASE_FUNCTIONS(eindex) \
  1589. void copy_and_scalePID_i_E ## eindex() { copy_and_scalePID_i(eindex); } \
  1590. void copy_and_scalePID_d_E ## eindex() { copy_and_scalePID_d(eindex); }
  1591. #if ENABLED(PID_AUTOTUNE_MENU)
  1592. #define _PIDTEMP_FUNCTIONS(eindex) \
  1593. _PIDTEMP_BASE_FUNCTIONS(eindex); \
  1594. void lcd_autotune_callback_E ## eindex() { _lcd_autotune(eindex); }
  1595. #else
  1596. #define _PIDTEMP_FUNCTIONS(eindex) _PIDTEMP_BASE_FUNCTIONS(eindex)
  1597. #endif
  1598. _PIDTEMP_FUNCTIONS(0)
  1599. #if ENABLED(PID_PARAMS_PER_HOTEND)
  1600. #if HOTENDS > 1
  1601. _PIDTEMP_FUNCTIONS(1)
  1602. #if HOTENDS > 2
  1603. _PIDTEMP_FUNCTIONS(2)
  1604. #if HOTENDS > 3
  1605. _PIDTEMP_FUNCTIONS(3)
  1606. #endif //HOTENDS > 3
  1607. #endif //HOTENDS > 2
  1608. #endif //HOTENDS > 1
  1609. #endif //PID_PARAMS_PER_HOTEND
  1610. #endif //PIDTEMP
  1611. /**
  1612. *
  1613. * "Control" > "Temperature" submenu
  1614. *
  1615. */
  1616. void lcd_control_temperature_menu() {
  1617. START_MENU();
  1618. //
  1619. // ^ Control
  1620. //
  1621. MENU_BACK(MSG_CONTROL);
  1622. //
  1623. // Nozzle:
  1624. // Nozzle [1-4]:
  1625. //
  1626. #if HOTENDS == 1
  1627. #if TEMP_SENSOR_0 != 0
  1628. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  1629. #endif
  1630. #else //HOTENDS > 1
  1631. #if TEMP_SENSOR_0 != 0
  1632. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N1, &thermalManager.target_temperature[0], 0, HEATER_0_MAXTEMP - 15, watch_temp_callback_E0);
  1633. #endif
  1634. #if TEMP_SENSOR_1 != 0
  1635. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N2, &thermalManager.target_temperature[1], 0, HEATER_1_MAXTEMP - 15, watch_temp_callback_E1);
  1636. #endif
  1637. #if HOTENDS > 2
  1638. #if TEMP_SENSOR_2 != 0
  1639. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N3, &thermalManager.target_temperature[2], 0, HEATER_2_MAXTEMP - 15, watch_temp_callback_E2);
  1640. #endif
  1641. #if HOTENDS > 3
  1642. #if TEMP_SENSOR_3 != 0
  1643. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_NOZZLE MSG_N4, &thermalManager.target_temperature[3], 0, HEATER_3_MAXTEMP - 15, watch_temp_callback_E3);
  1644. #endif
  1645. #endif // HOTENDS > 3
  1646. #endif // HOTENDS > 2
  1647. #endif // HOTENDS > 1
  1648. //
  1649. // Bed:
  1650. //
  1651. #if TEMP_SENSOR_BED != 0
  1652. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_BED, &thermalManager.target_temperature_bed, 0, BED_MAXTEMP - 15, watch_temp_callback_bed);
  1653. #endif
  1654. //
  1655. // Fan Speed:
  1656. //
  1657. #if FAN_COUNT > 0
  1658. #if HAS_FAN0
  1659. #if FAN_COUNT > 1
  1660. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED " 1"
  1661. #else
  1662. #define MSG_1ST_FAN_SPEED MSG_FAN_SPEED
  1663. #endif
  1664. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_1ST_FAN_SPEED, &fanSpeeds[0], 0, 255);
  1665. #endif
  1666. #if HAS_FAN1
  1667. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 2", &fanSpeeds[1], 0, 255);
  1668. #endif
  1669. #if HAS_FAN2
  1670. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED " 3", &fanSpeeds[2], 0, 255);
  1671. #endif
  1672. #endif // FAN_COUNT > 0
  1673. //
  1674. // Autotemp, Min, Max, Fact
  1675. //
  1676. #if ENABLED(AUTOTEMP) && (TEMP_SENSOR_0 != 0)
  1677. MENU_ITEM_EDIT(bool, MSG_AUTOTEMP, &planner.autotemp_enabled);
  1678. MENU_ITEM_EDIT(float3, MSG_MIN, &planner.autotemp_min, 0, HEATER_0_MAXTEMP - 15);
  1679. MENU_ITEM_EDIT(float3, MSG_MAX, &planner.autotemp_max, 0, HEATER_0_MAXTEMP - 15);
  1680. MENU_ITEM_EDIT(float32, MSG_FACTOR, &planner.autotemp_factor, 0.0, 1.0);
  1681. #endif
  1682. //
  1683. // PID-P, PID-I, PID-D, PID-C, PID Autotune
  1684. // PID-P E1, PID-I E1, PID-D E1, PID-C E1, PID Autotune E1
  1685. // PID-P E2, PID-I E2, PID-D E2, PID-C E2, PID Autotune E2
  1686. // PID-P E3, PID-I E3, PID-D E3, PID-C E3, PID Autotune E3
  1687. // PID-P E4, PID-I E4, PID-D E4, PID-C E4, PID Autotune E4
  1688. //
  1689. #if ENABLED(PIDTEMP)
  1690. #define _PID_BASE_MENU_ITEMS(ELABEL, eindex) \
  1691. raw_Ki = unscalePID_i(PID_PARAM(Ki, eindex)); \
  1692. raw_Kd = unscalePID_d(PID_PARAM(Kd, eindex)); \
  1693. MENU_ITEM_EDIT(float52, MSG_PID_P ELABEL, &PID_PARAM(Kp, eindex), 1, 9990); \
  1694. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I ELABEL, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E ## eindex); \
  1695. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D ELABEL, &raw_Kd, 1, 9990, copy_and_scalePID_d_E ## eindex)
  1696. #if ENABLED(PID_EXTRUSION_SCALING)
  1697. #define _PID_MENU_ITEMS(ELABEL, eindex) \
  1698. _PID_BASE_MENU_ITEMS(ELABEL, eindex); \
  1699. MENU_ITEM_EDIT(float3, MSG_PID_C ELABEL, &PID_PARAM(Kc, eindex), 1, 9990)
  1700. #else
  1701. #define _PID_MENU_ITEMS(ELABEL, eindex) _PID_BASE_MENU_ITEMS(ELABEL, eindex)
  1702. #endif
  1703. #if ENABLED(PID_AUTOTUNE_MENU)
  1704. #define PID_MENU_ITEMS(ELABEL, eindex) \
  1705. _PID_MENU_ITEMS(ELABEL, eindex); \
  1706. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(int3, MSG_PID_AUTOTUNE ELABEL, &autotune_temp[eindex], 150, heater_maxtemp[eindex] - 15, lcd_autotune_callback_E ## eindex)
  1707. #else
  1708. #define PID_MENU_ITEMS(ELABEL, eindex) _PID_MENU_ITEMS(ELABEL, eindex)
  1709. #endif
  1710. #if ENABLED(PID_PARAMS_PER_HOTEND) && HOTENDS > 1
  1711. PID_MENU_ITEMS(" " MSG_E1, 0);
  1712. PID_MENU_ITEMS(" " MSG_E2, 1);
  1713. #if HOTENDS > 2
  1714. PID_MENU_ITEMS(" " MSG_E3, 2);
  1715. #if HOTENDS > 3
  1716. PID_MENU_ITEMS(" " MSG_E4, 3);
  1717. #endif //HOTENDS > 3
  1718. #endif //HOTENDS > 2
  1719. #else //!PID_PARAMS_PER_HOTEND || HOTENDS == 1
  1720. PID_MENU_ITEMS("", 0);
  1721. #endif //!PID_PARAMS_PER_HOTEND || HOTENDS == 1
  1722. #endif //PIDTEMP
  1723. //
  1724. // Preheat Material 1 conf
  1725. //
  1726. MENU_ITEM(submenu, MSG_PREHEAT_1_SETTINGS, lcd_control_temperature_preheat_material1_settings_menu);
  1727. //
  1728. // Preheat Material 2 conf
  1729. //
  1730. MENU_ITEM(submenu, MSG_PREHEAT_2_SETTINGS, lcd_control_temperature_preheat_material2_settings_menu);
  1731. END_MENU();
  1732. }
  1733. void _lcd_control_temperature_preheat_settings_menu(uint8_t material) {
  1734. #if HOTENDS > 3
  1735. #define MINTEMP_ALL MIN4(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP, HEATER_3_MINTEMP)
  1736. #define MAXTEMP_ALL MAX4(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP, HEATER_3_MAXTEMP)
  1737. #elif HOTENDS > 2
  1738. #define MINTEMP_ALL MIN3(HEATER_0_MINTEMP, HEATER_1_MINTEMP, HEATER_2_MINTEMP)
  1739. #define MAXTEMP_ALL MAX3(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP, HEATER_2_MAXTEMP)
  1740. #elif HOTENDS > 1
  1741. #define MINTEMP_ALL min(HEATER_0_MINTEMP, HEATER_1_MINTEMP)
  1742. #define MAXTEMP_ALL max(HEATER_0_MAXTEMP, HEATER_1_MAXTEMP)
  1743. #else
  1744. #define MINTEMP_ALL HEATER_0_MINTEMP
  1745. #define MAXTEMP_ALL HEATER_0_MAXTEMP
  1746. #endif
  1747. START_MENU();
  1748. MENU_BACK(MSG_TEMPERATURE);
  1749. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &lcd_preheat_fan_speed[material], 0, 255);
  1750. #if TEMP_SENSOR_0 != 0
  1751. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &lcd_preheat_hotend_temp[material], MINTEMP_ALL, MAXTEMP_ALL - 15);
  1752. #endif
  1753. #if TEMP_SENSOR_BED != 0
  1754. MENU_ITEM_EDIT(int3, MSG_BED, &lcd_preheat_bed_temp[material], BED_MINTEMP, BED_MAXTEMP - 15);
  1755. #endif
  1756. #if ENABLED(EEPROM_SETTINGS)
  1757. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  1758. #endif
  1759. END_MENU();
  1760. }
  1761. /**
  1762. *
  1763. * "Temperature" > "Preheat Material 1 conf" submenu
  1764. *
  1765. */
  1766. void lcd_control_temperature_preheat_material1_settings_menu() { _lcd_control_temperature_preheat_settings_menu(0); }
  1767. /**
  1768. *
  1769. * "Temperature" > "Preheat Material 2 conf" submenu
  1770. *
  1771. */
  1772. void lcd_control_temperature_preheat_material2_settings_menu() { _lcd_control_temperature_preheat_settings_menu(1); }
  1773. void _reset_acceleration_rates() { planner.reset_acceleration_rates(); }
  1774. #if ENABLED(DISTINCT_E_FACTORS)
  1775. void _reset_e_acceleration_rate(const uint8_t e) { if (e == active_extruder) _reset_acceleration_rates(); }
  1776. void _reset_e0_acceleration_rate() { _reset_e_acceleration_rate(0); }
  1777. void _reset_e1_acceleration_rate() { _reset_e_acceleration_rate(1); }
  1778. #if E_STEPPERS > 2
  1779. void _reset_e2_acceleration_rate() { _reset_e_acceleration_rate(2); }
  1780. #if E_STEPPERS > 3
  1781. void _reset_e3_acceleration_rate() { _reset_e_acceleration_rate(3); }
  1782. #endif
  1783. #endif
  1784. #endif
  1785. void _planner_refresh_positioning() { planner.refresh_positioning(); }
  1786. #if ENABLED(DISTINCT_E_FACTORS)
  1787. void _planner_refresh_e_positioning(const uint8_t e) {
  1788. if (e == active_extruder)
  1789. _planner_refresh_positioning();
  1790. else
  1791. planner.steps_to_mm[e] = 1.0 / planner.axis_steps_per_mm[e];
  1792. }
  1793. void _planner_refresh_e0_positioning() { _reset_e_acceleration_rate(0); }
  1794. void _planner_refresh_e1_positioning() { _reset_e_acceleration_rate(1); }
  1795. #if E_STEPPERS > 2
  1796. void _planner_refresh_e2_positioning() { _reset_e_acceleration_rate(2); }
  1797. #if E_STEPPERS > 3
  1798. void _planner_refresh_e3_positioning() { _reset_e_acceleration_rate(3); }
  1799. #endif
  1800. #endif
  1801. #endif
  1802. /**
  1803. *
  1804. * "Control" > "Motion" submenu
  1805. *
  1806. */
  1807. void lcd_control_motion_menu() {
  1808. START_MENU();
  1809. MENU_BACK(MSG_CONTROL);
  1810. #if HAS_BED_PROBE
  1811. MENU_ITEM_EDIT(float32, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX);
  1812. #endif
  1813. // Manual bed leveling, Bed Z:
  1814. #if ENABLED(MANUAL_BED_LEVELING)
  1815. MENU_ITEM_EDIT(float43, MSG_BED_Z, &mbl.z_offset, -1, 1);
  1816. #endif
  1817. MENU_ITEM_EDIT(float5, MSG_ACC, &planner.acceleration, 10, 99000);
  1818. MENU_ITEM_EDIT(float3, MSG_VX_JERK, &planner.max_jerk[X_AXIS], 1, 990);
  1819. MENU_ITEM_EDIT(float3, MSG_VY_JERK, &planner.max_jerk[Y_AXIS], 1, 990);
  1820. #if ENABLED(DELTA)
  1821. MENU_ITEM_EDIT(float3, MSG_VZ_JERK, &planner.max_jerk[Z_AXIS], 1, 990);
  1822. #else
  1823. MENU_ITEM_EDIT(float52, MSG_VZ_JERK, &planner.max_jerk[Z_AXIS], 0.1, 990);
  1824. #endif
  1825. MENU_ITEM_EDIT(float3, MSG_VE_JERK, &planner.max_jerk[E_AXIS], 1, 990);
  1826. //
  1827. // M203 Settings
  1828. //
  1829. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_X, &planner.max_feedrate_mm_s[X_AXIS], 1, 999);
  1830. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Y, &planner.max_feedrate_mm_s[Y_AXIS], 1, 999);
  1831. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Z, &planner.max_feedrate_mm_s[Z_AXIS], 1, 999);
  1832. #if ENABLED(DISTINCT_E_FACTORS)
  1833. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E, &planner.max_feedrate_mm_s[E_AXIS + active_extruder], 1, 999);
  1834. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E1, &planner.max_feedrate_mm_s[E_AXIS], 1, 999);
  1835. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E2, &planner.max_feedrate_mm_s[E_AXIS + 1], 1, 999);
  1836. #if E_STEPPERS > 2
  1837. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E3, &planner.max_feedrate_mm_s[E_AXIS + 2], 1, 999);
  1838. #if E_STEPPERS > 3
  1839. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E3, &planner.max_feedrate_mm_s[E_AXIS + 3], 1, 999);
  1840. #endif
  1841. #endif
  1842. #else
  1843. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E, &planner.max_feedrate_mm_s[E_AXIS], 1, 999);
  1844. #endif
  1845. MENU_ITEM_EDIT(float3, MSG_VMIN, &planner.min_feedrate_mm_s, 0, 999);
  1846. MENU_ITEM_EDIT(float3, MSG_VTRAV_MIN, &planner.min_travel_feedrate_mm_s, 0, 999);
  1847. //
  1848. // M201 Settings
  1849. //
  1850. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_X, &planner.max_acceleration_mm_per_s2[X_AXIS], 100, 99000, _reset_acceleration_rates);
  1851. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Y, &planner.max_acceleration_mm_per_s2[Y_AXIS], 100, 99000, _reset_acceleration_rates);
  1852. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Z, &planner.max_acceleration_mm_per_s2[Z_AXIS], 10, 99000, _reset_acceleration_rates);
  1853. #if ENABLED(DISTINCT_E_FACTORS)
  1854. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E, &planner.max_acceleration_mm_per_s2[E_AXIS + active_extruder], 100, 99000, _reset_acceleration_rates);
  1855. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E1, &planner.max_acceleration_mm_per_s2[E_AXIS], 100, 99000, _reset_e0_acceleration_rate);
  1856. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E2, &planner.max_acceleration_mm_per_s2[E_AXIS + 1], 100, 99000, _reset_e1_acceleration_rate);
  1857. #if E_STEPPERS > 2
  1858. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E3, &planner.max_acceleration_mm_per_s2[E_AXIS + 2], 100, 99000, _reset_e2_acceleration_rate);
  1859. #if E_STEPPERS > 3
  1860. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E4, &planner.max_acceleration_mm_per_s2[E_AXIS + 3], 100, 99000, _reset_e3_acceleration_rate);
  1861. #endif
  1862. #endif
  1863. #else
  1864. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E, &planner.max_acceleration_mm_per_s2[E_AXIS], 100, 99000, _reset_acceleration_rates);
  1865. #endif
  1866. MENU_ITEM_EDIT(float5, MSG_A_RETRACT, &planner.retract_acceleration, 100, 99000);
  1867. MENU_ITEM_EDIT(float5, MSG_A_TRAVEL, &planner.travel_acceleration, 100, 99000);
  1868. //
  1869. // M92 Settings
  1870. //
  1871. MENU_ITEM_EDIT_CALLBACK(float62, MSG_XSTEPS, &planner.axis_steps_per_mm[X_AXIS], 5, 9999, _planner_refresh_positioning);
  1872. MENU_ITEM_EDIT_CALLBACK(float62, MSG_YSTEPS, &planner.axis_steps_per_mm[Y_AXIS], 5, 9999, _planner_refresh_positioning);
  1873. MENU_ITEM_EDIT_CALLBACK(float62, MSG_ZSTEPS, &planner.axis_steps_per_mm[Z_AXIS], 5, 9999, _planner_refresh_positioning);
  1874. #if ENABLED(DISTINCT_E_FACTORS)
  1875. MENU_ITEM_EDIT_CALLBACK(float62, MSG_ESTEPS, &planner.axis_steps_per_mm[E_AXIS + active_extruder], 5, 9999, _planner_refresh_positioning);
  1876. MENU_ITEM_EDIT_CALLBACK(float62, MSG_E1STEPS, &planner.axis_steps_per_mm[E_AXIS], 5, 9999, _planner_refresh_e0_positioning);
  1877. MENU_ITEM_EDIT_CALLBACK(float62, MSG_E2STEPS, &planner.axis_steps_per_mm[E_AXIS + 1], 5, 9999, _planner_refresh_e1_positioning);
  1878. #if E_STEPPERS > 2
  1879. MENU_ITEM_EDIT_CALLBACK(float62, MSG_E3STEPS, &planner.axis_steps_per_mm[E_AXIS + 2], 5, 9999, _planner_refresh_e2_positioning);
  1880. #if E_STEPPERS > 3
  1881. MENU_ITEM_EDIT_CALLBACK(float62, MSG_E4STEPS, &planner.axis_steps_per_mm[E_AXIS + 3], 5, 9999, _planner_refresh_e3_positioning);
  1882. #endif
  1883. #endif
  1884. #else
  1885. MENU_ITEM_EDIT_CALLBACK(float62, MSG_ESTEPS, &planner.axis_steps_per_mm[E_AXIS], 5, 9999, _planner_refresh_positioning);
  1886. #endif
  1887. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  1888. MENU_ITEM_EDIT(bool, MSG_ENDSTOP_ABORT, &stepper.abort_on_endstop_hit);
  1889. #endif
  1890. END_MENU();
  1891. }
  1892. /**
  1893. *
  1894. * "Control" > "Filament" submenu
  1895. *
  1896. */
  1897. void lcd_control_volumetric_menu() {
  1898. START_MENU();
  1899. MENU_BACK(MSG_CONTROL);
  1900. MENU_ITEM_EDIT_CALLBACK(bool, MSG_VOLUMETRIC_ENABLED, &volumetric_enabled, calculate_volumetric_multipliers);
  1901. if (volumetric_enabled) {
  1902. #if EXTRUDERS == 1
  1903. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM, &filament_size[0], 1.5, 3.25, calculate_volumetric_multipliers);
  1904. #else //EXTRUDERS > 1
  1905. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E1, &filament_size[0], 1.5, 3.25, calculate_volumetric_multipliers);
  1906. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E2, &filament_size[1], 1.5, 3.25, calculate_volumetric_multipliers);
  1907. #if EXTRUDERS > 2
  1908. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E3, &filament_size[2], 1.5, 3.25, calculate_volumetric_multipliers);
  1909. #if EXTRUDERS > 3
  1910. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E4, &filament_size[3], 1.5, 3.25, calculate_volumetric_multipliers);
  1911. #endif //EXTRUDERS > 3
  1912. #endif //EXTRUDERS > 2
  1913. #endif //EXTRUDERS > 1
  1914. }
  1915. END_MENU();
  1916. }
  1917. /**
  1918. *
  1919. * "Control" > "Contrast" submenu
  1920. *
  1921. */
  1922. #if HAS_LCD_CONTRAST
  1923. void lcd_set_contrast() {
  1924. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  1925. ENCODER_DIRECTION_NORMAL();
  1926. if (encoderPosition) {
  1927. set_lcd_contrast(lcd_contrast + encoderPosition);
  1928. encoderPosition = 0;
  1929. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  1930. }
  1931. if (lcdDrawUpdate) {
  1932. lcd_implementation_drawedit(PSTR(MSG_CONTRAST),
  1933. #if LCD_CONTRAST_MAX >= 100
  1934. itostr3(lcd_contrast)
  1935. #else
  1936. itostr2(lcd_contrast)
  1937. #endif
  1938. );
  1939. }
  1940. }
  1941. #endif // HAS_LCD_CONTRAST
  1942. /**
  1943. *
  1944. * "Control" > "Retract" submenu
  1945. *
  1946. */
  1947. #if ENABLED(FWRETRACT)
  1948. void lcd_control_retract_menu() {
  1949. START_MENU();
  1950. MENU_BACK(MSG_CONTROL);
  1951. MENU_ITEM_EDIT(bool, MSG_AUTORETRACT, &autoretract_enabled);
  1952. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT, &retract_length, 0, 100);
  1953. #if EXTRUDERS > 1
  1954. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_SWAP, &retract_length_swap, 0, 100);
  1955. #endif
  1956. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACTF, &retract_feedrate_mm_s, 1, 999);
  1957. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_ZLIFT, &retract_zlift, 0, 999);
  1958. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER, &retract_recover_length, -100, 100);
  1959. #if EXTRUDERS > 1
  1960. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER_SWAP, &retract_recover_length_swap, -100, 100);
  1961. #endif
  1962. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACT_RECOVERF, &retract_recover_feedrate_mm_s, 1, 999);
  1963. END_MENU();
  1964. }
  1965. #endif // FWRETRACT
  1966. #if ENABLED(SDSUPPORT)
  1967. #if !PIN_EXISTS(SD_DETECT)
  1968. void lcd_sd_refresh() {
  1969. card.initsd();
  1970. encoderTopLine = 0;
  1971. }
  1972. #endif
  1973. void lcd_sd_updir() {
  1974. card.updir();
  1975. encoderTopLine = 0;
  1976. screen_changed = true;
  1977. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  1978. }
  1979. /**
  1980. *
  1981. * "Print from SD" submenu
  1982. *
  1983. */
  1984. void lcd_sdcard_menu() {
  1985. ENCODER_DIRECTION_MENUS();
  1986. if (!lcdDrawUpdate && !lcd_clicked) return; // nothing to do (so don't thrash the SD card)
  1987. uint16_t fileCnt = card.getnrfilenames();
  1988. START_MENU();
  1989. MENU_BACK(MSG_MAIN);
  1990. card.getWorkDirName();
  1991. if (card.filename[0] == '/') {
  1992. #if !PIN_EXISTS(SD_DETECT)
  1993. MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
  1994. #endif
  1995. }
  1996. else {
  1997. MENU_ITEM(function, LCD_STR_FOLDER "..", lcd_sd_updir);
  1998. }
  1999. for (uint16_t i = 0; i < fileCnt; i++) {
  2000. if (_menuLineNr == _thisItemNr) {
  2001. #if ENABLED(SDCARD_RATHERRECENTFIRST) && DISABLED(SDCARD_SORT_ALPHA)
  2002. int nr = fileCnt - 1 - i;
  2003. #else
  2004. int nr = i;
  2005. #endif
  2006. #if ENABLED(SDCARD_SORT_ALPHA)
  2007. card.getfilename_sorted(nr);
  2008. #else
  2009. card.getfilename(nr);
  2010. #endif
  2011. if (card.filenameIsDir)
  2012. MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
  2013. else
  2014. MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
  2015. }
  2016. else {
  2017. MENU_ITEM_DUMMY();
  2018. }
  2019. }
  2020. END_MENU();
  2021. }
  2022. #endif //SDSUPPORT
  2023. #if ENABLED(LCD_INFO_MENU)
  2024. #if ENABLED(PRINTCOUNTER)
  2025. /**
  2026. *
  2027. * About Printer > Statistics submenu
  2028. *
  2029. */
  2030. void lcd_info_stats_menu() {
  2031. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2032. char buffer[21];
  2033. printStatistics stats = print_job_timer.getStats();
  2034. START_SCREEN(); // 12345678901234567890
  2035. STATIC_ITEM(MSG_INFO_PRINT_COUNT ": ", false, false, itostr3left(stats.totalPrints)); // Print Count: 999
  2036. STATIC_ITEM(MSG_INFO_COMPLETED_PRINTS": ", false, false, itostr3left(stats.finishedPrints)); // Completed : 666
  2037. duration_t elapsed = stats.printTime;
  2038. elapsed.toString(buffer);
  2039. STATIC_ITEM(MSG_INFO_PRINT_TIME ": ", false, false); // Total print Time:
  2040. STATIC_ITEM("", false, false, buffer); // 99y 364d 23h 59m 59s
  2041. elapsed = stats.longestPrint;
  2042. elapsed.toString(buffer);
  2043. STATIC_ITEM(MSG_INFO_PRINT_LONGEST ": ", false, false); // Longest job time:
  2044. STATIC_ITEM("", false, false, buffer); // 99y 364d 23h 59m 59s
  2045. sprintf_P(buffer, PSTR("%ld.%im"), long(stats.filamentUsed / 1000), int(stats.filamentUsed / 100) % 10);
  2046. STATIC_ITEM(MSG_INFO_PRINT_FILAMENT ": ", false, false); // Extruded total:
  2047. STATIC_ITEM("", false, false, buffer); // 125m
  2048. END_SCREEN();
  2049. }
  2050. #endif // PRINTCOUNTER
  2051. /**
  2052. *
  2053. * About Printer > Thermistors
  2054. *
  2055. */
  2056. void lcd_info_thermistors_menu() {
  2057. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2058. START_SCREEN();
  2059. #define THERMISTOR_ID TEMP_SENSOR_0
  2060. #include "thermistornames.h"
  2061. STATIC_ITEM("T0: " THERMISTOR_NAME, false, true);
  2062. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_0_MINTEMP), false);
  2063. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_0_MAXTEMP), false);
  2064. #if TEMP_SENSOR_1 != 0
  2065. #undef THERMISTOR_ID
  2066. #define THERMISTOR_ID TEMP_SENSOR_1
  2067. #include "thermistornames.h"
  2068. STATIC_ITEM("T1: " THERMISTOR_NAME, false, true);
  2069. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_1_MINTEMP), false);
  2070. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_1_MAXTEMP), false);
  2071. #endif
  2072. #if TEMP_SENSOR_2 != 0
  2073. #undef THERMISTOR_ID
  2074. #define THERMISTOR_ID TEMP_SENSOR_2
  2075. #include "thermistornames.h"
  2076. STATIC_ITEM("T2: " THERMISTOR_NAME, false, true);
  2077. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_2_MINTEMP), false);
  2078. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_2_MAXTEMP), false);
  2079. #endif
  2080. #if TEMP_SENSOR_3 != 0
  2081. #undef THERMISTOR_ID
  2082. #define THERMISTOR_ID TEMP_SENSOR_3
  2083. #include "thermistornames.h"
  2084. STATIC_ITEM("T3: " THERMISTOR_NAME, false, true);
  2085. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(HEATER_3_MINTEMP), false);
  2086. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(HEATER_3_MAXTEMP), false);
  2087. #endif
  2088. #if TEMP_SENSOR_BED != 0
  2089. #undef THERMISTOR_ID
  2090. #define THERMISTOR_ID TEMP_SENSOR_BED
  2091. #include "thermistornames.h"
  2092. STATIC_ITEM("TBed:" THERMISTOR_NAME, false, true);
  2093. STATIC_ITEM(MSG_INFO_MIN_TEMP ": " STRINGIFY(BED_MINTEMP), false);
  2094. STATIC_ITEM(MSG_INFO_MAX_TEMP ": " STRINGIFY(BED_MAXTEMP), false);
  2095. #endif
  2096. END_SCREEN();
  2097. }
  2098. /**
  2099. *
  2100. * About Printer > Board Info
  2101. *
  2102. */
  2103. void lcd_info_board_menu() {
  2104. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2105. START_SCREEN();
  2106. STATIC_ITEM(BOARD_NAME, true, true); // MyPrinterController
  2107. STATIC_ITEM(MSG_INFO_BAUDRATE ": " STRINGIFY(BAUDRATE), true); // Baud: 250000
  2108. STATIC_ITEM(MSG_INFO_PROTOCOL ": " PROTOCOL_VERSION, true); // Protocol: 1.0
  2109. #ifdef POWER_SUPPLY
  2110. #if (POWER_SUPPLY == 1)
  2111. STATIC_ITEM(MSG_INFO_PSU ": ATX", true); // Power Supply: ATX
  2112. #elif (POWER_SUPPLY == 2)
  2113. STATIC_ITEM(MSG_INFO_PSU ": XBox", true); // Power Supply: XBox
  2114. #endif
  2115. #endif // POWER_SUPPLY
  2116. END_SCREEN();
  2117. }
  2118. /**
  2119. *
  2120. * About Printer > Printer Info
  2121. *
  2122. */
  2123. void lcd_info_printer_menu() {
  2124. if (lcd_clicked) { return lcd_goto_previous_menu(); }
  2125. START_SCREEN();
  2126. STATIC_ITEM(MSG_MARLIN, true, true); // Marlin
  2127. STATIC_ITEM(SHORT_BUILD_VERSION, true); // x.x.x-Branch
  2128. STATIC_ITEM(STRING_DISTRIBUTION_DATE, true); // YYYY-MM-DD HH:MM
  2129. STATIC_ITEM(MACHINE_NAME, true); // My3DPrinter
  2130. STATIC_ITEM(WEBSITE_URL, true); // www.my3dprinter.com
  2131. STATIC_ITEM(MSG_INFO_EXTRUDERS ": " STRINGIFY(EXTRUDERS), true); // Extruders: 2
  2132. END_SCREEN();
  2133. }
  2134. /**
  2135. *
  2136. * "About Printer" submenu
  2137. *
  2138. */
  2139. void lcd_info_menu() {
  2140. START_MENU();
  2141. MENU_BACK(MSG_MAIN);
  2142. MENU_ITEM(submenu, MSG_INFO_PRINTER_MENU, lcd_info_printer_menu); // Printer Info >
  2143. MENU_ITEM(submenu, MSG_INFO_BOARD_MENU, lcd_info_board_menu); // Board Info >
  2144. MENU_ITEM(submenu, MSG_INFO_THERMISTOR_MENU, lcd_info_thermistors_menu); // Thermistors >
  2145. #if ENABLED(PRINTCOUNTER)
  2146. MENU_ITEM(submenu, MSG_INFO_STATS_MENU, lcd_info_stats_menu); // Printer Statistics >
  2147. #endif
  2148. END_MENU();
  2149. }
  2150. #endif // LCD_INFO_MENU
  2151. /**
  2152. *
  2153. * Filament Change Feature Screens
  2154. *
  2155. */
  2156. #if ENABLED(FILAMENT_CHANGE_FEATURE)
  2157. void lcd_filament_change_toocold_menu() {
  2158. START_MENU();
  2159. STATIC_ITEM(MSG_HEATING_FAILED_LCD, true, true);
  2160. STATIC_ITEM(MSG_FILAMENT_CHANGE_MINTEMP STRINGIFY(EXTRUDE_MINTEMP) ".", false, false);
  2161. MENU_BACK(MSG_BACK);
  2162. STATIC_ITEM(" ");
  2163. STATIC_ITEM(MSG_FILAMENT_CHANGE_NOZZLE, false, true);
  2164. lcd_implementation_hotend_status();
  2165. END_MENU();
  2166. }
  2167. void lcd_filament_change_resume_print() {
  2168. filament_change_menu_response = FILAMENT_CHANGE_RESPONSE_RESUME_PRINT;
  2169. lcd_goto_screen(lcd_status_screen);
  2170. }
  2171. void lcd_filament_change_extrude_more() {
  2172. filament_change_menu_response = FILAMENT_CHANGE_RESPONSE_EXTRUDE_MORE;
  2173. }
  2174. void lcd_filament_change_option_menu() {
  2175. START_MENU();
  2176. #if LCD_HEIGHT > 2
  2177. STATIC_ITEM(MSG_FILAMENT_CHANGE_OPTION_HEADER, true, false);
  2178. #endif
  2179. MENU_ITEM(function, MSG_FILAMENT_CHANGE_OPTION_RESUME, lcd_filament_change_resume_print);
  2180. MENU_ITEM(function, MSG_FILAMENT_CHANGE_OPTION_EXTRUDE, lcd_filament_change_extrude_more);
  2181. END_MENU();
  2182. }
  2183. void lcd_filament_change_init_message() {
  2184. START_SCREEN();
  2185. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2186. STATIC_ITEM(MSG_FILAMENT_CHANGE_INIT_1);
  2187. #ifdef MSG_FILAMENT_CHANGE_INIT_2
  2188. STATIC_ITEM(MSG_FILAMENT_CHANGE_INIT_2);
  2189. #endif
  2190. #ifdef MSG_FILAMENT_CHANGE_INIT_3
  2191. STATIC_ITEM(MSG_FILAMENT_CHANGE_INIT_3);
  2192. #endif
  2193. STATIC_ITEM(MSG_FILAMENT_CHANGE_NOZZLE, false, true);
  2194. lcd_implementation_hotend_status();
  2195. END_SCREEN();
  2196. }
  2197. void lcd_filament_change_unload_message() {
  2198. START_SCREEN();
  2199. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2200. STATIC_ITEM(MSG_FILAMENT_CHANGE_UNLOAD_1);
  2201. #ifdef MSG_FILAMENT_CHANGE_UNLOAD_2
  2202. STATIC_ITEM(MSG_FILAMENT_CHANGE_UNLOAD_2);
  2203. #endif
  2204. #ifdef MSG_FILAMENT_CHANGE_UNLOAD_3
  2205. STATIC_ITEM(MSG_FILAMENT_CHANGE_UNLOAD_3);
  2206. #endif
  2207. STATIC_ITEM (" ");
  2208. STATIC_ITEM(MSG_FILAMENT_CHANGE_NOZZLE, false, true);
  2209. lcd_implementation_hotend_status();
  2210. END_SCREEN();
  2211. }
  2212. void lcd_filament_change_wait_for_nozzles_to_heat() {
  2213. START_SCREEN();
  2214. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2215. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEATING_1);
  2216. #ifdef MSG_FILAMENT_CHANGE_HEATING_2
  2217. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEATING_2);
  2218. #endif
  2219. STATIC_ITEM(" ");
  2220. STATIC_ITEM(MSG_FILAMENT_CHANGE_NOZZLE, false, true);
  2221. lcd_implementation_hotend_status();
  2222. END_SCREEN();
  2223. }
  2224. void lcd_filament_change_heat_nozzle() {
  2225. START_SCREEN();
  2226. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2227. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEAT_1);
  2228. #ifdef MSG_FILAMENT_CHANGE_INSERT_2
  2229. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEAT_2);
  2230. #endif
  2231. STATIC_ITEM(" ");
  2232. STATIC_ITEM(MSG_FILAMENT_CHANGE_NOZZLE, false, true);
  2233. lcd_implementation_hotend_status();
  2234. END_SCREEN();
  2235. }
  2236. void lcd_filament_change_insert_message() {
  2237. START_SCREEN();
  2238. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2239. STATIC_ITEM(MSG_FILAMENT_CHANGE_INSERT_1);
  2240. #ifdef MSG_FILAMENT_CHANGE_INSERT_2
  2241. STATIC_ITEM(MSG_FILAMENT_CHANGE_INSERT_2);
  2242. #endif
  2243. #ifdef MSG_FILAMENT_CHANGE_INSERT_3
  2244. STATIC_ITEM(MSG_FILAMENT_CHANGE_INSERT_3);
  2245. #endif
  2246. STATIC_ITEM(MSG_FILAMENT_CHANGE_NOZZLE, false, true);
  2247. lcd_implementation_hotend_status();
  2248. END_SCREEN();
  2249. }
  2250. void lcd_filament_change_load_message() {
  2251. START_SCREEN();
  2252. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2253. STATIC_ITEM(MSG_FILAMENT_CHANGE_LOAD_1);
  2254. #ifdef MSG_FILAMENT_CHANGE_LOAD_2
  2255. STATIC_ITEM(MSG_FILAMENT_CHANGE_LOAD_2);
  2256. #endif
  2257. #ifdef MSG_FILAMENT_CHANGE_LOAD_3
  2258. STATIC_ITEM(MSG_FILAMENT_CHANGE_LOAD_3);
  2259. #endif
  2260. STATIC_ITEM(" ");
  2261. STATIC_ITEM(MSG_FILAMENT_CHANGE_NOZZLE, false, true);
  2262. lcd_implementation_hotend_status();
  2263. END_SCREEN();
  2264. }
  2265. void lcd_filament_change_extrude_message() {
  2266. START_SCREEN();
  2267. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2268. STATIC_ITEM(MSG_FILAMENT_CHANGE_EXTRUDE_1);
  2269. #ifdef MSG_FILAMENT_CHANGE_EXTRUDE_2
  2270. STATIC_ITEM(MSG_FILAMENT_CHANGE_EXTRUDE_2);
  2271. #endif
  2272. #ifdef MSG_FILAMENT_CHANGE_EXTRUDE_3
  2273. STATIC_ITEM(MSG_FILAMENT_CHANGE_EXTRUDE_3);
  2274. #endif
  2275. STATIC_ITEM(" ");
  2276. STATIC_ITEM(MSG_FILAMENT_CHANGE_NOZZLE, false, true);
  2277. lcd_implementation_hotend_status();
  2278. END_SCREEN();
  2279. }
  2280. void lcd_filament_change_resume_message() {
  2281. START_SCREEN();
  2282. STATIC_ITEM(MSG_FILAMENT_CHANGE_HEADER, true, true);
  2283. STATIC_ITEM(MSG_FILAMENT_CHANGE_RESUME_1);
  2284. #ifdef MSG_FILAMENT_CHANGE_RESUME_2
  2285. STATIC_ITEM(MSG_FILAMENT_CHANGE_RESUME_2);
  2286. #endif
  2287. #ifdef MSG_FILAMENT_CHANGE_RESUME_3
  2288. STATIC_ITEM(MSG_FILAMENT_CHANGE_RESUME_3);
  2289. #endif
  2290. END_SCREEN();
  2291. }
  2292. void lcd_filament_change_show_message(const FilamentChangeMessage message) {
  2293. switch (message) {
  2294. case FILAMENT_CHANGE_MESSAGE_INIT:
  2295. defer_return_to_status = true;
  2296. lcd_goto_screen(lcd_filament_change_init_message);
  2297. break;
  2298. case FILAMENT_CHANGE_MESSAGE_UNLOAD:
  2299. lcd_goto_screen(lcd_filament_change_unload_message);
  2300. break;
  2301. case FILAMENT_CHANGE_MESSAGE_INSERT:
  2302. lcd_goto_screen(lcd_filament_change_insert_message);
  2303. break;
  2304. case FILAMENT_CHANGE_MESSAGE_LOAD:
  2305. lcd_goto_screen(lcd_filament_change_load_message);
  2306. break;
  2307. case FILAMENT_CHANGE_MESSAGE_EXTRUDE:
  2308. lcd_goto_screen(lcd_filament_change_extrude_message);
  2309. break;
  2310. case FILAMENT_CHANGE_MESSAGE_CLICK_TO_HEAT_NOZZLE:
  2311. lcd_goto_screen(lcd_filament_change_heat_nozzle);
  2312. break;
  2313. case FILAMENT_CHANGE_MESSAGE_WAIT_FOR_NOZZLES_TO_HEAT:
  2314. lcd_goto_screen(lcd_filament_change_wait_for_nozzles_to_heat);
  2315. break;
  2316. case FILAMENT_CHANGE_MESSAGE_OPTION:
  2317. filament_change_menu_response = FILAMENT_CHANGE_RESPONSE_WAIT_FOR;
  2318. lcd_goto_screen(lcd_filament_change_option_menu);
  2319. break;
  2320. case FILAMENT_CHANGE_MESSAGE_RESUME:
  2321. lcd_goto_screen(lcd_filament_change_resume_message);
  2322. break;
  2323. case FILAMENT_CHANGE_MESSAGE_STATUS:
  2324. lcd_return_to_status();
  2325. break;
  2326. }
  2327. }
  2328. #endif // FILAMENT_CHANGE_FEATURE
  2329. /**
  2330. *
  2331. * Functions for editing single values
  2332. *
  2333. * The "menu_edit_type" macro generates the functions needed to edit a numerical value.
  2334. *
  2335. * For example, menu_edit_type(int, int3, itostr3, 1) expands into these functions:
  2336. *
  2337. * bool _menu_edit_int3();
  2338. * void menu_edit_int3(); // edit int (interactively)
  2339. * void menu_edit_callback_int3(); // edit int (interactively) with callback on completion
  2340. * void _menu_action_setting_edit_int3(const char * const pstr, int * const ptr, const int minValue, const int maxValue);
  2341. * void menu_action_setting_edit_int3(const char * const pstr, int * const ptr, const int minValue, const int maxValue);
  2342. * void menu_action_setting_edit_callback_int3(const char * const pstr, int * const ptr, const int minValue, const int maxValue, const screenFunc_t callback); // edit int with callback
  2343. *
  2344. * You can then use one of the menu macros to present the edit interface:
  2345. * MENU_ITEM_EDIT(int3, MSG_SPEED, &feedrate_percentage, 10, 999)
  2346. *
  2347. * This expands into a more primitive menu item:
  2348. * MENU_ITEM(setting_edit_int3, MSG_SPEED, PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  2349. *
  2350. *
  2351. * Also: MENU_MULTIPLIER_ITEM_EDIT, MENU_ITEM_EDIT_CALLBACK, and MENU_MULTIPLIER_ITEM_EDIT_CALLBACK
  2352. *
  2353. * menu_action_setting_edit_int3(PSTR(MSG_SPEED), &feedrate_percentage, 10, 999)
  2354. */
  2355. #define menu_edit_type(_type, _name, _strFunc, _scale) \
  2356. bool _menu_edit_ ## _name () { \
  2357. ENCODER_DIRECTION_NORMAL(); \
  2358. if ((int32_t)encoderPosition < 0) encoderPosition = 0; \
  2359. if ((int32_t)encoderPosition > maxEditValue) encoderPosition = maxEditValue; \
  2360. if (lcdDrawUpdate) \
  2361. lcd_implementation_drawedit(editLabel, _strFunc(((_type)((int32_t)encoderPosition + minEditValue)) * (1.0 / _scale))); \
  2362. if (lcd_clicked) { \
  2363. *((_type*)editValue) = ((_type)((int32_t)encoderPosition + minEditValue)) * (1.0 / _scale); \
  2364. lcd_goto_previous_menu(); \
  2365. } \
  2366. return lcd_clicked; \
  2367. } \
  2368. void menu_edit_ ## _name () { _menu_edit_ ## _name(); } \
  2369. void menu_edit_callback_ ## _name () { if (_menu_edit_ ## _name ()) (*callbackFunc)(); } \
  2370. void _menu_action_setting_edit_ ## _name (const char * const pstr, _type* const ptr, const _type minValue, const _type maxValue) { \
  2371. lcd_save_previous_screen(); \
  2372. \
  2373. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; \
  2374. \
  2375. editLabel = pstr; \
  2376. editValue = ptr; \
  2377. minEditValue = minValue * _scale; \
  2378. maxEditValue = maxValue * _scale - minEditValue; \
  2379. encoderPosition = (*ptr) * _scale - minEditValue; \
  2380. } \
  2381. void menu_action_setting_edit_ ## _name (const char * const pstr, _type * const ptr, const _type minValue, const _type maxValue) { \
  2382. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  2383. currentScreen = menu_edit_ ## _name; \
  2384. }\
  2385. void menu_action_setting_edit_callback_ ## _name (const char * const pstr, _type * const ptr, const _type minValue, const _type maxValue, const screenFunc_t callback) { \
  2386. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  2387. currentScreen = menu_edit_callback_ ## _name; \
  2388. callbackFunc = callback; \
  2389. } \
  2390. typedef void _name
  2391. menu_edit_type(int, int3, itostr3, 1);
  2392. menu_edit_type(float, float3, ftostr3, 1.0);
  2393. menu_edit_type(float, float32, ftostr32, 100.0);
  2394. menu_edit_type(float, float43, ftostr43sign, 1000.0);
  2395. menu_edit_type(float, float5, ftostr5rj, 0.01);
  2396. menu_edit_type(float, float51, ftostr51sign, 10.0);
  2397. menu_edit_type(float, float52, ftostr52sign, 100.0);
  2398. menu_edit_type(float, float62, ftostr62rj, 100.0);
  2399. menu_edit_type(unsigned long, long5, ftostr5rj, 0.01);
  2400. /**
  2401. *
  2402. * Handlers for RepRap World Keypad input
  2403. *
  2404. */
  2405. #if ENABLED(REPRAPWORLD_KEYPAD)
  2406. void _reprapworld_keypad_move(AxisEnum axis, int dir) {
  2407. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  2408. encoderPosition = dir;
  2409. switch (axis) {
  2410. case X_AXIS: lcd_move_x(); break;
  2411. case Y_AXIS: lcd_move_y(); break;
  2412. case Z_AXIS: lcd_move_z();
  2413. default: break;
  2414. }
  2415. }
  2416. void reprapworld_keypad_move_z_up() { _reprapworld_keypad_move(Z_AXIS, 1); }
  2417. void reprapworld_keypad_move_z_down() { _reprapworld_keypad_move(Z_AXIS, -1); }
  2418. void reprapworld_keypad_move_x_left() { _reprapworld_keypad_move(X_AXIS, -1); }
  2419. void reprapworld_keypad_move_x_right() { _reprapworld_keypad_move(X_AXIS, 1); }
  2420. void reprapworld_keypad_move_y_up() { _reprapworld_keypad_move(Y_AXIS, -1); }
  2421. void reprapworld_keypad_move_y_down() { _reprapworld_keypad_move(Y_AXIS, 1); }
  2422. void reprapworld_keypad_move_home() { enqueue_and_echo_commands_P(PSTR("G28")); } // move all axes home and wait
  2423. void reprapworld_keypad_move_menu() { lcd_goto_screen(lcd_move_menu); }
  2424. inline void handle_reprapworld_keypad() {
  2425. static uint8_t keypad_debounce = 0;
  2426. if (!REPRAPWORLD_KEYPAD_PRESSED) {
  2427. if (keypad_debounce > 0) keypad_debounce--;
  2428. }
  2429. else if (!keypad_debounce) {
  2430. keypad_debounce = 2;
  2431. if (REPRAPWORLD_KEYPAD_MOVE_MENU) reprapworld_keypad_move_menu();
  2432. #if DISABLED(DELTA) && Z_HOME_DIR == -1
  2433. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) reprapworld_keypad_move_z_up();
  2434. #endif
  2435. if (axis_homed[X_AXIS] && axis_homed[Y_AXIS] && axis_homed[Z_AXIS]) {
  2436. #if ENABLED(DELTA) || Z_HOME_DIR != -1
  2437. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) reprapworld_keypad_move_z_up();
  2438. #endif
  2439. if (REPRAPWORLD_KEYPAD_MOVE_Z_DOWN) reprapworld_keypad_move_z_down();
  2440. if (REPRAPWORLD_KEYPAD_MOVE_X_LEFT) reprapworld_keypad_move_x_left();
  2441. if (REPRAPWORLD_KEYPAD_MOVE_X_RIGHT) reprapworld_keypad_move_x_right();
  2442. if (REPRAPWORLD_KEYPAD_MOVE_Y_DOWN) reprapworld_keypad_move_y_down();
  2443. if (REPRAPWORLD_KEYPAD_MOVE_Y_UP) reprapworld_keypad_move_y_up();
  2444. }
  2445. else {
  2446. if (REPRAPWORLD_KEYPAD_MOVE_HOME) reprapworld_keypad_move_home();
  2447. }
  2448. }
  2449. }
  2450. #endif // REPRAPWORLD_KEYPAD
  2451. /**
  2452. *
  2453. * Audio feedback for controller clicks
  2454. *
  2455. */
  2456. void lcd_buzz(long duration, uint16_t freq) {
  2457. #if ENABLED(LCD_USE_I2C_BUZZER)
  2458. lcd.buzz(duration, freq);
  2459. #elif PIN_EXISTS(BEEPER)
  2460. buzzer.tone(duration, freq);
  2461. #else
  2462. UNUSED(duration); UNUSED(freq);
  2463. #endif
  2464. }
  2465. void lcd_quick_feedback() {
  2466. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  2467. buttons = 0;
  2468. next_button_update_ms = millis() + 500;
  2469. // Buzz and wait. The delay is needed for buttons to settle!
  2470. lcd_buzz(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
  2471. #if ENABLED(LCD_USE_I2C_BUZZER)
  2472. delay(10);
  2473. #elif PIN_EXISTS(BEEPER)
  2474. for (int8_t i = 5; i--;) { buzzer.tick(); delay(2); }
  2475. #endif
  2476. }
  2477. /**
  2478. *
  2479. * Menu actions
  2480. *
  2481. */
  2482. void _menu_action_back() { lcd_goto_previous_menu(); }
  2483. void menu_action_submenu(screenFunc_t func) { lcd_save_previous_screen(); lcd_goto_screen(func); }
  2484. void menu_action_gcode(const char* pgcode) { enqueue_and_echo_commands_P(pgcode); }
  2485. void menu_action_function(screenFunc_t func) { (*func)(); }
  2486. #if ENABLED(SDSUPPORT)
  2487. void menu_action_sdfile(const char* filename, char* longFilename) {
  2488. UNUSED(longFilename);
  2489. card.openAndPrintFile(filename);
  2490. lcd_return_to_status();
  2491. }
  2492. void menu_action_sddirectory(const char* filename, char* longFilename) {
  2493. UNUSED(longFilename);
  2494. card.chdir(filename);
  2495. encoderPosition = 0;
  2496. screen_changed = true;
  2497. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  2498. }
  2499. #endif //SDSUPPORT
  2500. void menu_action_setting_edit_bool(const char* pstr, bool* ptr) {UNUSED(pstr); *ptr = !(*ptr); lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; }
  2501. void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, screenFunc_t callback) {
  2502. menu_action_setting_edit_bool(pstr, ptr);
  2503. (*callback)();
  2504. }
  2505. #endif // ULTIPANEL
  2506. void lcd_init() {
  2507. lcd_implementation_init(
  2508. #if ENABLED(LCD_PROGRESS_BAR)
  2509. true
  2510. #endif
  2511. );
  2512. #if ENABLED(NEWPANEL)
  2513. #if BUTTON_EXISTS(EN1)
  2514. SET_INPUT(BTN_EN1);
  2515. WRITE(BTN_EN1, HIGH);
  2516. #endif
  2517. #if BUTTON_EXISTS(EN2)
  2518. SET_INPUT(BTN_EN2);
  2519. WRITE(BTN_EN2, HIGH);
  2520. #endif
  2521. #if BUTTON_EXISTS(ENC)
  2522. SET_INPUT(BTN_ENC);
  2523. WRITE(BTN_ENC, HIGH);
  2524. #endif
  2525. #if ENABLED(REPRAPWORLD_KEYPAD)
  2526. SET_OUTPUT(SHIFT_CLK);
  2527. OUT_WRITE(SHIFT_LD, HIGH);
  2528. SET_INPUT_PULLUP(SHIFT_OUT);
  2529. #endif
  2530. #if BUTTON_EXISTS(UP)
  2531. SET_INPUT(BTN_UP);
  2532. #endif
  2533. #if BUTTON_EXISTS(DWN)
  2534. SET_INPUT(BTN_DWN);
  2535. #endif
  2536. #if BUTTON_EXISTS(LFT)
  2537. SET_INPUT(BTN_LFT);
  2538. #endif
  2539. #if BUTTON_EXISTS(RT)
  2540. SET_INPUT(BTN_RT);
  2541. #endif
  2542. #else // !NEWPANEL
  2543. #if ENABLED(SR_LCD_2W_NL) // Non latching 2 wire shift register
  2544. SET_OUTPUT(SR_DATA_PIN);
  2545. SET_OUTPUT(SR_CLK_PIN);
  2546. #elif defined(SHIFT_CLK)
  2547. SET_OUTPUT(SHIFT_CLK);
  2548. OUT_WRITE(SHIFT_LD, HIGH);
  2549. OUT_WRITE(SHIFT_EN, LOW);
  2550. SET_INPUT_PULLUP(SHIFT_OUT);
  2551. #endif // SR_LCD_2W_NL
  2552. #endif // !NEWPANEL
  2553. #if ENABLED(SDSUPPORT) && PIN_EXISTS(SD_DETECT)
  2554. SET_INPUT(SD_DETECT_PIN);
  2555. WRITE(SD_DETECT_PIN, HIGH);
  2556. lcd_sd_status = 2; // UNKNOWN
  2557. #endif
  2558. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  2559. slow_buttons = 0;
  2560. #endif
  2561. lcd_buttons_update();
  2562. #if ENABLED(ULTIPANEL)
  2563. encoderDiff = 0;
  2564. #endif
  2565. }
  2566. int lcd_strlen(const char* s) {
  2567. int i = 0, j = 0;
  2568. while (s[i]) {
  2569. #if ENABLED(MAPPER_NON)
  2570. j++;
  2571. #else
  2572. if ((s[i] & 0xC0u) != 0x80u) j++;
  2573. #endif
  2574. i++;
  2575. }
  2576. return j;
  2577. }
  2578. int lcd_strlen_P(const char* s) {
  2579. int j = 0;
  2580. while (pgm_read_byte(s)) {
  2581. #if ENABLED(MAPPER_NON)
  2582. j++;
  2583. #else
  2584. if ((pgm_read_byte(s) & 0xC0u) != 0x80u) j++;
  2585. #endif
  2586. s++;
  2587. }
  2588. return j;
  2589. }
  2590. bool lcd_blink() {
  2591. static uint8_t blink = 0;
  2592. static millis_t next_blink_ms = 0;
  2593. millis_t ms = millis();
  2594. if (ELAPSED(ms, next_blink_ms)) {
  2595. blink ^= 0xFF;
  2596. next_blink_ms = ms + 1000 - LCD_UPDATE_INTERVAL / 2;
  2597. }
  2598. return blink != 0;
  2599. }
  2600. /**
  2601. * Update the LCD, read encoder buttons, etc.
  2602. * - Read button states
  2603. * - Check the SD Card slot state
  2604. * - Act on RepRap World keypad input
  2605. * - Update the encoder position
  2606. * - Apply acceleration to the encoder position
  2607. * - Set lcdDrawUpdate = LCDVIEW_CALL_REDRAW_NOW on controller events
  2608. * - Reset the Info Screen timeout if there's any input
  2609. * - Update status indicators, if any
  2610. *
  2611. * Run the current LCD menu handler callback function:
  2612. * - Call the handler only if lcdDrawUpdate != LCDVIEW_NONE
  2613. * - Before calling the handler, LCDVIEW_CALL_NO_REDRAW => LCDVIEW_NONE
  2614. * - Call the menu handler. Menu handlers should do the following:
  2615. * - If a value changes, set lcdDrawUpdate to LCDVIEW_REDRAW_NOW and draw the value
  2616. * (Encoder events automatically set lcdDrawUpdate for you.)
  2617. * - if (lcdDrawUpdate) { redraw }
  2618. * - Before exiting the handler set lcdDrawUpdate to:
  2619. * - LCDVIEW_CLEAR_CALL_REDRAW to clear screen and set LCDVIEW_CALL_REDRAW_NEXT.
  2620. * - LCDVIEW_REDRAW_NOW or LCDVIEW_NONE to keep drawingm but only in this loop.
  2621. * - LCDVIEW_CALL_REDRAW_NEXT to keep drawing and draw on the next loop also.
  2622. * - LCDVIEW_CALL_NO_REDRAW to keep drawing (or start drawing) with no redraw on the next loop.
  2623. * - NOTE: For graphical displays menu handlers may be called 2 or more times per loop,
  2624. * so don't change lcdDrawUpdate without considering this.
  2625. *
  2626. * After the menu handler callback runs (or not):
  2627. * - Clear the LCD if lcdDrawUpdate == LCDVIEW_CLEAR_CALL_REDRAW
  2628. * - Update lcdDrawUpdate for the next loop (i.e., move one state down, usually)
  2629. *
  2630. * No worries. This function is only called from the main thread.
  2631. */
  2632. void lcd_update() {
  2633. #if ENABLED(ULTIPANEL)
  2634. static millis_t return_to_status_ms = 0;
  2635. manage_manual_move();
  2636. lcd_buttons_update();
  2637. // If the action button is pressed...
  2638. if (LCD_CLICKED) {
  2639. if (!wait_for_unclick) { // If not waiting for a debounce release:
  2640. wait_for_unclick = true; // Set debounce flag to ignore continous clicks
  2641. lcd_clicked = !wait_for_user; // Keep the click if not waiting for a user-click
  2642. wait_for_user = false; // Any click clears wait for user
  2643. lcd_quick_feedback(); // Always make a click sound
  2644. }
  2645. }
  2646. else wait_for_unclick = false;
  2647. #endif
  2648. #if ENABLED(SDSUPPORT) && PIN_EXISTS(SD_DETECT)
  2649. bool sd_status = IS_SD_INSERTED;
  2650. if (sd_status != lcd_sd_status && lcd_detected()) {
  2651. if (sd_status) {
  2652. card.initsd();
  2653. if (lcd_sd_status != 2) LCD_MESSAGEPGM(MSG_SD_INSERTED);
  2654. }
  2655. else {
  2656. card.release();
  2657. if (lcd_sd_status != 2) LCD_MESSAGEPGM(MSG_SD_REMOVED);
  2658. }
  2659. lcd_sd_status = sd_status;
  2660. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  2661. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  2662. #if ENABLED(LCD_PROGRESS_BAR)
  2663. currentScreen == lcd_status_screen
  2664. #endif
  2665. );
  2666. }
  2667. #endif //SDSUPPORT && SD_DETECT_PIN
  2668. millis_t ms = millis();
  2669. if (ELAPSED(ms, next_lcd_update_ms)
  2670. #if ENABLED(DOGLCD)
  2671. || drawing_screen
  2672. #endif
  2673. ) {
  2674. next_lcd_update_ms = ms + LCD_UPDATE_INTERVAL;
  2675. #if ENABLED(LCD_HAS_STATUS_INDICATORS)
  2676. lcd_implementation_update_indicators();
  2677. #endif
  2678. #if ENABLED(ULTIPANEL)
  2679. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  2680. slow_buttons = lcd_implementation_read_slow_buttons(); // buttons which take too long to read in interrupt context
  2681. #endif
  2682. #if ENABLED(REPRAPWORLD_KEYPAD)
  2683. handle_reprapworld_keypad();
  2684. #endif
  2685. bool encoderPastThreshold = (abs(encoderDiff) >= ENCODER_PULSES_PER_STEP);
  2686. if (encoderPastThreshold || lcd_clicked) {
  2687. if (encoderPastThreshold) {
  2688. int32_t encoderMultiplier = 1;
  2689. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  2690. if (encoderRateMultiplierEnabled) {
  2691. int32_t encoderMovementSteps = abs(encoderDiff) / ENCODER_PULSES_PER_STEP;
  2692. if (lastEncoderMovementMillis != 0) {
  2693. // Note that the rate is always calculated between to passes through the
  2694. // loop and that the abs of the encoderDiff value is tracked.
  2695. float encoderStepRate = (float)(encoderMovementSteps) / ((float)(ms - lastEncoderMovementMillis)) * 1000.0;
  2696. if (encoderStepRate >= ENCODER_100X_STEPS_PER_SEC) encoderMultiplier = 100;
  2697. else if (encoderStepRate >= ENCODER_10X_STEPS_PER_SEC) encoderMultiplier = 10;
  2698. #if ENABLED(ENCODER_RATE_MULTIPLIER_DEBUG)
  2699. SERIAL_ECHO_START;
  2700. SERIAL_ECHOPAIR("Enc Step Rate: ", encoderStepRate);
  2701. SERIAL_ECHOPAIR(" Multiplier: ", encoderMultiplier);
  2702. SERIAL_ECHOPAIR(" ENCODER_10X_STEPS_PER_SEC: ", ENCODER_10X_STEPS_PER_SEC);
  2703. SERIAL_ECHOPAIR(" ENCODER_100X_STEPS_PER_SEC: ", ENCODER_100X_STEPS_PER_SEC);
  2704. SERIAL_EOL;
  2705. #endif //ENCODER_RATE_MULTIPLIER_DEBUG
  2706. }
  2707. lastEncoderMovementMillis = ms;
  2708. } // encoderRateMultiplierEnabled
  2709. #endif //ENCODER_RATE_MULTIPLIER
  2710. encoderPosition += (encoderDiff * encoderMultiplier) / ENCODER_PULSES_PER_STEP;
  2711. encoderDiff = 0;
  2712. }
  2713. return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS;
  2714. lcdDrawUpdate =
  2715. #if ENABLED(DOGLCD)
  2716. LCDVIEW_CALL_REDRAW_NEXT
  2717. #else
  2718. LCDVIEW_REDRAW_NOW
  2719. #endif
  2720. ;
  2721. }
  2722. #endif // ULTIPANEL
  2723. // We arrive here every ~100ms when idling often enough.
  2724. // Instead of tracking the changes simply redraw the Info Screen ~1 time a second.
  2725. static int8_t lcd_status_update_delay = 1; // first update one loop delayed
  2726. if (
  2727. #if ENABLED(ULTIPANEL)
  2728. currentScreen == lcd_status_screen &&
  2729. #endif
  2730. !lcd_status_update_delay--
  2731. ) {
  2732. lcd_status_update_delay = 9
  2733. #if ENABLED(DOGLCD)
  2734. + 3
  2735. #endif
  2736. ;
  2737. max_display_update_time--;
  2738. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  2739. }
  2740. // then we want to use 1/2 of the time only.
  2741. uint16_t bbr2 = planner.block_buffer_runtime() >> 1;
  2742. #if ENABLED(DOGLCD)
  2743. if ((lcdDrawUpdate || drawing_screen) && (!bbr2 || (bbr2 > max_display_update_time)))
  2744. #else
  2745. if (lcdDrawUpdate && (!bbr2 || (bbr2 > max_display_update_time)))
  2746. #endif
  2747. {
  2748. #if ENABLED(DOGLCD)
  2749. if (!drawing_screen)
  2750. #endif
  2751. {
  2752. switch (lcdDrawUpdate) {
  2753. case LCDVIEW_CALL_NO_REDRAW:
  2754. lcdDrawUpdate = LCDVIEW_NONE;
  2755. break;
  2756. case LCDVIEW_CLEAR_CALL_REDRAW: // set by handlers, then altered after (rarely occurs here)
  2757. case LCDVIEW_CALL_REDRAW_NEXT: // set by handlers, then altered after (never occurs here?)
  2758. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  2759. case LCDVIEW_REDRAW_NOW: // set above, or by a handler through LCDVIEW_CALL_REDRAW_NEXT
  2760. case LCDVIEW_NONE:
  2761. break;
  2762. } // switch
  2763. }
  2764. #if ENABLED(ULTIPANEL)
  2765. #define CURRENTSCREEN() (*currentScreen)(), lcd_clicked = false
  2766. #else
  2767. #define CURRENTSCREEN() lcd_status_screen()
  2768. #endif
  2769. #if ENABLED(DOGLCD) // Changes due to different driver architecture of the DOGM display
  2770. if (!drawing_screen) {
  2771. u8g.firstPage();
  2772. drawing_screen = 1;
  2773. }
  2774. lcd_setFont(FONT_MENU);
  2775. u8g.setColorIndex(1);
  2776. CURRENTSCREEN();
  2777. if (drawing_screen && (drawing_screen = u8g.nextPage())) {
  2778. NOLESS(max_display_update_time, millis() - ms);
  2779. return;
  2780. }
  2781. #else
  2782. CURRENTSCREEN();
  2783. #endif
  2784. NOLESS(max_display_update_time, millis() - ms);
  2785. }
  2786. #if ENABLED(ULTIPANEL)
  2787. // Return to Status Screen after a timeout
  2788. if (currentScreen == lcd_status_screen || defer_return_to_status)
  2789. return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS;
  2790. else if (ELAPSED(ms, return_to_status_ms))
  2791. lcd_return_to_status();
  2792. #endif // ULTIPANEL
  2793. #if ENABLED(DOGLCD)
  2794. if (!drawing_screen)
  2795. #endif
  2796. {
  2797. switch (lcdDrawUpdate) {
  2798. case LCDVIEW_CLEAR_CALL_REDRAW:
  2799. lcd_implementation_clear();
  2800. case LCDVIEW_CALL_REDRAW_NEXT:
  2801. lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
  2802. break;
  2803. case LCDVIEW_REDRAW_NOW:
  2804. lcdDrawUpdate = LCDVIEW_NONE;
  2805. break;
  2806. case LCDVIEW_NONE:
  2807. break;
  2808. } // switch
  2809. }
  2810. } // ELAPSED(ms, next_lcd_update_ms)
  2811. }
  2812. void set_utf_strlen(char* s, uint8_t n) {
  2813. uint8_t i = 0, j = 0;
  2814. while (s[i] && (j < n)) {
  2815. #if ENABLED(MAPPER_NON)
  2816. j++;
  2817. #else
  2818. if ((s[i] & 0xC0u) != 0x80u) j++;
  2819. #endif
  2820. i++;
  2821. }
  2822. while (j++ < n) s[i++] = ' ';
  2823. s[i] = '\0';
  2824. }
  2825. void lcd_finishstatus(bool persist=false) {
  2826. set_utf_strlen(lcd_status_message, LCD_WIDTH);
  2827. #if !(ENABLED(LCD_PROGRESS_BAR) && (PROGRESS_MSG_EXPIRE > 0))
  2828. UNUSED(persist);
  2829. #endif
  2830. #if ENABLED(LCD_PROGRESS_BAR)
  2831. progress_bar_ms = millis();
  2832. #if PROGRESS_MSG_EXPIRE > 0
  2833. expire_status_ms = persist ? 0 : progress_bar_ms + PROGRESS_MSG_EXPIRE;
  2834. #endif
  2835. #endif
  2836. lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW;
  2837. #if ENABLED(FILAMENT_LCD_DISPLAY)
  2838. previous_lcd_status_ms = millis(); //get status message to show up for a while
  2839. #endif
  2840. }
  2841. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  2842. void dontExpireStatus() { expire_status_ms = 0; }
  2843. #endif
  2844. bool lcd_hasstatus() { return (lcd_status_message[0] != '\0'); }
  2845. void lcd_setstatus(const char* const message, bool persist) {
  2846. if (lcd_status_message_level > 0) return;
  2847. strncpy(lcd_status_message, message, 3 * (LCD_WIDTH));
  2848. lcd_finishstatus(persist);
  2849. }
  2850. void lcd_setstatuspgm(const char* const message, uint8_t level) {
  2851. if (level < lcd_status_message_level) return;
  2852. lcd_status_message_level = level;
  2853. strncpy_P(lcd_status_message, message, 3 * (LCD_WIDTH));
  2854. lcd_finishstatus(level > 0);
  2855. }
  2856. void lcd_setalertstatuspgm(const char* const message) {
  2857. lcd_setstatuspgm(message, 1);
  2858. #if ENABLED(ULTIPANEL)
  2859. lcd_return_to_status();
  2860. #endif
  2861. }
  2862. void lcd_reset_alert_level() { lcd_status_message_level = 0; }
  2863. #if HAS_LCD_CONTRAST
  2864. void set_lcd_contrast(const int value) {
  2865. lcd_contrast = constrain(value, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX);
  2866. u8g.setContrast(lcd_contrast);
  2867. }
  2868. #endif
  2869. #if ENABLED(ULTIPANEL)
  2870. /**
  2871. * Setup Rotary Encoder Bit Values (for two pin encoders to indicate movement)
  2872. * These values are independent of which pins are used for EN_A and EN_B indications
  2873. * The rotary encoder part is also independent to the chipset used for the LCD
  2874. */
  2875. #if defined(EN_A) && defined(EN_B)
  2876. #define encrot0 0
  2877. #define encrot1 2
  2878. #define encrot2 3
  2879. #define encrot3 1
  2880. #endif
  2881. #define GET_BUTTON_STATES(DST) \
  2882. uint8_t new_##DST = 0; \
  2883. WRITE(SHIFT_LD, LOW); \
  2884. WRITE(SHIFT_LD, HIGH); \
  2885. for (int8_t i = 0; i < 8; i++) { \
  2886. new_##DST >>= 1; \
  2887. if (READ(SHIFT_OUT)) SBI(new_##DST, 7); \
  2888. WRITE(SHIFT_CLK, HIGH); \
  2889. WRITE(SHIFT_CLK, LOW); \
  2890. } \
  2891. DST = ~new_##DST; //invert it, because a pressed switch produces a logical 0
  2892. /**
  2893. * Read encoder buttons from the hardware registers
  2894. * Warning: This function is called from interrupt context!
  2895. */
  2896. void lcd_buttons_update() {
  2897. millis_t now = millis();
  2898. if (ELAPSED(now, next_button_update_ms)) {
  2899. #if ENABLED(NEWPANEL)
  2900. uint8_t newbutton = 0;
  2901. #if BUTTON_EXISTS(EN1)
  2902. if (BUTTON_PRESSED(EN1)) newbutton |= EN_A;
  2903. #endif
  2904. #if BUTTON_EXISTS(EN2)
  2905. if (BUTTON_PRESSED(EN2)) newbutton |= EN_B;
  2906. #endif
  2907. #if BUTTON_EXISTS(ENC)
  2908. if (BUTTON_PRESSED(ENC)) newbutton |= EN_C;
  2909. #endif
  2910. #if LCD_HAS_DIRECTIONAL_BUTTONS
  2911. // Manage directional buttons
  2912. #if ENABLED(REVERSE_MENU_DIRECTION)
  2913. #define _ENCODER_UD_STEPS (ENCODER_STEPS_PER_MENU_ITEM * encoderDirection)
  2914. #else
  2915. #define _ENCODER_UD_STEPS ENCODER_STEPS_PER_MENU_ITEM
  2916. #endif
  2917. #if ENABLED(REVERSE_ENCODER_DIRECTION)
  2918. #define ENCODER_UD_STEPS _ENCODER_UD_STEPS
  2919. #define ENCODER_LR_PULSES ENCODER_PULSES_PER_STEP
  2920. #else
  2921. #define ENCODER_UD_STEPS -(_ENCODER_UD_STEPS)
  2922. #define ENCODER_LR_PULSES -(ENCODER_PULSES_PER_STEP)
  2923. #endif
  2924. if (false) {
  2925. // for the else-ifs below
  2926. }
  2927. #if BUTTON_EXISTS(UP)
  2928. else if (BUTTON_PRESSED(UP)) {
  2929. encoderDiff = -(ENCODER_UD_STEPS);
  2930. next_button_update_ms = now + 300;
  2931. }
  2932. #endif
  2933. #if BUTTON_EXISTS(DWN)
  2934. else if (BUTTON_PRESSED(DWN)) {
  2935. encoderDiff = ENCODER_UD_STEPS;
  2936. next_button_update_ms = now + 300;
  2937. }
  2938. #endif
  2939. #if BUTTON_EXISTS(LFT)
  2940. else if (BUTTON_PRESSED(LFT)) {
  2941. encoderDiff = -(ENCODER_LR_PULSES);
  2942. next_button_update_ms = now + 300;
  2943. }
  2944. #endif
  2945. #if BUTTON_EXISTS(RT)
  2946. else if (BUTTON_PRESSED(RT)) {
  2947. encoderDiff = ENCODER_LR_PULSES;
  2948. next_button_update_ms = now + 300;
  2949. }
  2950. #endif
  2951. #endif // LCD_HAS_DIRECTIONAL_BUTTONS
  2952. buttons = newbutton;
  2953. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  2954. buttons |= slow_buttons;
  2955. #endif
  2956. #if ENABLED(REPRAPWORLD_KEYPAD)
  2957. GET_BUTTON_STATES(buttons_reprapworld_keypad);
  2958. #endif
  2959. #else
  2960. GET_BUTTON_STATES(buttons);
  2961. #endif //!NEWPANEL
  2962. } // next_button_update_ms
  2963. // Manage encoder rotation
  2964. #if ENABLED(REVERSE_MENU_DIRECTION) && ENABLED(REVERSE_ENCODER_DIRECTION)
  2965. #define ENCODER_DIFF_CW (encoderDiff -= encoderDirection)
  2966. #define ENCODER_DIFF_CCW (encoderDiff += encoderDirection)
  2967. #elif ENABLED(REVERSE_MENU_DIRECTION)
  2968. #define ENCODER_DIFF_CW (encoderDiff += encoderDirection)
  2969. #define ENCODER_DIFF_CCW (encoderDiff -= encoderDirection)
  2970. #elif ENABLED(REVERSE_ENCODER_DIRECTION)
  2971. #define ENCODER_DIFF_CW (encoderDiff--)
  2972. #define ENCODER_DIFF_CCW (encoderDiff++)
  2973. #else
  2974. #define ENCODER_DIFF_CW (encoderDiff++)
  2975. #define ENCODER_DIFF_CCW (encoderDiff--)
  2976. #endif
  2977. #define ENCODER_SPIN(_E1, _E2) switch (lastEncoderBits) { case _E1: ENCODER_DIFF_CW; break; case _E2: ENCODER_DIFF_CCW; }
  2978. uint8_t enc = 0;
  2979. if (buttons & EN_A) enc |= B01;
  2980. if (buttons & EN_B) enc |= B10;
  2981. if (enc != lastEncoderBits) {
  2982. switch (enc) {
  2983. case encrot0: ENCODER_SPIN(encrot3, encrot1); break;
  2984. case encrot1: ENCODER_SPIN(encrot0, encrot2); break;
  2985. case encrot2: ENCODER_SPIN(encrot1, encrot3); break;
  2986. case encrot3: ENCODER_SPIN(encrot2, encrot0); break;
  2987. }
  2988. }
  2989. lastEncoderBits = enc;
  2990. }
  2991. #if (ENABLED(LCD_I2C_TYPE_MCP23017) || ENABLED(LCD_I2C_TYPE_MCP23008)) && ENABLED(DETECT_DEVICE)
  2992. bool lcd_detected() { return lcd.LcdDetected() == 1; }
  2993. #else
  2994. bool lcd_detected() { return true; }
  2995. #endif
  2996. #endif // ULTIPANEL
  2997. #endif // ULTRA_LCD