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

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