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

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