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

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