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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208
  1. #include "ultralcd.h"
  2. #if ENABLED(ULTRA_LCD)
  3. #include "Marlin.h"
  4. #include "language.h"
  5. #include "cardreader.h"
  6. #include "temperature.h"
  7. #include "stepper.h"
  8. #include "configuration_store.h"
  9. int8_t encoderDiff; // updated from interrupt context and added to encoderPosition every LCD update
  10. bool encoderRateMultiplierEnabled;
  11. int32_t lastEncoderMovementMillis;
  12. int plaPreheatHotendTemp;
  13. int plaPreheatHPBTemp;
  14. int plaPreheatFanSpeed;
  15. int absPreheatHotendTemp;
  16. int absPreheatHPBTemp;
  17. int absPreheatFanSpeed;
  18. #if ENABLED(FILAMENT_LCD_DISPLAY)
  19. millis_t previous_lcd_status_ms = 0;
  20. #endif
  21. // Function pointer to menu functions.
  22. typedef void (*menuFunc_t)();
  23. uint8_t lcd_status_message_level;
  24. char lcd_status_message[3*LCD_WIDTH+1] = WELCOME_MSG; // worst case is kana with up to 3*LCD_WIDTH+1
  25. #if ENABLED(DOGLCD)
  26. #include "dogm_lcd_implementation.h"
  27. #else
  28. #include "ultralcd_implementation_hitachi_HD44780.h"
  29. #endif
  30. // The main status screen
  31. static void lcd_status_screen();
  32. #if ENABLED(ULTIPANEL)
  33. #if HAS_POWER_SWITCH
  34. extern bool powersupply;
  35. #endif
  36. const float manual_feedrate[] = MANUAL_FEEDRATE;
  37. static void lcd_main_menu();
  38. static void lcd_tune_menu();
  39. static void lcd_prepare_menu();
  40. static void lcd_move_menu();
  41. static void lcd_control_menu();
  42. static void lcd_control_temperature_menu();
  43. static void lcd_control_temperature_preheat_pla_settings_menu();
  44. static void lcd_control_temperature_preheat_abs_settings_menu();
  45. static void lcd_control_motion_menu();
  46. static void lcd_control_volumetric_menu();
  47. #if ENABLED(HAS_LCD_CONTRAST)
  48. static void lcd_set_contrast();
  49. #endif
  50. #if ENABLED(FWRETRACT)
  51. static void lcd_control_retract_menu();
  52. #endif
  53. #if ENABLED(DELTA_CALIBRATION_MENU)
  54. static void lcd_delta_calibrate_menu();
  55. #endif
  56. #if ENABLED(MANUAL_BED_LEVELING)
  57. #include "mesh_bed_leveling.h"
  58. static void _lcd_level_bed();
  59. static void _lcd_level_bed_homing();
  60. static void lcd_level_bed();
  61. #endif
  62. /* Different types of actions that can be used in menu items. */
  63. static void menu_action_back(menuFunc_t data);
  64. static void menu_action_submenu(menuFunc_t data);
  65. static void menu_action_gcode(const char* pgcode);
  66. static void menu_action_function(menuFunc_t data);
  67. static void menu_action_setting_edit_bool(const char* pstr, bool* ptr);
  68. static void menu_action_setting_edit_int3(const char* pstr, int* ptr, int minValue, int maxValue);
  69. static void menu_action_setting_edit_float3(const char* pstr, float* ptr, float minValue, float maxValue);
  70. static void menu_action_setting_edit_float32(const char* pstr, float* ptr, float minValue, float maxValue);
  71. static void menu_action_setting_edit_float43(const char* pstr, float* ptr, float minValue, float maxValue);
  72. static void menu_action_setting_edit_float5(const char* pstr, float* ptr, float minValue, float maxValue);
  73. static void menu_action_setting_edit_float51(const char* pstr, float* ptr, float minValue, float maxValue);
  74. static void menu_action_setting_edit_float52(const char* pstr, float* ptr, float minValue, float maxValue);
  75. static void menu_action_setting_edit_long5(const char* pstr, unsigned long* ptr, unsigned long minValue, unsigned long maxValue);
  76. static void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, menuFunc_t callbackFunc);
  77. static void menu_action_setting_edit_callback_int3(const char* pstr, int* ptr, int minValue, int maxValue, menuFunc_t callbackFunc);
  78. static void menu_action_setting_edit_callback_float3(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  79. static void menu_action_setting_edit_callback_float32(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  80. static void menu_action_setting_edit_callback_float43(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  81. static void menu_action_setting_edit_callback_float5(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  82. static void menu_action_setting_edit_callback_float51(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  83. static void menu_action_setting_edit_callback_float52(const char* pstr, float* ptr, float minValue, float maxValue, menuFunc_t callbackFunc);
  84. static void menu_action_setting_edit_callback_long5(const char* pstr, unsigned long* ptr, unsigned long minValue, unsigned long maxValue, menuFunc_t callbackFunc);
  85. #if ENABLED(SDSUPPORT)
  86. static void lcd_sdcard_menu();
  87. static void menu_action_sdfile(const char* filename, char* longFilename);
  88. static void menu_action_sddirectory(const char* filename, char* longFilename);
  89. #endif
  90. #define ENCODER_FEEDRATE_DEADZONE 10
  91. #if DISABLED(LCD_I2C_VIKI)
  92. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  93. #define ENCODER_STEPS_PER_MENU_ITEM 5
  94. #endif
  95. #ifndef ENCODER_PULSES_PER_STEP
  96. #define ENCODER_PULSES_PER_STEP 1
  97. #endif
  98. #else
  99. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  100. #define ENCODER_STEPS_PER_MENU_ITEM 2 // VIKI LCD rotary encoder uses a different number of steps per rotation
  101. #endif
  102. #ifndef ENCODER_PULSES_PER_STEP
  103. #define ENCODER_PULSES_PER_STEP 1
  104. #endif
  105. #endif
  106. /* Helper macros for menus */
  107. /**
  108. * START_MENU generates the init code for a menu function
  109. */
  110. #define START_MENU() do { \
  111. encoderRateMultiplierEnabled = false; \
  112. if (encoderPosition > 0x8000) encoderPosition = 0; \
  113. uint8_t encoderLine = encoderPosition / ENCODER_STEPS_PER_MENU_ITEM; \
  114. if (encoderLine < currentMenuViewOffset) currentMenuViewOffset = encoderLine; \
  115. uint8_t _lineNr = currentMenuViewOffset, _menuItemNr; \
  116. bool wasClicked = LCD_CLICKED, itemSelected; \
  117. for (uint8_t _drawLineNr = 0; _drawLineNr < LCD_HEIGHT; _drawLineNr++, _lineNr++) { \
  118. _menuItemNr = 0;
  119. /**
  120. * MENU_ITEM generates draw & handler code for a menu item, potentially calling:
  121. *
  122. * lcd_implementation_drawmenu_[type](sel, row, label, arg3...)
  123. * menu_action_[type](arg3...)
  124. *
  125. * Examples:
  126. * MENU_ITEM(back, MSG_WATCH, lcd_status_screen)
  127. * lcd_implementation_drawmenu_back(sel, row, PSTR(MSG_WATCH), lcd_status_screen)
  128. * menu_action_back(lcd_status_screen)
  129. *
  130. * MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause)
  131. * lcd_implementation_drawmenu_function(sel, row, PSTR(MSG_PAUSE_PRINT), lcd_sdcard_pause)
  132. * menu_action_function(lcd_sdcard_pause)
  133. *
  134. * MENU_ITEM_EDIT(int3, MSG_SPEED, &feedrate_multiplier, 10, 999)
  135. * MENU_ITEM(setting_edit_int3, MSG_SPEED, PSTR(MSG_SPEED), &feedrate_multiplier, 10, 999)
  136. * lcd_implementation_drawmenu_setting_edit_int3(sel, row, PSTR(MSG_SPEED), PSTR(MSG_SPEED), &feedrate_multiplier, 10, 999)
  137. * menu_action_setting_edit_int3(PSTR(MSG_SPEED), &feedrate_multiplier, 10, 999)
  138. *
  139. */
  140. #define MENU_ITEM(type, label, args...) do { \
  141. if (_menuItemNr == _lineNr) { \
  142. itemSelected = encoderLine == _menuItemNr; \
  143. if (lcdDrawUpdate) \
  144. lcd_implementation_drawmenu_ ## type(itemSelected, _drawLineNr, PSTR(label), ## args); \
  145. if (wasClicked && itemSelected) { \
  146. lcd_quick_feedback(); \
  147. menu_action_ ## type(args); \
  148. return; \
  149. } \
  150. } \
  151. _menuItemNr++; \
  152. } while(0)
  153. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  154. //#define ENCODER_RATE_MULTIPLIER_DEBUG // If defined, output the encoder steps per second value
  155. /**
  156. * MENU_MULTIPLIER_ITEM generates drawing and handling code for a multiplier menu item
  157. */
  158. #define MENU_MULTIPLIER_ITEM(type, label, args...) do { \
  159. if (_menuItemNr == _lineNr) { \
  160. itemSelected = encoderLine == _menuItemNr; \
  161. if (lcdDrawUpdate) \
  162. lcd_implementation_drawmenu_ ## type(itemSelected, _drawLineNr, PSTR(label), ## args); \
  163. if (wasClicked && itemSelected) { \
  164. lcd_quick_feedback(); \
  165. encoderRateMultiplierEnabled = true; \
  166. lastEncoderMovementMillis = 0; \
  167. menu_action_ ## type(args); \
  168. return; \
  169. } \
  170. } \
  171. _menuItemNr++; \
  172. } while(0)
  173. #endif //ENCODER_RATE_MULTIPLIER
  174. #define MENU_ITEM_DUMMY() do { _menuItemNr++; } while(0)
  175. #define MENU_ITEM_EDIT(type, label, args...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label), ## args)
  176. #define MENU_ITEM_EDIT_CALLBACK(type, label, args...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## args)
  177. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  178. #define MENU_MULTIPLIER_ITEM_EDIT(type, label, args...) MENU_MULTIPLIER_ITEM(setting_edit_ ## type, label, PSTR(label), ## args)
  179. #define MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(type, label, args...) MENU_MULTIPLIER_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## args)
  180. #else //!ENCODER_RATE_MULTIPLIER
  181. #define MENU_MULTIPLIER_ITEM_EDIT(type, label, args...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label), ## args)
  182. #define MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(type, label, args...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## args)
  183. #endif //!ENCODER_RATE_MULTIPLIER
  184. #define END_MENU() \
  185. if (encoderLine >= _menuItemNr) { encoderPosition = _menuItemNr * ENCODER_STEPS_PER_MENU_ITEM - 1; encoderLine = encoderPosition / ENCODER_STEPS_PER_MENU_ITEM; }\
  186. if (encoderLine >= currentMenuViewOffset + LCD_HEIGHT) { currentMenuViewOffset = encoderLine - LCD_HEIGHT + 1; lcdDrawUpdate = 1; _lineNr = currentMenuViewOffset - 1; _drawLineNr = -1; } \
  187. } } while(0)
  188. /** Used variables to keep track of the menu */
  189. volatile uint8_t buttons; //the last checked buttons in a bit array.
  190. #if ENABLED(REPRAPWORLD_KEYPAD)
  191. volatile uint8_t buttons_reprapworld_keypad; // to store the keypad shift register values
  192. #endif
  193. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  194. volatile uint8_t slow_buttons; // Bits of the pressed buttons.
  195. #endif
  196. uint8_t currentMenuViewOffset; /* scroll offset in the current menu */
  197. millis_t next_button_update_ms;
  198. uint8_t lastEncoderBits;
  199. uint32_t encoderPosition;
  200. #if PIN_EXISTS(SD_DETECT)
  201. uint8_t lcd_sd_status;
  202. #endif
  203. #endif // ULTIPANEL
  204. menuFunc_t currentMenu = lcd_status_screen; /* function pointer to the currently active menu */
  205. millis_t next_lcd_update_ms;
  206. uint8_t lcd_status_update_delay;
  207. bool ignore_click = false;
  208. bool wait_for_unclick;
  209. uint8_t lcdDrawUpdate = 2; /* Set to none-zero when the LCD needs to draw, decreased after every draw. Set to 2 in LCD routines so the LCD gets at least 1 full redraw (first redraw is partial) */
  210. //prevMenu and prevEncoderPosition are used to store the previous menu location when editing settings.
  211. menuFunc_t prevMenu = NULL;
  212. uint16_t prevEncoderPosition;
  213. //Variables used when editing values.
  214. const char* editLabel;
  215. void* editValue;
  216. int32_t minEditValue, maxEditValue;
  217. menuFunc_t callbackFunc;
  218. // place-holders for Ki and Kd edits
  219. float raw_Ki, raw_Kd;
  220. /**
  221. * General function to go directly to a menu
  222. */
  223. static void lcd_goto_menu(menuFunc_t menu, const bool feedback=false, const uint32_t encoder=0) {
  224. if (currentMenu != menu) {
  225. currentMenu = menu;
  226. #if ENABLED(NEWPANEL)
  227. encoderPosition = encoder;
  228. if (feedback) lcd_quick_feedback();
  229. #endif
  230. // For LCD_PROGRESS_BAR re-initialize the custom characters
  231. #if ENABLED(LCD_PROGRESS_BAR)
  232. lcd_set_custom_characters(menu == lcd_status_screen);
  233. #endif
  234. }
  235. }
  236. /**
  237. *
  238. * "Info Screen"
  239. *
  240. * This is very display-dependent, so the lcd implementation draws this.
  241. */
  242. static void lcd_status_screen() {
  243. encoderRateMultiplierEnabled = false;
  244. #if ENABLED(LCD_PROGRESS_BAR)
  245. millis_t ms = millis();
  246. #if DISABLED(PROGRESS_MSG_ONCE)
  247. if (ms > progress_bar_ms + PROGRESS_BAR_MSG_TIME + PROGRESS_BAR_BAR_TIME) {
  248. progress_bar_ms = ms;
  249. }
  250. #endif
  251. #if PROGRESS_MSG_EXPIRE > 0
  252. // Handle message expire
  253. if (expire_status_ms > 0) {
  254. #if ENABLED(SDSUPPORT)
  255. if (card.isFileOpen()) {
  256. // Expire the message when printing is active
  257. if (IS_SD_PRINTING) {
  258. if (ms >= expire_status_ms) {
  259. lcd_status_message[0] = '\0';
  260. expire_status_ms = 0;
  261. }
  262. }
  263. else {
  264. expire_status_ms += LCD_UPDATE_INTERVAL;
  265. }
  266. }
  267. else {
  268. expire_status_ms = 0;
  269. }
  270. #else
  271. expire_status_ms = 0;
  272. #endif //SDSUPPORT
  273. }
  274. #endif
  275. #endif //LCD_PROGRESS_BAR
  276. lcd_implementation_status_screen();
  277. #if ENABLED(ULTIPANEL)
  278. bool current_click = LCD_CLICKED;
  279. if (ignore_click) {
  280. if (wait_for_unclick) {
  281. if (!current_click)
  282. ignore_click = wait_for_unclick = false;
  283. else
  284. current_click = false;
  285. }
  286. else if (current_click) {
  287. lcd_quick_feedback();
  288. wait_for_unclick = true;
  289. current_click = false;
  290. }
  291. }
  292. if (current_click) {
  293. lcd_goto_menu(lcd_main_menu, true);
  294. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  295. #if ENABLED(LCD_PROGRESS_BAR)
  296. currentMenu == lcd_status_screen
  297. #endif
  298. );
  299. #if ENABLED(FILAMENT_LCD_DISPLAY)
  300. previous_lcd_status_ms = millis(); // get status message to show up for a while
  301. #endif
  302. }
  303. #if ENABLED(ULTIPANEL_FEEDMULTIPLY)
  304. // Dead zone at 100% feedrate
  305. if ((feedrate_multiplier < 100 && (feedrate_multiplier + int(encoderPosition)) > 100) ||
  306. (feedrate_multiplier > 100 && (feedrate_multiplier + int(encoderPosition)) < 100)) {
  307. encoderPosition = 0;
  308. feedrate_multiplier = 100;
  309. }
  310. if (feedrate_multiplier == 100) {
  311. if (int(encoderPosition) > ENCODER_FEEDRATE_DEADZONE) {
  312. feedrate_multiplier += int(encoderPosition) - ENCODER_FEEDRATE_DEADZONE;
  313. encoderPosition = 0;
  314. }
  315. else if (int(encoderPosition) < -ENCODER_FEEDRATE_DEADZONE) {
  316. feedrate_multiplier += int(encoderPosition) + ENCODER_FEEDRATE_DEADZONE;
  317. encoderPosition = 0;
  318. }
  319. }
  320. else {
  321. feedrate_multiplier += int(encoderPosition);
  322. encoderPosition = 0;
  323. }
  324. #endif // ULTIPANEL_FEEDMULTIPLY
  325. feedrate_multiplier = constrain(feedrate_multiplier, 10, 999);
  326. #endif //ULTIPANEL
  327. }
  328. #if ENABLED(ULTIPANEL)
  329. static void lcd_return_to_status() { lcd_goto_menu(lcd_status_screen); }
  330. #if ENABLED(SDSUPPORT)
  331. static void lcd_sdcard_pause() { card.pauseSDPrint(); }
  332. static void lcd_sdcard_resume() { card.startFileprint(); }
  333. static void lcd_sdcard_stop() {
  334. quickStop();
  335. card.sdprinting = false;
  336. card.closefile();
  337. autotempShutdown();
  338. cancel_heatup = true;
  339. lcd_setstatus(MSG_PRINT_ABORTED, true);
  340. }
  341. #endif //SDSUPPORT
  342. /**
  343. *
  344. * "Main" menu
  345. *
  346. */
  347. static void lcd_main_menu() {
  348. START_MENU();
  349. MENU_ITEM(back, MSG_WATCH, lcd_status_screen);
  350. if (movesplanned() || IS_SD_PRINTING) {
  351. MENU_ITEM(submenu, MSG_TUNE, lcd_tune_menu);
  352. }
  353. else {
  354. MENU_ITEM(submenu, MSG_PREPARE, lcd_prepare_menu);
  355. #if ENABLED(DELTA_CALIBRATION_MENU)
  356. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE, lcd_delta_calibrate_menu);
  357. #endif
  358. }
  359. MENU_ITEM(submenu, MSG_CONTROL, lcd_control_menu);
  360. #if ENABLED(SDSUPPORT)
  361. if (card.cardOK) {
  362. if (card.isFileOpen()) {
  363. if (card.sdprinting)
  364. MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause);
  365. else
  366. MENU_ITEM(function, MSG_RESUME_PRINT, lcd_sdcard_resume);
  367. MENU_ITEM(function, MSG_STOP_PRINT, lcd_sdcard_stop);
  368. }
  369. else {
  370. MENU_ITEM(submenu, MSG_CARD_MENU, lcd_sdcard_menu);
  371. #if !PIN_EXISTS(SD_DETECT)
  372. MENU_ITEM(gcode, MSG_CNG_SDCARD, PSTR("M21")); // SD-card changed by user
  373. #endif
  374. }
  375. }
  376. else {
  377. MENU_ITEM(submenu, MSG_NO_CARD, lcd_sdcard_menu);
  378. #if !PIN_EXISTS(SD_DETECT)
  379. MENU_ITEM(gcode, MSG_INIT_SDCARD, PSTR("M21")); // Manually initialize the SD-card via user interface
  380. #endif
  381. }
  382. #endif //SDSUPPORT
  383. END_MENU();
  384. }
  385. #if ENABLED(SDSUPPORT) && ENABLED(MENU_ADDAUTOSTART)
  386. static void lcd_autostart_sd() {
  387. card.autostart_index = 0;
  388. card.setroot();
  389. card.checkautostart(true);
  390. }
  391. #endif
  392. /**
  393. * Set the home offset based on the current_position
  394. */
  395. void lcd_set_home_offsets() {
  396. // M428 Command
  397. enqueuecommands_P(PSTR("M428"));
  398. lcd_return_to_status();
  399. }
  400. #if ENABLED(BABYSTEPPING)
  401. static void _lcd_babystep(int axis, const char *msg) {
  402. if (encoderPosition != 0) {
  403. babystepsTodo[axis] += (int)encoderPosition;
  404. encoderPosition = 0;
  405. lcdDrawUpdate = 1;
  406. }
  407. if (lcdDrawUpdate) lcd_implementation_drawedit(msg, "");
  408. if (LCD_CLICKED) lcd_goto_menu(lcd_tune_menu);
  409. }
  410. static void lcd_babystep_x() { _lcd_babystep(X_AXIS, PSTR(MSG_BABYSTEPPING_X)); }
  411. static void lcd_babystep_y() { _lcd_babystep(Y_AXIS, PSTR(MSG_BABYSTEPPING_Y)); }
  412. static void lcd_babystep_z() { _lcd_babystep(Z_AXIS, PSTR(MSG_BABYSTEPPING_Z)); }
  413. #endif //BABYSTEPPING
  414. /**
  415. *
  416. * "Tune" submenu
  417. *
  418. */
  419. static void lcd_tune_menu() {
  420. START_MENU();
  421. //
  422. // ^ Main
  423. //
  424. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  425. //
  426. // Speed:
  427. //
  428. MENU_ITEM_EDIT(int3, MSG_SPEED, &feedrate_multiplier, 10, 999);
  429. //
  430. // Nozzle:
  431. // Nozzle 1:
  432. // Nozzle 2:
  433. // Nozzle 3:
  434. // Nozzle 4:
  435. //
  436. #if EXTRUDERS == 1
  437. #if TEMP_SENSOR_0 != 0
  438. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
  439. #endif
  440. #else //EXTRUDERS > 1
  441. #if TEMP_SENSOR_0 != 0
  442. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N1, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
  443. #endif
  444. #if TEMP_SENSOR_1 != 0
  445. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N2, &target_temperature[1], 0, HEATER_1_MAXTEMP - 15);
  446. #endif
  447. #if EXTRUDERS > 2
  448. #if TEMP_SENSOR_2 != 0
  449. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N3, &target_temperature[2], 0, HEATER_2_MAXTEMP - 15);
  450. #endif
  451. #if EXTRUDERS > 3
  452. #if TEMP_SENSOR_3 != 0
  453. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N4, &target_temperature[3], 0, HEATER_3_MAXTEMP - 15);
  454. #endif
  455. #endif //EXTRUDERS > 3
  456. #endif //EXTRUDERS > 2
  457. #endif //EXTRUDERS > 1
  458. //
  459. // Bed:
  460. //
  461. #if TEMP_SENSOR_BED != 0
  462. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);
  463. #endif
  464. //
  465. // Fan Speed:
  466. //
  467. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
  468. //
  469. // Flow:
  470. //
  471. MENU_ITEM_EDIT(int3, MSG_FLOW, &extruder_multiplier[active_extruder], 10, 999);
  472. //
  473. // Flow:
  474. // Flow 1:
  475. // Flow 2:
  476. // Flow 3:
  477. // Flow 4:
  478. //
  479. #if EXTRUDERS == 1
  480. MENU_ITEM_EDIT(int3, MSG_FLOW, &extruder_multiplier[0], 10, 999);
  481. #else // EXTRUDERS > 1
  482. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N1, &extruder_multiplier[0], 10, 999);
  483. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N2, &extruder_multiplier[1], 10, 999);
  484. #if EXTRUDERS > 2
  485. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N3, &extruder_multiplier[2], 10, 999);
  486. #if EXTRUDERS > 3
  487. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N4, &extruder_multiplier[3], 10, 999);
  488. #endif //EXTRUDERS > 3
  489. #endif //EXTRUDERS > 2
  490. #endif //EXTRUDERS > 1
  491. //
  492. // Babystep X:
  493. // Babystep Y:
  494. // Babystep Z:
  495. //
  496. #if ENABLED(BABYSTEPPING)
  497. #if ENABLED(BABYSTEP_XY)
  498. MENU_ITEM(submenu, MSG_BABYSTEP_X, lcd_babystep_x);
  499. MENU_ITEM(submenu, MSG_BABYSTEP_Y, lcd_babystep_y);
  500. #endif //BABYSTEP_XY
  501. MENU_ITEM(submenu, MSG_BABYSTEP_Z, lcd_babystep_z);
  502. #endif
  503. //
  504. // Change filament
  505. //
  506. #if ENABLED(FILAMENTCHANGEENABLE)
  507. MENU_ITEM(gcode, MSG_FILAMENTCHANGE, PSTR("M600"));
  508. #endif
  509. END_MENU();
  510. }
  511. void _lcd_preheat(int endnum, const float temph, const float tempb, const int fan) {
  512. if (temph > 0) setTargetHotend(temph, endnum);
  513. #if TEMP_SENSOR_BED != 0
  514. setTargetBed(tempb);
  515. #endif
  516. fanSpeed = fan;
  517. lcd_return_to_status();
  518. }
  519. #if TEMP_SENSOR_0 != 0
  520. void lcd_preheat_pla0() { _lcd_preheat(0, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  521. void lcd_preheat_abs0() { _lcd_preheat(0, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  522. #endif
  523. #if EXTRUDERS > 1
  524. void lcd_preheat_pla1() { _lcd_preheat(1, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  525. void lcd_preheat_abs1() { _lcd_preheat(1, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  526. #if EXTRUDERS > 2
  527. void lcd_preheat_pla2() { _lcd_preheat(2, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  528. void lcd_preheat_abs2() { _lcd_preheat(2, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  529. #if EXTRUDERS > 3
  530. void lcd_preheat_pla3() { _lcd_preheat(3, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  531. void lcd_preheat_abs3() { _lcd_preheat(3, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  532. #endif
  533. #endif
  534. void lcd_preheat_pla0123() {
  535. setTargetHotend0(plaPreheatHotendTemp);
  536. setTargetHotend1(plaPreheatHotendTemp);
  537. setTargetHotend2(plaPreheatHotendTemp);
  538. _lcd_preheat(3, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed);
  539. }
  540. void lcd_preheat_abs0123() {
  541. setTargetHotend0(absPreheatHotendTemp);
  542. setTargetHotend1(absPreheatHotendTemp);
  543. setTargetHotend2(absPreheatHotendTemp);
  544. _lcd_preheat(3, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed);
  545. }
  546. #endif // EXTRUDERS > 1
  547. #if TEMP_SENSOR_BED != 0
  548. void lcd_preheat_pla_bedonly() { _lcd_preheat(0, 0, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  549. void lcd_preheat_abs_bedonly() { _lcd_preheat(0, 0, absPreheatHPBTemp, absPreheatFanSpeed); }
  550. #endif
  551. #if TEMP_SENSOR_0 != 0 && (TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_BED != 0)
  552. static void lcd_preheat_pla_menu() {
  553. START_MENU();
  554. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  555. #if EXTRUDERS == 1
  556. MENU_ITEM(function, MSG_PREHEAT_PLA, lcd_preheat_pla0);
  557. #else
  558. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H1, lcd_preheat_pla0);
  559. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H2, lcd_preheat_pla1);
  560. #if EXTRUDERS > 2
  561. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H3, lcd_preheat_pla2);
  562. #if EXTRUDERS > 3
  563. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H4, lcd_preheat_pla3);
  564. #endif
  565. #endif
  566. MENU_ITEM(function, MSG_PREHEAT_PLA_ALL, lcd_preheat_pla0123);
  567. #endif
  568. #if TEMP_SENSOR_BED != 0
  569. MENU_ITEM(function, MSG_PREHEAT_PLA_BEDONLY, lcd_preheat_pla_bedonly);
  570. #endif
  571. END_MENU();
  572. }
  573. static void lcd_preheat_abs_menu() {
  574. START_MENU();
  575. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  576. #if EXTRUDERS == 1
  577. MENU_ITEM(function, MSG_PREHEAT_ABS, lcd_preheat_abs0);
  578. #else
  579. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H1, lcd_preheat_abs0);
  580. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H2, lcd_preheat_abs1);
  581. #if EXTRUDERS > 2
  582. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H3, lcd_preheat_abs2);
  583. #if EXTRUDERS > 3
  584. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H4, lcd_preheat_abs3);
  585. #endif
  586. #endif
  587. MENU_ITEM(function, MSG_PREHEAT_ABS_ALL, lcd_preheat_abs0123);
  588. #endif
  589. #if TEMP_SENSOR_BED != 0
  590. MENU_ITEM(function, MSG_PREHEAT_ABS_BEDONLY, lcd_preheat_abs_bedonly);
  591. #endif
  592. END_MENU();
  593. }
  594. #endif // TEMP_SENSOR_0 && (TEMP_SENSOR_1 || TEMP_SENSOR_2 || TEMP_SENSOR_3 || TEMP_SENSOR_BED)
  595. void lcd_cooldown() {
  596. disable_all_heaters();
  597. fanSpeed = 0;
  598. lcd_return_to_status();
  599. }
  600. /**
  601. *
  602. * "Prepare" submenu
  603. *
  604. */
  605. static void lcd_prepare_menu() {
  606. START_MENU();
  607. //
  608. // ^ Main
  609. //
  610. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  611. //
  612. // Auto Home
  613. //
  614. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  615. //
  616. // Set Home Offsets
  617. //
  618. MENU_ITEM(function, MSG_SET_HOME_OFFSETS, lcd_set_home_offsets);
  619. //MENU_ITEM(gcode, MSG_SET_ORIGIN, PSTR("G92 X0 Y0 Z0"));
  620. //
  621. // Level Bed
  622. //
  623. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  624. if (axis_known_position[X_AXIS] && axis_known_position[Y_AXIS])
  625. MENU_ITEM(gcode, MSG_LEVEL_BED, PSTR("G29"));
  626. #elif ENABLED(MANUAL_BED_LEVELING)
  627. MENU_ITEM(submenu, MSG_LEVEL_BED, lcd_level_bed);
  628. #endif
  629. //
  630. // Move Axis
  631. //
  632. MENU_ITEM(submenu, MSG_MOVE_AXIS, lcd_move_menu);
  633. //
  634. // Disable Steppers
  635. //
  636. MENU_ITEM(gcode, MSG_DISABLE_STEPPERS, PSTR("M84"));
  637. //
  638. // Preheat PLA
  639. // Preheat ABS
  640. //
  641. #if TEMP_SENSOR_0 != 0
  642. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 || TEMP_SENSOR_BED != 0
  643. MENU_ITEM(submenu, MSG_PREHEAT_PLA, lcd_preheat_pla_menu);
  644. MENU_ITEM(submenu, MSG_PREHEAT_ABS, lcd_preheat_abs_menu);
  645. #else
  646. MENU_ITEM(function, MSG_PREHEAT_PLA, lcd_preheat_pla0);
  647. MENU_ITEM(function, MSG_PREHEAT_ABS, lcd_preheat_abs0);
  648. #endif
  649. #endif
  650. //
  651. // Cooldown
  652. //
  653. MENU_ITEM(function, MSG_COOLDOWN, lcd_cooldown);
  654. //
  655. // Switch power on/off
  656. //
  657. #if HAS_POWER_SWITCH
  658. if (powersupply)
  659. MENU_ITEM(gcode, MSG_SWITCH_PS_OFF, PSTR("M81"));
  660. else
  661. MENU_ITEM(gcode, MSG_SWITCH_PS_ON, PSTR("M80"));
  662. #endif
  663. //
  664. // Autostart
  665. //
  666. #if ENABLED(SDSUPPORT) && ENABLED(MENU_ADDAUTOSTART)
  667. MENU_ITEM(function, MSG_AUTOSTART, lcd_autostart_sd);
  668. #endif
  669. END_MENU();
  670. }
  671. #if ENABLED(DELTA_CALIBRATION_MENU)
  672. static void lcd_delta_calibrate_menu() {
  673. START_MENU();
  674. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  675. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  676. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_X, PSTR("G0 F8000 X-77.94 Y-45 Z0"));
  677. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_Y, PSTR("G0 F8000 X77.94 Y-45 Z0"));
  678. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_Z, PSTR("G0 F8000 X0 Y90 Z0"));
  679. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_CENTER, PSTR("G0 F8000 X0 Y0 Z0"));
  680. END_MENU();
  681. }
  682. #endif // DELTA_CALIBRATION_MENU
  683. inline void line_to_current(AxisEnum axis) {
  684. #if ENABLED(DELTA)
  685. calculate_delta(current_position);
  686. plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS], manual_feedrate[axis]/60, active_extruder);
  687. #else
  688. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[axis]/60, active_extruder);
  689. #endif
  690. }
  691. /**
  692. *
  693. * "Prepare" > "Move Axis" submenu
  694. *
  695. */
  696. float move_menu_scale;
  697. static void lcd_move_menu_axis();
  698. static void _lcd_move(const char *name, AxisEnum axis, int min, int max) {
  699. if (encoderPosition != 0) {
  700. refresh_cmd_timeout();
  701. current_position[axis] += float((int)encoderPosition) * move_menu_scale;
  702. if (min_software_endstops && current_position[axis] < min) current_position[axis] = min;
  703. if (max_software_endstops && current_position[axis] > max) current_position[axis] = max;
  704. encoderPosition = 0;
  705. line_to_current(axis);
  706. lcdDrawUpdate = 1;
  707. }
  708. if (lcdDrawUpdate) lcd_implementation_drawedit(name, ftostr31(current_position[axis]));
  709. if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
  710. }
  711. static void lcd_move_x() { _lcd_move(PSTR(MSG_MOVE_X), X_AXIS, X_MIN_POS, X_MAX_POS); }
  712. static void lcd_move_y() { _lcd_move(PSTR(MSG_MOVE_Y), Y_AXIS, Y_MIN_POS, Y_MAX_POS); }
  713. static void lcd_move_z() { _lcd_move(PSTR(MSG_MOVE_Z), Z_AXIS, Z_MIN_POS, Z_MAX_POS); }
  714. static void lcd_move_e(
  715. #if EXTRUDERS > 1
  716. uint8_t e
  717. #endif
  718. ) {
  719. #if EXTRUDERS > 1
  720. unsigned short original_active_extruder = active_extruder;
  721. active_extruder = e;
  722. #endif
  723. if (encoderPosition != 0) {
  724. current_position[E_AXIS] += float((int)encoderPosition) * move_menu_scale;
  725. encoderPosition = 0;
  726. line_to_current(E_AXIS);
  727. lcdDrawUpdate = 1;
  728. }
  729. if (lcdDrawUpdate) {
  730. PGM_P pos_label;
  731. #if EXTRUDERS == 1
  732. pos_label = PSTR(MSG_MOVE_E);
  733. #else
  734. switch (e) {
  735. case 0: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E1); break;
  736. case 1: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E2); break;
  737. #if EXTRUDERS > 2
  738. case 2: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E3); break;
  739. #if EXTRUDERS > 3
  740. case 3: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E4); break;
  741. #endif //EXTRUDERS > 3
  742. #endif //EXTRUDERS > 2
  743. }
  744. #endif //EXTRUDERS > 1
  745. lcd_implementation_drawedit(pos_label, ftostr31(current_position[E_AXIS]));
  746. }
  747. if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
  748. #if EXTRUDERS > 1
  749. active_extruder = original_active_extruder;
  750. #endif
  751. }
  752. #if EXTRUDERS > 1
  753. static void lcd_move_e0() { lcd_move_e(0); }
  754. static void lcd_move_e1() { lcd_move_e(1); }
  755. #if EXTRUDERS > 2
  756. static void lcd_move_e2() { lcd_move_e(2); }
  757. #if EXTRUDERS > 3
  758. static void lcd_move_e3() { lcd_move_e(3); }
  759. #endif
  760. #endif
  761. #endif // EXTRUDERS > 1
  762. /**
  763. *
  764. * "Prepare" > "Move Xmm" > "Move XYZ" submenu
  765. *
  766. */
  767. static void lcd_move_menu_axis() {
  768. START_MENU();
  769. MENU_ITEM(back, MSG_MOVE_AXIS, lcd_move_menu);
  770. MENU_ITEM(submenu, MSG_MOVE_X, lcd_move_x);
  771. MENU_ITEM(submenu, MSG_MOVE_Y, lcd_move_y);
  772. if (move_menu_scale < 10.0) {
  773. MENU_ITEM(submenu, MSG_MOVE_Z, lcd_move_z);
  774. #if EXTRUDERS == 1
  775. MENU_ITEM(submenu, MSG_MOVE_E, lcd_move_e);
  776. #else
  777. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E1, lcd_move_e0);
  778. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E2, lcd_move_e1);
  779. #if EXTRUDERS > 2
  780. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E3, lcd_move_e2);
  781. #if EXTRUDERS > 3
  782. MENU_ITEM(submenu, MSG_MOVE_E MSG_MOVE_E4, lcd_move_e3);
  783. #endif
  784. #endif
  785. #endif // EXTRUDERS > 1
  786. }
  787. END_MENU();
  788. }
  789. static void lcd_move_menu_10mm() {
  790. move_menu_scale = 10.0;
  791. lcd_move_menu_axis();
  792. }
  793. static void lcd_move_menu_1mm() {
  794. move_menu_scale = 1.0;
  795. lcd_move_menu_axis();
  796. }
  797. static void lcd_move_menu_01mm() {
  798. move_menu_scale = 0.1;
  799. lcd_move_menu_axis();
  800. }
  801. /**
  802. *
  803. * "Prepare" > "Move Axis" submenu
  804. *
  805. */
  806. static void lcd_move_menu() {
  807. START_MENU();
  808. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  809. MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm);
  810. MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm);
  811. MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm);
  812. //TODO:X,Y,Z,E
  813. END_MENU();
  814. }
  815. /**
  816. *
  817. * "Control" submenu
  818. *
  819. */
  820. static void lcd_control_menu() {
  821. START_MENU();
  822. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  823. MENU_ITEM(submenu, MSG_TEMPERATURE, lcd_control_temperature_menu);
  824. MENU_ITEM(submenu, MSG_MOTION, lcd_control_motion_menu);
  825. MENU_ITEM(submenu, MSG_VOLUMETRIC, lcd_control_volumetric_menu);
  826. #if ENABLED(HAS_LCD_CONTRAST)
  827. //MENU_ITEM_EDIT(int3, MSG_CONTRAST, &lcd_contrast, 0, 63);
  828. MENU_ITEM(submenu, MSG_CONTRAST, lcd_set_contrast);
  829. #endif
  830. #if ENABLED(FWRETRACT)
  831. MENU_ITEM(submenu, MSG_RETRACT, lcd_control_retract_menu);
  832. #endif
  833. #if ENABLED(EEPROM_SETTINGS)
  834. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  835. MENU_ITEM(function, MSG_LOAD_EPROM, Config_RetrieveSettings);
  836. #endif
  837. MENU_ITEM(function, MSG_RESTORE_FAILSAFE, Config_ResetDefault);
  838. END_MENU();
  839. }
  840. /**
  841. *
  842. * "Temperature" submenu
  843. *
  844. */
  845. #if ENABLED(PIDTEMP)
  846. // Helpers for editing PID Ki & Kd values
  847. // grab the PID value out of the temp variable; scale it; then update the PID driver
  848. void copy_and_scalePID_i(int e) {
  849. PID_PARAM(Ki, e) = scalePID_i(raw_Ki);
  850. updatePID();
  851. }
  852. void copy_and_scalePID_d(int e) {
  853. PID_PARAM(Kd, e) = scalePID_d(raw_Kd);
  854. updatePID();
  855. }
  856. #define COPY_AND_SCALE(eindex) \
  857. void copy_and_scalePID_i_E ## eindex() { copy_and_scalePID_i(eindex); } \
  858. void copy_and_scalePID_d_E ## eindex() { copy_and_scalePID_d(eindex); }
  859. COPY_AND_SCALE(0);
  860. #if ENABLED(PID_PARAMS_PER_EXTRUDER)
  861. #if EXTRUDERS > 1
  862. COPY_AND_SCALE(1);
  863. #if EXTRUDERS > 2
  864. COPY_AND_SCALE(2);
  865. #if EXTRUDERS > 3
  866. COPY_AND_SCALE(3);
  867. #endif //EXTRUDERS > 3
  868. #endif //EXTRUDERS > 2
  869. #endif //EXTRUDERS > 1
  870. #endif //PID_PARAMS_PER_EXTRUDER
  871. #endif //PIDTEMP
  872. /**
  873. *
  874. * "Control" > "Temperature" submenu
  875. *
  876. */
  877. static void lcd_control_temperature_menu() {
  878. START_MENU();
  879. //
  880. // ^ Control
  881. //
  882. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  883. //
  884. // Nozzle
  885. // Nozzle 1, Nozzle 2, Nozzle 3, Nozzle 4
  886. //
  887. #if EXTRUDERS == 1
  888. #if TEMP_SENSOR_0 != 0
  889. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
  890. #endif
  891. #else //EXTRUDERS > 1
  892. #if TEMP_SENSOR_0 != 0
  893. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N1, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
  894. #endif
  895. #if TEMP_SENSOR_1 != 0
  896. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N2, &target_temperature[1], 0, HEATER_1_MAXTEMP - 15);
  897. #endif
  898. #if EXTRUDERS > 2
  899. #if TEMP_SENSOR_2 != 0
  900. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N3, &target_temperature[2], 0, HEATER_2_MAXTEMP - 15);
  901. #endif
  902. #if EXTRUDERS > 3
  903. #if TEMP_SENSOR_3 != 0
  904. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N4, &target_temperature[3], 0, HEATER_3_MAXTEMP - 15);
  905. #endif
  906. #endif // EXTRUDERS > 3
  907. #endif // EXTRUDERS > 2
  908. #endif // EXTRUDERS > 1
  909. //
  910. // Bed
  911. //
  912. #if TEMP_SENSOR_BED != 0
  913. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);
  914. #endif
  915. //
  916. // Fan Speed
  917. //
  918. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
  919. //
  920. // Autotemp, Min, Max, Fact
  921. //
  922. #if ENABLED(AUTOTEMP) && (TEMP_SENSOR_0 != 0)
  923. MENU_ITEM_EDIT(bool, MSG_AUTOTEMP, &autotemp_enabled);
  924. MENU_ITEM_EDIT(float3, MSG_MIN, &autotemp_min, 0, HEATER_0_MAXTEMP - 15);
  925. MENU_ITEM_EDIT(float3, MSG_MAX, &autotemp_max, 0, HEATER_0_MAXTEMP - 15);
  926. MENU_ITEM_EDIT(float32, MSG_FACTOR, &autotemp_factor, 0.0, 1.0);
  927. #endif
  928. //
  929. // PID-P, PID-I, PID-D, PID-C
  930. // PID-P E1, PID-I E1, PID-D E1, PID-C E1
  931. // PID-P E2, PID-I E2, PID-D E2, PID-C E2
  932. // PID-P E3, PID-I E3, PID-D E3, PID-C E3
  933. // PID-P E4, PID-I E4, PID-D E4, PID-C E4
  934. //
  935. #if ENABLED(PIDTEMP)
  936. #define _PID_MENU_ITEMS(ELABEL, eindex) \
  937. raw_Ki = unscalePID_i(PID_PARAM(Ki, eindex)); \
  938. raw_Kd = unscalePID_d(PID_PARAM(Kd, eindex)); \
  939. MENU_ITEM_EDIT(float52, MSG_PID_P ELABEL, &PID_PARAM(Kp, eindex), 1, 9990); \
  940. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I ELABEL, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E ## eindex); \
  941. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D ELABEL, &raw_Kd, 1, 9990, copy_and_scalePID_d_E ## eindex)
  942. #if ENABLED(PID_ADD_EXTRUSION_RATE)
  943. #define PID_MENU_ITEMS(ELABEL, eindex) \
  944. _PID_MENU_ITEMS(ELABEL, eindex); \
  945. MENU_ITEM_EDIT(float3, MSG_PID_C ELABEL, &PID_PARAM(Kc, eindex), 1, 9990)
  946. #else
  947. #define PID_MENU_ITEMS(ELABEL, eindex) _PID_MENU_ITEMS(ELABEL, eindex)
  948. #endif
  949. #if ENABLED(PID_PARAMS_PER_EXTRUDER) && EXTRUDERS > 1
  950. PID_MENU_ITEMS(MSG_E1, 0);
  951. PID_MENU_ITEMS(MSG_E2, 1);
  952. #if EXTRUDERS > 2
  953. PID_MENU_ITEMS(MSG_E3, 2);
  954. #if EXTRUDERS > 3
  955. PID_MENU_ITEMS(MSG_E4, 3);
  956. #endif //EXTRUDERS > 3
  957. #endif //EXTRUDERS > 2
  958. #else //!PID_PARAMS_PER_EXTRUDER || EXTRUDERS == 1
  959. PID_MENU_ITEMS("", 0);
  960. #endif //!PID_PARAMS_PER_EXTRUDER || EXTRUDERS == 1
  961. #endif //PIDTEMP
  962. //
  963. // Preheat PLA conf
  964. //
  965. MENU_ITEM(submenu, MSG_PREHEAT_PLA_SETTINGS, lcd_control_temperature_preheat_pla_settings_menu);
  966. //
  967. // Preheat ABS conf
  968. //
  969. MENU_ITEM(submenu, MSG_PREHEAT_ABS_SETTINGS, lcd_control_temperature_preheat_abs_settings_menu);
  970. END_MENU();
  971. }
  972. /**
  973. *
  974. * "Temperature" > "Preheat PLA conf" submenu
  975. *
  976. */
  977. static void lcd_control_temperature_preheat_pla_settings_menu() {
  978. START_MENU();
  979. MENU_ITEM(back, MSG_TEMPERATURE, lcd_control_temperature_menu);
  980. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &plaPreheatFanSpeed, 0, 255);
  981. #if TEMP_SENSOR_0 != 0
  982. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &plaPreheatHotendTemp, HEATER_0_MINTEMP, HEATER_0_MAXTEMP - 15);
  983. #endif
  984. #if TEMP_SENSOR_BED != 0
  985. MENU_ITEM_EDIT(int3, MSG_BED, &plaPreheatHPBTemp, BED_MINTEMP, BED_MAXTEMP - 15);
  986. #endif
  987. #if ENABLED(EEPROM_SETTINGS)
  988. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  989. #endif
  990. END_MENU();
  991. }
  992. /**
  993. *
  994. * "Temperature" > "Preheat ABS conf" submenu
  995. *
  996. */
  997. static void lcd_control_temperature_preheat_abs_settings_menu() {
  998. START_MENU();
  999. MENU_ITEM(back, MSG_TEMPERATURE, lcd_control_temperature_menu);
  1000. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &absPreheatFanSpeed, 0, 255);
  1001. #if TEMP_SENSOR_0 != 0
  1002. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &absPreheatHotendTemp, HEATER_0_MINTEMP, HEATER_0_MAXTEMP - 15);
  1003. #endif
  1004. #if TEMP_SENSOR_BED != 0
  1005. MENU_ITEM_EDIT(int3, MSG_BED, &absPreheatHPBTemp, BED_MINTEMP, BED_MAXTEMP - 15);
  1006. #endif
  1007. #if ENABLED(EEPROM_SETTINGS)
  1008. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  1009. #endif
  1010. END_MENU();
  1011. }
  1012. /**
  1013. *
  1014. * "Control" > "Motion" submenu
  1015. *
  1016. */
  1017. static void lcd_control_motion_menu() {
  1018. START_MENU();
  1019. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  1020. #if ENABLED(AUTO_BED_LEVELING_FEATURE)
  1021. MENU_ITEM_EDIT(float32, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, Z_PROBE_OFFSET_RANGE_MIN, Z_PROBE_OFFSET_RANGE_MAX);
  1022. #endif
  1023. MENU_ITEM_EDIT(float5, MSG_ACC, &acceleration, 10, 99000);
  1024. MENU_ITEM_EDIT(float3, MSG_VXY_JERK, &max_xy_jerk, 1, 990);
  1025. MENU_ITEM_EDIT(float52, MSG_VZ_JERK, &max_z_jerk, 0.1, 990);
  1026. MENU_ITEM_EDIT(float3, MSG_VE_JERK, &max_e_jerk, 1, 990);
  1027. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_X, &max_feedrate[X_AXIS], 1, 999);
  1028. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Y, &max_feedrate[Y_AXIS], 1, 999);
  1029. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Z, &max_feedrate[Z_AXIS], 1, 999);
  1030. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E, &max_feedrate[E_AXIS], 1, 999);
  1031. MENU_ITEM_EDIT(float3, MSG_VMIN, &minimumfeedrate, 0, 999);
  1032. MENU_ITEM_EDIT(float3, MSG_VTRAV_MIN, &mintravelfeedrate, 0, 999);
  1033. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_X, &max_acceleration_units_per_sq_second[X_AXIS], 100, 99000, reset_acceleration_rates);
  1034. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Y, &max_acceleration_units_per_sq_second[Y_AXIS], 100, 99000, reset_acceleration_rates);
  1035. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Z, &max_acceleration_units_per_sq_second[Z_AXIS], 10, 99000, reset_acceleration_rates);
  1036. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E, &max_acceleration_units_per_sq_second[E_AXIS], 100, 99000, reset_acceleration_rates);
  1037. MENU_ITEM_EDIT(float5, MSG_A_RETRACT, &retract_acceleration, 100, 99000);
  1038. MENU_ITEM_EDIT(float5, MSG_A_TRAVEL, &travel_acceleration, 100, 99000);
  1039. MENU_ITEM_EDIT(float52, MSG_XSTEPS, &axis_steps_per_unit[X_AXIS], 5, 9999);
  1040. MENU_ITEM_EDIT(float52, MSG_YSTEPS, &axis_steps_per_unit[Y_AXIS], 5, 9999);
  1041. MENU_ITEM_EDIT(float51, MSG_ZSTEPS, &axis_steps_per_unit[Z_AXIS], 5, 9999);
  1042. MENU_ITEM_EDIT(float51, MSG_ESTEPS, &axis_steps_per_unit[E_AXIS], 5, 9999);
  1043. #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED)
  1044. MENU_ITEM_EDIT(bool, MSG_ENDSTOP_ABORT, &abort_on_endstop_hit);
  1045. #endif
  1046. #if ENABLED(SCARA)
  1047. MENU_ITEM_EDIT(float74, MSG_XSCALE, &axis_scaling[X_AXIS],0.5,2);
  1048. MENU_ITEM_EDIT(float74, MSG_YSCALE, &axis_scaling[Y_AXIS],0.5,2);
  1049. #endif
  1050. END_MENU();
  1051. }
  1052. /**
  1053. *
  1054. * "Control" > "Filament" submenu
  1055. *
  1056. */
  1057. static void lcd_control_volumetric_menu() {
  1058. START_MENU();
  1059. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  1060. MENU_ITEM_EDIT_CALLBACK(bool, MSG_VOLUMETRIC_ENABLED, &volumetric_enabled, calculate_volumetric_multipliers);
  1061. if (volumetric_enabled) {
  1062. #if EXTRUDERS == 1
  1063. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM, &filament_size[0], 1.5, 3.25, calculate_volumetric_multipliers);
  1064. #else //EXTRUDERS > 1
  1065. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E1, &filament_size[0], 1.5, 3.25, calculate_volumetric_multipliers);
  1066. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E2, &filament_size[1], 1.5, 3.25, calculate_volumetric_multipliers);
  1067. #if EXTRUDERS > 2
  1068. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E3, &filament_size[2], 1.5, 3.25, calculate_volumetric_multipliers);
  1069. #if EXTRUDERS > 3
  1070. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_DIAM MSG_DIAM_E4, &filament_size[3], 1.5, 3.25, calculate_volumetric_multipliers);
  1071. #endif //EXTRUDERS > 3
  1072. #endif //EXTRUDERS > 2
  1073. #endif //EXTRUDERS > 1
  1074. }
  1075. END_MENU();
  1076. }
  1077. /**
  1078. *
  1079. * "Control" > "Contrast" submenu
  1080. *
  1081. */
  1082. #if ENABLED(HAS_LCD_CONTRAST)
  1083. static void lcd_set_contrast() {
  1084. if (encoderPosition != 0) {
  1085. #if ENABLED(U8GLIB_LM6059_AF)
  1086. lcd_contrast += encoderPosition;
  1087. lcd_contrast &= 0xFF;
  1088. #else
  1089. lcd_contrast -= encoderPosition;
  1090. lcd_contrast &= 0x3F;
  1091. #endif
  1092. encoderPosition = 0;
  1093. lcdDrawUpdate = 1;
  1094. u8g.setContrast(lcd_contrast);
  1095. }
  1096. if (lcdDrawUpdate) {
  1097. #if ENABLED(U8GLIB_LM6059_AF)
  1098. lcd_implementation_drawedit(PSTR(MSG_CONTRAST), itostr3(lcd_contrast));
  1099. #else
  1100. lcd_implementation_drawedit(PSTR(MSG_CONTRAST), itostr2(lcd_contrast));
  1101. #endif
  1102. }
  1103. if (LCD_CLICKED) lcd_goto_menu(lcd_control_menu);
  1104. }
  1105. #endif // HAS_LCD_CONTRAST
  1106. /**
  1107. *
  1108. * "Control" > "Retract" submenu
  1109. *
  1110. */
  1111. #if ENABLED(FWRETRACT)
  1112. static void lcd_control_retract_menu() {
  1113. START_MENU();
  1114. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  1115. MENU_ITEM_EDIT(bool, MSG_AUTORETRACT, &autoretract_enabled);
  1116. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT, &retract_length, 0, 100);
  1117. #if EXTRUDERS > 1
  1118. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_SWAP, &retract_length_swap, 0, 100);
  1119. #endif
  1120. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACTF, &retract_feedrate, 1, 999);
  1121. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_ZLIFT, &retract_zlift, 0, 999);
  1122. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER, &retract_recover_length, 0, 100);
  1123. #if EXTRUDERS > 1
  1124. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER_SWAP, &retract_recover_length_swap, 0, 100);
  1125. #endif
  1126. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACT_RECOVERF, &retract_recover_feedrate, 1, 999);
  1127. END_MENU();
  1128. }
  1129. #endif // FWRETRACT
  1130. #if ENABLED(SDSUPPORT)
  1131. #if !PIN_EXISTS(SD_DETECT)
  1132. static void lcd_sd_refresh() {
  1133. card.initsd();
  1134. currentMenuViewOffset = 0;
  1135. }
  1136. #endif
  1137. static void lcd_sd_updir() {
  1138. card.updir();
  1139. currentMenuViewOffset = 0;
  1140. }
  1141. /**
  1142. *
  1143. * "Print from SD" submenu
  1144. *
  1145. */
  1146. void lcd_sdcard_menu() {
  1147. if (lcdDrawUpdate == 0 && LCD_CLICKED == 0) return; // nothing to do (so don't thrash the SD card)
  1148. uint16_t fileCnt = card.getnrfilenames();
  1149. START_MENU();
  1150. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  1151. card.getWorkDirName();
  1152. if (card.filename[0] == '/') {
  1153. #if !PIN_EXISTS(SD_DETECT)
  1154. MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
  1155. #endif
  1156. }
  1157. else {
  1158. MENU_ITEM(function, LCD_STR_FOLDER "..", lcd_sd_updir);
  1159. }
  1160. for (uint16_t i = 0; i < fileCnt; i++) {
  1161. if (_menuItemNr == _lineNr) {
  1162. card.getfilename(
  1163. #if ENABLED(SDCARD_RATHERRECENTFIRST)
  1164. fileCnt-1 -
  1165. #endif
  1166. i
  1167. );
  1168. if (card.filenameIsDir)
  1169. MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
  1170. else
  1171. MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
  1172. }
  1173. else {
  1174. MENU_ITEM_DUMMY();
  1175. }
  1176. }
  1177. END_MENU();
  1178. }
  1179. #endif //SDSUPPORT
  1180. /**
  1181. *
  1182. * Functions for editing single values
  1183. *
  1184. */
  1185. #define menu_edit_type(_type, _name, _strFunc, scale) \
  1186. bool _menu_edit_ ## _name () { \
  1187. bool isClicked = LCD_CLICKED; \
  1188. if ((int32_t)encoderPosition < 0) encoderPosition = 0; \
  1189. if ((int32_t)encoderPosition > maxEditValue) encoderPosition = maxEditValue; \
  1190. if (lcdDrawUpdate) \
  1191. lcd_implementation_drawedit(editLabel, _strFunc(((_type)((int32_t)encoderPosition + minEditValue)) / scale)); \
  1192. if (isClicked) { \
  1193. *((_type*)editValue) = ((_type)((int32_t)encoderPosition + minEditValue)) / scale; \
  1194. lcd_goto_menu(prevMenu, prevEncoderPosition); \
  1195. } \
  1196. return isClicked; \
  1197. } \
  1198. void menu_edit_ ## _name () { _menu_edit_ ## _name(); } \
  1199. void menu_edit_callback_ ## _name () { if (_menu_edit_ ## _name ()) (*callbackFunc)(); } \
  1200. static void _menu_action_setting_edit_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue) { \
  1201. prevMenu = currentMenu; \
  1202. prevEncoderPosition = encoderPosition; \
  1203. \
  1204. lcdDrawUpdate = 2; \
  1205. currentMenu = menu_edit_ ## _name; \
  1206. \
  1207. editLabel = pstr; \
  1208. editValue = ptr; \
  1209. minEditValue = minValue * scale; \
  1210. maxEditValue = maxValue * scale - minEditValue; \
  1211. encoderPosition = (*ptr) * scale - minEditValue; \
  1212. } \
  1213. static void menu_action_setting_edit_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue) { \
  1214. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  1215. currentMenu = menu_edit_ ## _name; \
  1216. }\
  1217. static void menu_action_setting_edit_callback_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue, menuFunc_t callback) { \
  1218. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  1219. currentMenu = menu_edit_callback_ ## _name; \
  1220. callbackFunc = callback; \
  1221. }
  1222. menu_edit_type(int, int3, itostr3, 1)
  1223. menu_edit_type(float, float3, ftostr3, 1)
  1224. menu_edit_type(float, float32, ftostr32, 100)
  1225. menu_edit_type(float, float43, ftostr43, 1000)
  1226. menu_edit_type(float, float5, ftostr5, 0.01)
  1227. menu_edit_type(float, float51, ftostr51, 10)
  1228. menu_edit_type(float, float52, ftostr52, 100)
  1229. menu_edit_type(unsigned long, long5, ftostr5, 0.01)
  1230. /**
  1231. *
  1232. * Handlers for RepRap World Keypad input
  1233. *
  1234. */
  1235. #if ENABLED(REPRAPWORLD_KEYPAD)
  1236. static void reprapworld_keypad_move_z_up() {
  1237. encoderPosition = 1;
  1238. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1239. lcd_move_z();
  1240. }
  1241. static void reprapworld_keypad_move_z_down() {
  1242. encoderPosition = -1;
  1243. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1244. lcd_move_z();
  1245. }
  1246. static void reprapworld_keypad_move_x_left() {
  1247. encoderPosition = -1;
  1248. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1249. lcd_move_x();
  1250. }
  1251. static void reprapworld_keypad_move_x_right() {
  1252. encoderPosition = 1;
  1253. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1254. lcd_move_x();
  1255. }
  1256. static void reprapworld_keypad_move_y_down() {
  1257. encoderPosition = 1;
  1258. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1259. lcd_move_y();
  1260. }
  1261. static void reprapworld_keypad_move_y_up() {
  1262. encoderPosition = -1;
  1263. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1264. lcd_move_y();
  1265. }
  1266. static void reprapworld_keypad_move_home() {
  1267. enqueuecommands_P((PSTR("G28"))); // move all axis home
  1268. }
  1269. #endif // REPRAPWORLD_KEYPAD
  1270. /**
  1271. *
  1272. * Audio feedback for controller clicks
  1273. *
  1274. */
  1275. #if ENABLED(LCD_USE_I2C_BUZZER)
  1276. void lcd_buzz(long duration, uint16_t freq) { // called from buzz() in Marlin_main.cpp where lcd is unknown
  1277. lcd.buzz(duration, freq);
  1278. }
  1279. #endif
  1280. void lcd_quick_feedback() {
  1281. lcdDrawUpdate = 2;
  1282. next_button_update_ms = millis() + 500;
  1283. #if ENABLED(LCD_USE_I2C_BUZZER)
  1284. #ifndef LCD_FEEDBACK_FREQUENCY_HZ
  1285. #define LCD_FEEDBACK_FREQUENCY_HZ 100
  1286. #endif
  1287. #ifndef LCD_FEEDBACK_FREQUENCY_DURATION_MS
  1288. #define LCD_FEEDBACK_FREQUENCY_DURATION_MS (1000/6)
  1289. #endif
  1290. lcd.buzz(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
  1291. #elif PIN_EXISTS(BEEPER)
  1292. #ifndef LCD_FEEDBACK_FREQUENCY_HZ
  1293. #define LCD_FEEDBACK_FREQUENCY_HZ 5000
  1294. #endif
  1295. #ifndef LCD_FEEDBACK_FREQUENCY_DURATION_MS
  1296. #define LCD_FEEDBACK_FREQUENCY_DURATION_MS 2
  1297. #endif
  1298. buzz(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
  1299. #else
  1300. #ifndef LCD_FEEDBACK_FREQUENCY_DURATION_MS
  1301. #define LCD_FEEDBACK_FREQUENCY_DURATION_MS 2
  1302. #endif
  1303. delay(LCD_FEEDBACK_FREQUENCY_DURATION_MS);
  1304. #endif
  1305. }
  1306. /**
  1307. *
  1308. * Menu actions
  1309. *
  1310. */
  1311. static void menu_action_back(menuFunc_t func) { lcd_goto_menu(func); }
  1312. static void menu_action_submenu(menuFunc_t func) { lcd_goto_menu(func); }
  1313. static void menu_action_gcode(const char* pgcode) { enqueuecommands_P(pgcode); }
  1314. static void menu_action_function(menuFunc_t func) { (*func)(); }
  1315. #if ENABLED(SDSUPPORT)
  1316. static void menu_action_sdfile(const char* filename, char* longFilename) {
  1317. char cmd[30];
  1318. char* c;
  1319. sprintf_P(cmd, PSTR("M23 %s"), filename);
  1320. for(c = &cmd[4]; *c; c++) *c = tolower(*c);
  1321. enqueuecommand(cmd);
  1322. enqueuecommands_P(PSTR("M24"));
  1323. lcd_return_to_status();
  1324. }
  1325. static void menu_action_sddirectory(const char* filename, char* longFilename) {
  1326. card.chdir(filename);
  1327. encoderPosition = 0;
  1328. }
  1329. #endif //SDSUPPORT
  1330. static void menu_action_setting_edit_bool(const char* pstr, bool* ptr) { *ptr = !(*ptr); }
  1331. static void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, menuFunc_t callback) {
  1332. menu_action_setting_edit_bool(pstr, ptr);
  1333. (*callback)();
  1334. }
  1335. #endif //ULTIPANEL
  1336. /** LCD API **/
  1337. void lcd_init() {
  1338. lcd_implementation_init();
  1339. #if ENABLED(NEWPANEL)
  1340. SET_INPUT(BTN_EN1);
  1341. SET_INPUT(BTN_EN2);
  1342. WRITE(BTN_EN1,HIGH);
  1343. WRITE(BTN_EN2,HIGH);
  1344. #if BTN_ENC > 0
  1345. SET_INPUT(BTN_ENC);
  1346. WRITE(BTN_ENC,HIGH);
  1347. #endif
  1348. #if ENABLED(REPRAPWORLD_KEYPAD)
  1349. pinMode(SHIFT_CLK,OUTPUT);
  1350. pinMode(SHIFT_LD,OUTPUT);
  1351. pinMode(SHIFT_OUT,INPUT);
  1352. WRITE(SHIFT_OUT,HIGH);
  1353. WRITE(SHIFT_LD,HIGH);
  1354. #endif
  1355. #else // Not NEWPANEL
  1356. #if ENABLED(SR_LCD_2W_NL) // Non latching 2 wire shift register
  1357. pinMode (SR_DATA_PIN, OUTPUT);
  1358. pinMode (SR_CLK_PIN, OUTPUT);
  1359. #elif defined(SHIFT_CLK)
  1360. pinMode(SHIFT_CLK,OUTPUT);
  1361. pinMode(SHIFT_LD,OUTPUT);
  1362. pinMode(SHIFT_EN,OUTPUT);
  1363. pinMode(SHIFT_OUT,INPUT);
  1364. WRITE(SHIFT_OUT,HIGH);
  1365. WRITE(SHIFT_LD,HIGH);
  1366. WRITE(SHIFT_EN,LOW);
  1367. #endif // SR_LCD_2W_NL
  1368. #endif//!NEWPANEL
  1369. #if ENABLED(SDSUPPORT) && PIN_EXISTS(SD_DETECT)
  1370. pinMode(SD_DETECT_PIN, INPUT);
  1371. WRITE(SD_DETECT_PIN, HIGH);
  1372. lcd_sd_status = 2; // UNKNOWN
  1373. #endif
  1374. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  1375. slow_buttons = 0;
  1376. #endif
  1377. lcd_buttons_update();
  1378. #if ENABLED(ULTIPANEL)
  1379. encoderDiff = 0;
  1380. #endif
  1381. }
  1382. int lcd_strlen(char *s) {
  1383. int i = 0, j = 0;
  1384. while (s[i]) {
  1385. if ((s[i] & 0xc0) != 0x80) j++;
  1386. i++;
  1387. }
  1388. return j;
  1389. }
  1390. int lcd_strlen_P(const char *s) {
  1391. int j = 0;
  1392. while (pgm_read_byte(s)) {
  1393. if ((pgm_read_byte(s) & 0xc0) != 0x80) j++;
  1394. s++;
  1395. }
  1396. return j;
  1397. }
  1398. /**
  1399. * Update the LCD, read encoder buttons, etc.
  1400. * - Read button states
  1401. * - Check the SD Card slot state
  1402. * - Act on RepRap World keypad input
  1403. * - Update the encoder position
  1404. * - Apply acceleration to the encoder position
  1405. * - Reset the Info Screen timeout if there's any input
  1406. * - Update status indicators, if any
  1407. * - Clear the LCD if lcdDrawUpdate == 2
  1408. *
  1409. * Warning: This function is called from interrupt context!
  1410. */
  1411. void lcd_update() {
  1412. #if ENABLED(ULTIPANEL)
  1413. static millis_t return_to_status_ms = 0;
  1414. #endif
  1415. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  1416. slow_buttons = lcd_implementation_read_slow_buttons(); // buttons which take too long to read in interrupt context
  1417. #endif
  1418. lcd_buttons_update();
  1419. #if ENABLED(SDSUPPORT) && PIN_EXISTS(SD_DETECT)
  1420. bool sd_status = IS_SD_INSERTED;
  1421. if (sd_status != lcd_sd_status && lcd_detected()) {
  1422. lcdDrawUpdate = 2;
  1423. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  1424. #if ENABLED(LCD_PROGRESS_BAR)
  1425. currentMenu == lcd_status_screen
  1426. #endif
  1427. );
  1428. if (sd_status) {
  1429. card.initsd();
  1430. if (lcd_sd_status != 2) LCD_MESSAGEPGM(MSG_SD_INSERTED);
  1431. }
  1432. else {
  1433. card.release();
  1434. if (lcd_sd_status != 2) LCD_MESSAGEPGM(MSG_SD_REMOVED);
  1435. }
  1436. lcd_sd_status = sd_status;
  1437. }
  1438. #endif //SDSUPPORT && SD_DETECT_PIN
  1439. millis_t ms = millis();
  1440. if (ms > next_lcd_update_ms) {
  1441. #if ENABLED(ULTIPANEL)
  1442. #if ENABLED(REPRAPWORLD_KEYPAD)
  1443. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) reprapworld_keypad_move_z_up();
  1444. if (REPRAPWORLD_KEYPAD_MOVE_Z_DOWN) reprapworld_keypad_move_z_down();
  1445. if (REPRAPWORLD_KEYPAD_MOVE_X_LEFT) reprapworld_keypad_move_x_left();
  1446. if (REPRAPWORLD_KEYPAD_MOVE_X_RIGHT) reprapworld_keypad_move_x_right();
  1447. if (REPRAPWORLD_KEYPAD_MOVE_Y_DOWN) reprapworld_keypad_move_y_down();
  1448. if (REPRAPWORLD_KEYPAD_MOVE_Y_UP) reprapworld_keypad_move_y_up();
  1449. if (REPRAPWORLD_KEYPAD_MOVE_HOME) reprapworld_keypad_move_home();
  1450. #endif
  1451. bool encoderPastThreshold = (abs(encoderDiff) >= ENCODER_PULSES_PER_STEP);
  1452. if (encoderPastThreshold || LCD_CLICKED) {
  1453. if (encoderPastThreshold) {
  1454. int32_t encoderMultiplier = 1;
  1455. #if ENABLED(ENCODER_RATE_MULTIPLIER)
  1456. if (encoderRateMultiplierEnabled) {
  1457. int32_t encoderMovementSteps = abs(encoderDiff) / ENCODER_PULSES_PER_STEP;
  1458. if (lastEncoderMovementMillis != 0) {
  1459. // Note that the rate is always calculated between to passes through the
  1460. // loop and that the abs of the encoderDiff value is tracked.
  1461. float encoderStepRate = (float)(encoderMovementSteps) / ((float)(ms - lastEncoderMovementMillis)) * 1000.0;
  1462. if (encoderStepRate >= ENCODER_100X_STEPS_PER_SEC) encoderMultiplier = 100;
  1463. else if (encoderStepRate >= ENCODER_10X_STEPS_PER_SEC) encoderMultiplier = 10;
  1464. #if ENABLED(ENCODER_RATE_MULTIPLIER_DEBUG)
  1465. SERIAL_ECHO_START;
  1466. SERIAL_ECHO("Enc Step Rate: ");
  1467. SERIAL_ECHO(encoderStepRate);
  1468. SERIAL_ECHO(" Multiplier: ");
  1469. SERIAL_ECHO(encoderMultiplier);
  1470. SERIAL_ECHO(" ENCODER_10X_STEPS_PER_SEC: ");
  1471. SERIAL_ECHO(ENCODER_10X_STEPS_PER_SEC);
  1472. SERIAL_ECHO(" ENCODER_100X_STEPS_PER_SEC: ");
  1473. SERIAL_ECHOLN(ENCODER_100X_STEPS_PER_SEC);
  1474. #endif //ENCODER_RATE_MULTIPLIER_DEBUG
  1475. }
  1476. lastEncoderMovementMillis = ms;
  1477. } // encoderRateMultiplierEnabled
  1478. #endif //ENCODER_RATE_MULTIPLIER
  1479. encoderPosition += (encoderDiff * encoderMultiplier) / ENCODER_PULSES_PER_STEP;
  1480. encoderDiff = 0;
  1481. }
  1482. return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS;
  1483. lcdDrawUpdate = 1;
  1484. }
  1485. #endif //ULTIPANEL
  1486. if (currentMenu == lcd_status_screen) {
  1487. if (!lcd_status_update_delay) {
  1488. lcdDrawUpdate = 1;
  1489. lcd_status_update_delay = 10; /* redraw the main screen every second. This is easier then trying keep track of all things that change on the screen */
  1490. }
  1491. else {
  1492. lcd_status_update_delay--;
  1493. }
  1494. }
  1495. #if ENABLED(DOGLCD) // Changes due to different driver architecture of the DOGM display
  1496. if (lcdDrawUpdate) {
  1497. blink++; // Variable for fan animation and alive dot
  1498. u8g.firstPage();
  1499. do {
  1500. lcd_setFont(FONT_MENU);
  1501. u8g.setPrintPos(125, 0);
  1502. if (blink % 2) u8g.setColorIndex(1); else u8g.setColorIndex(0); // Set color for the alive dot
  1503. u8g.drawPixel(127, 63); // draw alive dot
  1504. u8g.setColorIndex(1); // black on white
  1505. (*currentMenu)();
  1506. } while( u8g.nextPage() );
  1507. }
  1508. #else
  1509. (*currentMenu)();
  1510. #endif
  1511. #if ENABLED(LCD_HAS_STATUS_INDICATORS)
  1512. lcd_implementation_update_indicators();
  1513. #endif
  1514. #if ENABLED(ULTIPANEL)
  1515. // Return to Status Screen after a timeout
  1516. if (currentMenu != lcd_status_screen &&
  1517. #if ENABLED(MANUAL_BED_LEVELING)
  1518. currentMenu != _lcd_level_bed &&
  1519. currentMenu != _lcd_level_bed_homing &&
  1520. #endif
  1521. millis() > return_to_status_ms
  1522. ) {
  1523. lcd_return_to_status();
  1524. lcdDrawUpdate = 2;
  1525. }
  1526. #endif // ULTIPANEL
  1527. if (lcdDrawUpdate == 2) lcd_implementation_clear();
  1528. if (lcdDrawUpdate) lcdDrawUpdate--;
  1529. next_lcd_update_ms = ms + LCD_UPDATE_INTERVAL;
  1530. }
  1531. }
  1532. void lcd_ignore_click(bool b) {
  1533. ignore_click = b;
  1534. wait_for_unclick = false;
  1535. }
  1536. void lcd_finishstatus(bool persist=false) {
  1537. #if ENABLED(LCD_PROGRESS_BAR)
  1538. progress_bar_ms = millis();
  1539. #if PROGRESS_MSG_EXPIRE > 0
  1540. expire_status_ms = persist ? 0 : progress_bar_ms + PROGRESS_MSG_EXPIRE;
  1541. #endif
  1542. #endif
  1543. lcdDrawUpdate = 2;
  1544. #if ENABLED(FILAMENT_LCD_DISPLAY)
  1545. previous_lcd_status_ms = millis(); //get status message to show up for a while
  1546. #endif
  1547. }
  1548. #if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
  1549. void dontExpireStatus() { expire_status_ms = 0; }
  1550. #endif
  1551. void set_utf_strlen(char *s, uint8_t n) {
  1552. uint8_t i = 0, j = 0;
  1553. while (s[i] && (j < n)) {
  1554. if ((s[i] & 0xc0u) != 0x80u) j++;
  1555. i++;
  1556. }
  1557. while (j++ < n) s[i++] = ' ';
  1558. s[i] = 0;
  1559. }
  1560. bool lcd_hasstatus() { return (lcd_status_message[0] != '\0'); }
  1561. void lcd_setstatus(const char* message, bool persist) {
  1562. if (lcd_status_message_level > 0) return;
  1563. strncpy(lcd_status_message, message, 3*LCD_WIDTH);
  1564. set_utf_strlen(lcd_status_message, LCD_WIDTH);
  1565. lcd_finishstatus(persist);
  1566. }
  1567. void lcd_setstatuspgm(const char* message, uint8_t level) {
  1568. if (level >= lcd_status_message_level) {
  1569. strncpy_P(lcd_status_message, message, 3*LCD_WIDTH);
  1570. set_utf_strlen(lcd_status_message, LCD_WIDTH);
  1571. lcd_status_message_level = level;
  1572. lcd_finishstatus(level > 0);
  1573. }
  1574. }
  1575. void lcd_setalertstatuspgm(const char* message) {
  1576. lcd_setstatuspgm(message, 1);
  1577. #if ENABLED(ULTIPANEL)
  1578. lcd_return_to_status();
  1579. #endif
  1580. }
  1581. void lcd_reset_alert_level() { lcd_status_message_level = 0; }
  1582. #if ENABLED(HAS_LCD_CONTRAST)
  1583. void lcd_setcontrast(uint8_t value) {
  1584. lcd_contrast = value & 0x3F;
  1585. u8g.setContrast(lcd_contrast);
  1586. }
  1587. #endif
  1588. #if ENABLED(ULTIPANEL)
  1589. /**
  1590. * Setup Rotary Encoder Bit Values (for two pin encoders to indicate movement)
  1591. * These values are independent of which pins are used for EN_A and EN_B indications
  1592. * The rotary encoder part is also independent to the chipset used for the LCD
  1593. */
  1594. #if defined(EN_A) && defined(EN_B)
  1595. #define encrot0 0
  1596. #define encrot1 2
  1597. #define encrot2 3
  1598. #define encrot3 1
  1599. #endif
  1600. /**
  1601. * Read encoder buttons from the hardware registers
  1602. * Warning: This function is called from interrupt context!
  1603. */
  1604. void lcd_buttons_update() {
  1605. #if ENABLED(NEWPANEL)
  1606. uint8_t newbutton = 0;
  1607. if (READ(BTN_EN1) == 0) newbutton |= EN_A;
  1608. if (READ(BTN_EN2) == 0) newbutton |= EN_B;
  1609. #if BTN_ENC > 0
  1610. if (millis() > next_button_update_ms && READ(BTN_ENC) == 0) newbutton |= EN_C;
  1611. #endif
  1612. buttons = newbutton;
  1613. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  1614. buttons |= slow_buttons;
  1615. #endif
  1616. #if ENABLED(REPRAPWORLD_KEYPAD)
  1617. // for the reprapworld_keypad
  1618. uint8_t newbutton_reprapworld_keypad=0;
  1619. WRITE(SHIFT_LD, LOW);
  1620. WRITE(SHIFT_LD, HIGH);
  1621. for(int8_t i = 0; i < 8; i++) {
  1622. newbutton_reprapworld_keypad >>= 1;
  1623. if (READ(SHIFT_OUT)) newbutton_reprapworld_keypad |= BIT(7);
  1624. WRITE(SHIFT_CLK, HIGH);
  1625. WRITE(SHIFT_CLK, LOW);
  1626. }
  1627. buttons_reprapworld_keypad=~newbutton_reprapworld_keypad; //invert it, because a pressed switch produces a logical 0
  1628. #endif
  1629. #else //read it from the shift register
  1630. uint8_t newbutton = 0;
  1631. WRITE(SHIFT_LD, LOW);
  1632. WRITE(SHIFT_LD, HIGH);
  1633. unsigned char tmp_buttons = 0;
  1634. for(int8_t i=0; i<8; i++) {
  1635. newbutton >>= 1;
  1636. if (READ(SHIFT_OUT)) newbutton |= BIT(7);
  1637. WRITE(SHIFT_CLK, HIGH);
  1638. WRITE(SHIFT_CLK, LOW);
  1639. }
  1640. buttons = ~newbutton; //invert it, because a pressed switch produces a logical 0
  1641. #endif //!NEWPANEL
  1642. //manage encoder rotation
  1643. uint8_t enc=0;
  1644. if (buttons & EN_A) enc |= B01;
  1645. if (buttons & EN_B) enc |= B10;
  1646. if (enc != lastEncoderBits) {
  1647. switch(enc) {
  1648. case encrot0:
  1649. if (lastEncoderBits==encrot3) encoderDiff++;
  1650. else if (lastEncoderBits==encrot1) encoderDiff--;
  1651. break;
  1652. case encrot1:
  1653. if (lastEncoderBits==encrot0) encoderDiff++;
  1654. else if (lastEncoderBits==encrot2) encoderDiff--;
  1655. break;
  1656. case encrot2:
  1657. if (lastEncoderBits==encrot1) encoderDiff++;
  1658. else if (lastEncoderBits==encrot3) encoderDiff--;
  1659. break;
  1660. case encrot3:
  1661. if (lastEncoderBits==encrot2) encoderDiff++;
  1662. else if (lastEncoderBits==encrot0) encoderDiff--;
  1663. break;
  1664. }
  1665. }
  1666. lastEncoderBits = enc;
  1667. }
  1668. bool lcd_detected(void) {
  1669. #if (ENABLED(LCD_I2C_TYPE_MCP23017) || ENABLED(LCD_I2C_TYPE_MCP23008)) && ENABLED(DETECT_DEVICE)
  1670. return lcd.LcdDetected() == 1;
  1671. #else
  1672. return true;
  1673. #endif
  1674. }
  1675. bool lcd_clicked() { return LCD_CLICKED; }
  1676. #endif // ULTIPANEL
  1677. /*********************************/
  1678. /** Number to string conversion **/
  1679. /*********************************/
  1680. char conv[8];
  1681. // Convert float to string with +123.4 format
  1682. char *ftostr3(const float &x) {
  1683. return itostr3((int)x);
  1684. }
  1685. // Convert int to string with 12 format
  1686. char *itostr2(const uint8_t &x) {
  1687. //sprintf(conv,"%5.1f",x);
  1688. int xx = x;
  1689. conv[0] = (xx / 10) % 10 + '0';
  1690. conv[1] = xx % 10 + '0';
  1691. conv[2] = 0;
  1692. return conv;
  1693. }
  1694. // Convert float to string with +123.4 format
  1695. char *ftostr31(const float &x) {
  1696. int xx = abs(x * 10);
  1697. conv[0] = (x >= 0) ? '+' : '-';
  1698. conv[1] = (xx / 1000) % 10 + '0';
  1699. conv[2] = (xx / 100) % 10 + '0';
  1700. conv[3] = (xx / 10) % 10 + '0';
  1701. conv[4] = '.';
  1702. conv[5] = xx % 10 + '0';
  1703. conv[6] = 0;
  1704. return conv;
  1705. }
  1706. // Convert float to string with 123.4 format, dropping sign
  1707. char *ftostr31ns(const float &x) {
  1708. int xx = abs(x * 10);
  1709. conv[0] = (xx / 1000) % 10 + '0';
  1710. conv[1] = (xx / 100) % 10 + '0';
  1711. conv[2] = (xx / 10) % 10 + '0';
  1712. conv[3] = '.';
  1713. conv[4] = xx % 10 + '0';
  1714. conv[5] = 0;
  1715. return conv;
  1716. }
  1717. // Convert float to string with 123.4 format
  1718. char *ftostr32(const float &x) {
  1719. long xx = abs(x * 100);
  1720. conv[0] = x >= 0 ? (xx / 10000) % 10 + '0' : '-';
  1721. conv[1] = (xx / 1000) % 10 + '0';
  1722. conv[2] = (xx / 100) % 10 + '0';
  1723. conv[3] = '.';
  1724. conv[4] = (xx / 10) % 10 + '0';
  1725. conv[5] = xx % 10 + '0';
  1726. conv[6] = 0;
  1727. return conv;
  1728. }
  1729. // Convert float to string with 1.234 format
  1730. char *ftostr43(const float &x) {
  1731. long xx = x * 1000;
  1732. if (xx >= 0)
  1733. conv[0] = (xx / 1000) % 10 + '0';
  1734. else
  1735. conv[0] = '-';
  1736. xx = abs(xx);
  1737. conv[1] = '.';
  1738. conv[2] = (xx / 100) % 10 + '0';
  1739. conv[3] = (xx / 10) % 10 + '0';
  1740. conv[4] = (xx) % 10 + '0';
  1741. conv[5] = 0;
  1742. return conv;
  1743. }
  1744. // Convert float to string with 1.23 format
  1745. char *ftostr12ns(const float &x) {
  1746. long xx=x*100;
  1747. xx=abs(xx);
  1748. conv[0]=(xx/100)%10+'0';
  1749. conv[1]='.';
  1750. conv[2]=(xx/10)%10+'0';
  1751. conv[3]=(xx)%10+'0';
  1752. conv[4]=0;
  1753. return conv;
  1754. }
  1755. // Convert float to space-padded string with -_23.4_ format
  1756. char *ftostr32sp(const float &x) {
  1757. long xx = abs(x * 100);
  1758. uint8_t dig;
  1759. if (x < 0) { // negative val = -_0
  1760. conv[0] = '-';
  1761. dig = (xx / 1000) % 10;
  1762. conv[1] = dig ? '0' + dig : ' ';
  1763. }
  1764. else { // positive val = __0
  1765. dig = (xx / 10000) % 10;
  1766. if (dig) {
  1767. conv[0] = '0' + dig;
  1768. conv[1] = '0' + (xx / 1000) % 10;
  1769. }
  1770. else {
  1771. conv[0] = ' ';
  1772. dig = (xx / 1000) % 10;
  1773. conv[1] = dig ? '0' + dig : ' ';
  1774. }
  1775. }
  1776. conv[2] = '0' + (xx / 100) % 10; // lsd always
  1777. dig = xx % 10;
  1778. if (dig) { // 2 decimal places
  1779. conv[5] = '0' + dig;
  1780. conv[4] = '0' + (xx / 10) % 10;
  1781. conv[3] = '.';
  1782. }
  1783. else { // 1 or 0 decimal place
  1784. dig = (xx / 10) % 10;
  1785. if (dig) {
  1786. conv[4] = '0' + dig;
  1787. conv[3] = '.';
  1788. }
  1789. else {
  1790. conv[3] = conv[4] = ' ';
  1791. }
  1792. conv[5] = ' ';
  1793. }
  1794. conv[6] = '\0';
  1795. return conv;
  1796. }
  1797. // Convert int to lj string with +123.0 format
  1798. char *itostr31(const int &x) {
  1799. conv[0] = x >= 0 ? '+' : '-';
  1800. int xx = abs(x);
  1801. conv[1] = (xx / 100) % 10 + '0';
  1802. conv[2] = (xx / 10) % 10 + '0';
  1803. conv[3] = xx % 10 + '0';
  1804. conv[4] = '.';
  1805. conv[5] = '0';
  1806. conv[6] = 0;
  1807. return conv;
  1808. }
  1809. // Convert int to rj string with 123 or -12 format
  1810. char *itostr3(const int &x) {
  1811. int xx = x;
  1812. if (xx < 0) {
  1813. conv[0] = '-';
  1814. xx = -xx;
  1815. }
  1816. else
  1817. conv[0] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  1818. conv[1] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  1819. conv[2] = xx % 10 + '0';
  1820. conv[3] = 0;
  1821. return conv;
  1822. }
  1823. // Convert int to lj string with 123 format
  1824. char *itostr3left(const int &xx) {
  1825. if (xx >= 100) {
  1826. conv[0] = (xx / 100) % 10 + '0';
  1827. conv[1] = (xx / 10) % 10 + '0';
  1828. conv[2] = xx % 10 + '0';
  1829. conv[3] = 0;
  1830. }
  1831. else if (xx >= 10) {
  1832. conv[0] = (xx / 10) % 10 + '0';
  1833. conv[1] = xx % 10 + '0';
  1834. conv[2] = 0;
  1835. }
  1836. else {
  1837. conv[0] = xx % 10 + '0';
  1838. conv[1] = 0;
  1839. }
  1840. return conv;
  1841. }
  1842. // Convert int to rj string with 1234 format
  1843. char *itostr4(const int &xx) {
  1844. conv[0] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  1845. conv[1] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  1846. conv[2] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  1847. conv[3] = xx % 10 + '0';
  1848. conv[4] = 0;
  1849. return conv;
  1850. }
  1851. // Convert float to rj string with 12345 format
  1852. char *ftostr5(const float &x) {
  1853. long xx = abs(x);
  1854. conv[0] = xx >= 10000 ? (xx / 10000) % 10 + '0' : ' ';
  1855. conv[1] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  1856. conv[2] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  1857. conv[3] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  1858. conv[4] = xx % 10 + '0';
  1859. conv[5] = 0;
  1860. return conv;
  1861. }
  1862. // Convert float to string with +1234.5 format
  1863. char *ftostr51(const float &x) {
  1864. long xx = abs(x * 10);
  1865. conv[0] = (x >= 0) ? '+' : '-';
  1866. conv[1] = (xx / 10000) % 10 + '0';
  1867. conv[2] = (xx / 1000) % 10 + '0';
  1868. conv[3] = (xx / 100) % 10 + '0';
  1869. conv[4] = (xx / 10) % 10 + '0';
  1870. conv[5] = '.';
  1871. conv[6] = xx % 10 + '0';
  1872. conv[7] = 0;
  1873. return conv;
  1874. }
  1875. // Convert float to string with +123.45 format
  1876. char *ftostr52(const float &x) {
  1877. conv[0] = (x >= 0) ? '+' : '-';
  1878. long xx = abs(x * 100);
  1879. conv[1] = (xx / 10000) % 10 + '0';
  1880. conv[2] = (xx / 1000) % 10 + '0';
  1881. conv[3] = (xx / 100) % 10 + '0';
  1882. conv[4] = '.';
  1883. conv[5] = (xx / 10) % 10 + '0';
  1884. conv[6] = xx % 10 + '0';
  1885. conv[7] = 0;
  1886. return conv;
  1887. }
  1888. #if ENABLED(MANUAL_BED_LEVELING)
  1889. static int _lcd_level_bed_position;
  1890. /**
  1891. * MBL Wait for controller movement and clicks:
  1892. * - Movement adjusts the Z axis
  1893. * - Click saves the Z and goes to the next mesh point
  1894. */
  1895. static void _lcd_level_bed() {
  1896. if (encoderPosition != 0) {
  1897. refresh_cmd_timeout();
  1898. current_position[Z_AXIS] += float((int)encoderPosition) * MBL_Z_STEP;
  1899. if (min_software_endstops && current_position[Z_AXIS] < Z_MIN_POS) current_position[Z_AXIS] = Z_MIN_POS;
  1900. if (max_software_endstops && current_position[Z_AXIS] > Z_MAX_POS) current_position[Z_AXIS] = Z_MAX_POS;
  1901. encoderPosition = 0;
  1902. line_to_current(Z_AXIS);
  1903. lcdDrawUpdate = 2;
  1904. }
  1905. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR("Z"), ftostr43(current_position[Z_AXIS]));
  1906. static bool debounce_click = false;
  1907. if (LCD_CLICKED) {
  1908. if (!debounce_click) {
  1909. debounce_click = true;
  1910. int ix = _lcd_level_bed_position % MESH_NUM_X_POINTS,
  1911. iy = _lcd_level_bed_position / MESH_NUM_X_POINTS;
  1912. if (iy & 1) ix = (MESH_NUM_X_POINTS - 1) - ix; // Zig zag
  1913. mbl.set_z(ix, iy, current_position[Z_AXIS]);
  1914. _lcd_level_bed_position++;
  1915. if (_lcd_level_bed_position == MESH_NUM_X_POINTS*MESH_NUM_Y_POINTS) {
  1916. current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
  1917. line_to_current(Z_AXIS);
  1918. mbl.active = 1;
  1919. enqueuecommands_P(PSTR("G28"));
  1920. lcd_return_to_status();
  1921. }
  1922. else {
  1923. current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
  1924. line_to_current(Z_AXIS);
  1925. ix = _lcd_level_bed_position % MESH_NUM_X_POINTS;
  1926. iy = _lcd_level_bed_position / MESH_NUM_X_POINTS;
  1927. if (iy & 1) ix = (MESH_NUM_X_POINTS - 1) - ix; // Zig zag
  1928. current_position[X_AXIS] = mbl.get_x(ix);
  1929. current_position[Y_AXIS] = mbl.get_y(iy);
  1930. line_to_current(manual_feedrate[X_AXIS] <= manual_feedrate[Y_AXIS] ? X_AXIS : Y_AXIS);
  1931. lcdDrawUpdate = 2;
  1932. }
  1933. }
  1934. }
  1935. else {
  1936. debounce_click = false;
  1937. }
  1938. }
  1939. /**
  1940. * MBL Move to mesh starting point
  1941. */
  1942. static void _lcd_level_bed_homing() {
  1943. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR("XYZ"), "Homing");
  1944. if (axis_known_position[X_AXIS] && axis_known_position[Y_AXIS] && axis_known_position[Z_AXIS]) {
  1945. current_position[Z_AXIS] = MESH_HOME_SEARCH_Z;
  1946. plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
  1947. current_position[X_AXIS] = MESH_MIN_X;
  1948. current_position[Y_AXIS] = MESH_MIN_Y;
  1949. line_to_current(manual_feedrate[X_AXIS] <= manual_feedrate[Y_AXIS] ? X_AXIS : Y_AXIS);
  1950. _lcd_level_bed_position = 0;
  1951. lcd_goto_menu(_lcd_level_bed);
  1952. }
  1953. lcdDrawUpdate = 2;
  1954. }
  1955. /**
  1956. * MBL entry-point
  1957. */
  1958. static void lcd_level_bed() {
  1959. axis_known_position[X_AXIS] = axis_known_position[Y_AXIS] = axis_known_position[Z_AXIS] = false;
  1960. mbl.reset();
  1961. enqueuecommands_P(PSTR("G28"));
  1962. lcdDrawUpdate = 2;
  1963. lcd_goto_menu(_lcd_level_bed_homing);
  1964. }
  1965. #endif // MANUAL_BED_LEVELING
  1966. #endif // ULTRA_LCD