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

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