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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758
  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 "ConfigurationStore.h"
  9. int8_t encoderDiff; /* encoderDiff is updated from interrupt context and added to encoderPosition every LCD update */
  10. bool encoderRateMultiplierEnabled;
  11. int32_t lastEncoderMovementMillis;
  12. /* Configuration settings */
  13. int plaPreheatHotendTemp;
  14. int plaPreheatHPBTemp;
  15. int plaPreheatFanSpeed;
  16. int absPreheatHotendTemp;
  17. int absPreheatHPBTemp;
  18. int absPreheatFanSpeed;
  19. #ifdef FILAMENT_LCD_DISPLAY
  20. unsigned long message_millis = 0;
  21. #endif
  22. #ifdef ULTIPANEL
  23. static float manual_feedrate[] = MANUAL_FEEDRATE;
  24. #endif // ULTIPANEL
  25. /* !Configuration settings */
  26. //Function pointer to menu functions.
  27. typedef void (*menuFunc_t)();
  28. uint8_t lcd_status_message_level;
  29. char lcd_status_message[LCD_WIDTH+1] = WELCOME_MSG;
  30. #ifdef DOGLCD
  31. #include "dogm_lcd_implementation.h"
  32. #else
  33. #include "ultralcd_implementation_hitachi_HD44780.h"
  34. #endif
  35. /* Different menus */
  36. static void lcd_status_screen();
  37. #ifdef ULTIPANEL
  38. extern bool powersupply;
  39. static void lcd_main_menu();
  40. static void lcd_tune_menu();
  41. static void lcd_prepare_menu();
  42. static void lcd_move_menu();
  43. static void lcd_control_menu();
  44. static void lcd_control_temperature_menu();
  45. static void lcd_control_temperature_preheat_pla_settings_menu();
  46. static void lcd_control_temperature_preheat_abs_settings_menu();
  47. static void lcd_control_motion_menu();
  48. static void lcd_control_volumetric_menu();
  49. #ifdef DOGLCD
  50. static void lcd_set_contrast();
  51. #endif
  52. #ifdef FWRETRACT
  53. static void lcd_control_retract_menu();
  54. #endif
  55. static void lcd_sdcard_menu();
  56. #ifdef DELTA_CALIBRATION_MENU
  57. static void lcd_delta_calibrate_menu();
  58. #endif // DELTA_CALIBRATION_MENU
  59. static void lcd_quick_feedback();//Cause an LCD refresh, and give the user visual or audible feedback that something has happened
  60. /* Different types of actions that can be used in menu items. */
  61. static void menu_action_back(menuFunc_t data);
  62. static void menu_action_submenu(menuFunc_t data);
  63. static void menu_action_gcode(const char* pgcode);
  64. static void menu_action_function(menuFunc_t data);
  65. static void menu_action_sdfile(const char* filename, char* longFilename);
  66. static void menu_action_sddirectory(const char* filename, char* longFilename);
  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. #define ENCODER_FEEDRATE_DEADZONE 10
  86. #if !defined(LCD_I2C_VIKI)
  87. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  88. #define ENCODER_STEPS_PER_MENU_ITEM 5
  89. #endif
  90. #ifndef ENCODER_PULSES_PER_STEP
  91. #define ENCODER_PULSES_PER_STEP 1
  92. #endif
  93. #else
  94. #ifndef ENCODER_STEPS_PER_MENU_ITEM
  95. #define ENCODER_STEPS_PER_MENU_ITEM 2 // VIKI LCD rotary encoder uses a different number of steps per rotation
  96. #endif
  97. #ifndef ENCODER_PULSES_PER_STEP
  98. #define ENCODER_PULSES_PER_STEP 1
  99. #endif
  100. #endif
  101. /* Helper macros for menus */
  102. /**
  103. * START_MENU generates the init code for a menu function
  104. */
  105. #define START_MENU() do { \
  106. encoderRateMultiplierEnabled = false; \
  107. if (encoderPosition > 0x8000) encoderPosition = 0; \
  108. uint8_t encoderLine = encoderPosition / ENCODER_STEPS_PER_MENU_ITEM; \
  109. if (encoderLine < currentMenuViewOffset) currentMenuViewOffset = encoderLine; \
  110. uint8_t _lineNr = currentMenuViewOffset, _menuItemNr; \
  111. bool wasClicked = LCD_CLICKED, itemSelected; \
  112. if (wasClicked) lcd_quick_feedback(); \
  113. for (uint8_t _drawLineNr = 0; _drawLineNr < LCD_HEIGHT; _drawLineNr++, _lineNr++) { \
  114. _menuItemNr = 0;
  115. /**
  116. * MENU_ITEM generates draw & handler code for a menu item, potentially calling:
  117. *
  118. * lcd_implementation_drawmenu_[type](sel, row, label, arg3...)
  119. * menu_action_[type](arg3...)
  120. *
  121. * Examples:
  122. * MENU_ITEM(back, MSG_WATCH, lcd_status_screen)
  123. * lcd_implementation_drawmenu_back(sel, row, PSTR(MSG_WATCH), lcd_status_screen)
  124. * menu_action_back(lcd_status_screen)
  125. *
  126. * MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause)
  127. * lcd_implementation_drawmenu_function(sel, row, PSTR(MSG_PAUSE_PRINT), lcd_sdcard_pause)
  128. * menu_action_function(lcd_sdcard_pause)
  129. *
  130. * MENU_ITEM_EDIT(int3, MSG_SPEED, &feedmultiply, 10, 999)
  131. * MENU_ITEM(setting_edit_int3, MSG_SPEED, PSTR(MSG_SPEED), &feedmultiply, 10, 999)
  132. * lcd_implementation_drawmenu_setting_edit_int3(sel, row, PSTR(MSG_SPEED), PSTR(MSG_SPEED), &feedmultiply, 10, 999)
  133. * menu_action_setting_edit_int3(PSTR(MSG_SPEED), &feedmultiply, 10, 999)
  134. *
  135. */
  136. #define MENU_ITEM(type, label, args...) do { \
  137. if (_menuItemNr == _lineNr) { \
  138. itemSelected = encoderLine == _menuItemNr; \
  139. if (lcdDrawUpdate) \
  140. lcd_implementation_drawmenu_ ## type(itemSelected, _drawLineNr, PSTR(label), ## args); \
  141. if (wasClicked && itemSelected) { \
  142. menu_action_ ## type(args); \
  143. return; \
  144. } \
  145. } \
  146. _menuItemNr++; \
  147. } while(0)
  148. #ifdef ENCODER_RATE_MULTIPLIER
  149. /**
  150. * MENU_MULTIPLIER_ITEM generates drawing and handling code for a multiplier menu item
  151. */
  152. #define MENU_MULTIPLIER_ITEM(type, label, args...) do { \
  153. if (_menuItemNr == _lineNr) { \
  154. itemSelected = encoderLine == _menuItemNr; \
  155. if (lcdDrawUpdate) \
  156. lcd_implementation_drawmenu_ ## type(itemSelected, _drawLineNr, PSTR(label), ## args); \
  157. if (wasClicked && itemSelected) { \
  158. encoderRateMultiplierEnabled = true; \
  159. lastEncoderMovementMillis = 0; \
  160. menu_action_ ## type(args); \
  161. return; \
  162. } \
  163. } \
  164. _menuItemNr++; \
  165. } while(0)
  166. #endif //ENCODER_RATE_MULTIPLIER
  167. #define MENU_ITEM_DUMMY() do { _menuItemNr++; } while(0)
  168. #define MENU_ITEM_EDIT(type, label, args...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label), ## args)
  169. #define MENU_ITEM_EDIT_CALLBACK(type, label, args...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## args)
  170. #ifdef ENCODER_RATE_MULTIPLIER
  171. #define MENU_MULTIPLIER_ITEM_EDIT(type, label, args...) MENU_MULTIPLIER_ITEM(setting_edit_ ## type, label, PSTR(label), ## args)
  172. #define MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(type, label, args...) MENU_MULTIPLIER_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## args)
  173. #else //!ENCODER_RATE_MULTIPLIER
  174. #define MENU_MULTIPLIER_ITEM_EDIT(type, label, args...) MENU_ITEM(setting_edit_ ## type, label, PSTR(label), ## args)
  175. #define MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(type, label, args...) MENU_ITEM(setting_edit_callback_ ## type, label, PSTR(label), ## args)
  176. #endif //!ENCODER_RATE_MULTIPLIER
  177. #define END_MENU() \
  178. if (encoderPosition / ENCODER_STEPS_PER_MENU_ITEM >= _menuItemNr) encoderPosition = _menuItemNr * ENCODER_STEPS_PER_MENU_ITEM - 1; \
  179. if ((uint8_t)(encoderPosition / ENCODER_STEPS_PER_MENU_ITEM) >= currentMenuViewOffset + LCD_HEIGHT) { currentMenuViewOffset = (encoderPosition / ENCODER_STEPS_PER_MENU_ITEM) - LCD_HEIGHT + 1; lcdDrawUpdate = 1; _lineNr = currentMenuViewOffset - 1; _drawLineNr = -1; } \
  180. } } while(0)
  181. /** Used variables to keep track of the menu */
  182. #ifndef REPRAPWORLD_KEYPAD
  183. volatile uint8_t buttons;//Contains the bits of the currently pressed buttons.
  184. #else
  185. volatile uint8_t buttons_reprapworld_keypad; // to store the reprapworld_keypad shift register values
  186. #endif
  187. #ifdef LCD_HAS_SLOW_BUTTONS
  188. volatile uint8_t slow_buttons;//Contains the bits of the currently pressed buttons.
  189. #endif
  190. uint8_t currentMenuViewOffset; /* scroll offset in the current menu */
  191. uint32_t blocking_enc;
  192. uint8_t lastEncoderBits;
  193. uint32_t encoderPosition;
  194. #if (SDCARDDETECT > 0)
  195. bool lcd_oldcardstatus;
  196. #endif
  197. #endif //ULTIPANEL
  198. menuFunc_t currentMenu = lcd_status_screen; /* function pointer to the currently active menu */
  199. uint32_t lcd_next_update_millis;
  200. uint8_t lcd_status_update_delay;
  201. bool ignore_click = false;
  202. bool wait_for_unclick;
  203. 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) */
  204. //prevMenu and prevEncoderPosition are used to store the previous menu location when editing settings.
  205. menuFunc_t prevMenu = NULL;
  206. uint16_t prevEncoderPosition;
  207. //Variables used when editing values.
  208. const char* editLabel;
  209. void* editValue;
  210. int32_t minEditValue, maxEditValue;
  211. menuFunc_t callbackFunc;
  212. // place-holders for Ki and Kd edits
  213. float raw_Ki, raw_Kd;
  214. static void lcd_goto_menu(menuFunc_t menu, const uint32_t encoder=0, const bool feedback=true) {
  215. if (currentMenu != menu) {
  216. currentMenu = menu;
  217. encoderPosition = encoder;
  218. if (feedback) lcd_quick_feedback();
  219. // For LCD_PROGRESS_BAR re-initialize the custom characters
  220. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT) && !defined(DOGLCD)
  221. lcd_set_custom_characters(menu == lcd_status_screen);
  222. #endif
  223. }
  224. }
  225. /* Main status screen. It's up to the implementation specific part to show what is needed. As this is very display dependent */
  226. static void lcd_status_screen()
  227. {
  228. encoderRateMultiplierEnabled = false;
  229. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT) && !defined(DOGLCD)
  230. uint16_t mil = millis();
  231. #ifndef PROGRESS_MSG_ONCE
  232. if (mil > progressBarTick + PROGRESS_BAR_MSG_TIME + PROGRESS_BAR_BAR_TIME) {
  233. progressBarTick = mil;
  234. }
  235. #endif
  236. #if PROGRESS_MSG_EXPIRE > 0
  237. // keep the message alive if paused, count down otherwise
  238. if (messageTick > 0) {
  239. if (card.isFileOpen()) {
  240. if (IS_SD_PRINTING) {
  241. if ((mil-messageTick) >= PROGRESS_MSG_EXPIRE) {
  242. lcd_status_message[0] = '\0';
  243. messageTick = 0;
  244. }
  245. }
  246. else {
  247. messageTick += LCD_UPDATE_INTERVAL;
  248. }
  249. }
  250. else {
  251. messageTick = 0;
  252. }
  253. }
  254. #endif
  255. #endif //LCD_PROGRESS_BAR
  256. if (lcd_status_update_delay)
  257. lcd_status_update_delay--;
  258. else
  259. lcdDrawUpdate = 1;
  260. if (lcdDrawUpdate) {
  261. lcd_implementation_status_screen();
  262. 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 */
  263. }
  264. #ifdef ULTIPANEL
  265. bool current_click = LCD_CLICKED;
  266. if (ignore_click) {
  267. if (wait_for_unclick) {
  268. if (!current_click) {
  269. ignore_click = wait_for_unclick = false;
  270. }
  271. else {
  272. current_click = false;
  273. }
  274. }
  275. else if (current_click) {
  276. lcd_quick_feedback();
  277. wait_for_unclick = true;
  278. current_click = false;
  279. }
  280. }
  281. if (current_click)
  282. {
  283. lcd_goto_menu(lcd_main_menu);
  284. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  285. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT) && !defined(DOGLCD)
  286. currentMenu == lcd_status_screen
  287. #endif
  288. );
  289. #ifdef FILAMENT_LCD_DISPLAY
  290. message_millis = millis(); // get status message to show up for a while
  291. #endif
  292. }
  293. #ifdef ULTIPANEL_FEEDMULTIPLY
  294. // Dead zone at 100% feedrate
  295. if ((feedmultiply < 100 && (feedmultiply + int(encoderPosition)) > 100) ||
  296. (feedmultiply > 100 && (feedmultiply + int(encoderPosition)) < 100))
  297. {
  298. encoderPosition = 0;
  299. feedmultiply = 100;
  300. }
  301. if (feedmultiply == 100 && int(encoderPosition) > ENCODER_FEEDRATE_DEADZONE)
  302. {
  303. feedmultiply += int(encoderPosition) - ENCODER_FEEDRATE_DEADZONE;
  304. encoderPosition = 0;
  305. }
  306. else if (feedmultiply == 100 && int(encoderPosition) < -ENCODER_FEEDRATE_DEADZONE)
  307. {
  308. feedmultiply += int(encoderPosition) + ENCODER_FEEDRATE_DEADZONE;
  309. encoderPosition = 0;
  310. }
  311. else if (feedmultiply != 100)
  312. {
  313. feedmultiply += int(encoderPosition);
  314. encoderPosition = 0;
  315. }
  316. #endif //ULTIPANEL_FEEDMULTIPLY
  317. if (feedmultiply < 10)
  318. feedmultiply = 10;
  319. else if (feedmultiply > 999)
  320. feedmultiply = 999;
  321. #endif //ULTIPANEL
  322. }
  323. #ifdef ULTIPANEL
  324. static void lcd_return_to_status() { lcd_goto_menu(lcd_status_screen, 0, false); }
  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);
  334. }
  335. /* Menu implementation */
  336. static void lcd_main_menu() {
  337. START_MENU();
  338. MENU_ITEM(back, MSG_WATCH, lcd_status_screen);
  339. if (movesplanned() || IS_SD_PRINTING) {
  340. MENU_ITEM(submenu, MSG_TUNE, lcd_tune_menu);
  341. }
  342. else {
  343. MENU_ITEM(submenu, MSG_PREPARE, lcd_prepare_menu);
  344. #ifdef DELTA_CALIBRATION_MENU
  345. MENU_ITEM(submenu, MSG_DELTA_CALIBRATE, lcd_delta_calibrate_menu);
  346. #endif
  347. }
  348. MENU_ITEM(submenu, MSG_CONTROL, lcd_control_menu);
  349. #ifdef SDSUPPORT
  350. if (card.cardOK) {
  351. if (card.isFileOpen()) {
  352. if (card.sdprinting)
  353. MENU_ITEM(function, MSG_PAUSE_PRINT, lcd_sdcard_pause);
  354. else
  355. MENU_ITEM(function, MSG_RESUME_PRINT, lcd_sdcard_resume);
  356. MENU_ITEM(function, MSG_STOP_PRINT, lcd_sdcard_stop);
  357. }
  358. else {
  359. MENU_ITEM(submenu, MSG_CARD_MENU, lcd_sdcard_menu);
  360. #if SDCARDDETECT < 1
  361. MENU_ITEM(gcode, MSG_CNG_SDCARD, PSTR("M21")); // SD-card changed by user
  362. #endif
  363. }
  364. }
  365. else {
  366. MENU_ITEM(submenu, MSG_NO_CARD, lcd_sdcard_menu);
  367. #if SDCARDDETECT < 1
  368. MENU_ITEM(gcode, MSG_INIT_SDCARD, PSTR("M21")); // Manually initialize the SD-card via user interface
  369. #endif
  370. }
  371. #endif //SDSUPPORT
  372. END_MENU();
  373. }
  374. #if defined( SDSUPPORT ) && defined( MENU_ADDAUTOSTART )
  375. static void lcd_autostart_sd() {
  376. card.autostart_index = 0;
  377. card.setroot();
  378. card.checkautostart(true);
  379. }
  380. #endif
  381. void lcd_set_home_offsets() {
  382. for(int8_t i=0; i < NUM_AXIS; i++) {
  383. if (i != E_AXIS) {
  384. add_homing[i] -= current_position[i];
  385. current_position[i] = 0.0;
  386. }
  387. }
  388. plan_set_position(0.0, 0.0, 0.0, current_position[E_AXIS]);
  389. // Audio feedback
  390. enquecommands_P(PSTR("M300 S659 P200\nM300 S698 P200"));
  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. static void lcd_tune_menu() {
  408. START_MENU();
  409. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  410. MENU_ITEM_EDIT(int3, MSG_SPEED, &feedmultiply, 10, 999);
  411. #if TEMP_SENSOR_0 != 0
  412. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
  413. #endif
  414. #if TEMP_SENSOR_1 != 0
  415. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N2, &target_temperature[1], 0, HEATER_1_MAXTEMP - 15);
  416. #endif
  417. #if TEMP_SENSOR_2 != 0
  418. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N3, &target_temperature[2], 0, HEATER_2_MAXTEMP - 15);
  419. #endif
  420. #if TEMP_SENSOR_3 != 0
  421. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N4, &target_temperature[3], 0, HEATER_3_MAXTEMP - 15);
  422. #endif
  423. #if TEMP_SENSOR_BED != 0
  424. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);
  425. #endif
  426. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
  427. MENU_ITEM_EDIT(int3, MSG_FLOW, &extrudemultiply, 10, 999);
  428. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F0, &extruder_multiply[0], 10, 999);
  429. #if TEMP_SENSOR_1 != 0
  430. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F1, &extruder_multiply[1], 10, 999);
  431. #endif
  432. #if TEMP_SENSOR_2 != 0
  433. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F2, &extruder_multiply[2], 10, 999);
  434. #endif
  435. #if TEMP_SENSOR_3 != 0
  436. MENU_ITEM_EDIT(int3, MSG_FLOW MSG_F3, &extruder_multiply[3], 10, 999);
  437. #endif
  438. #ifdef BABYSTEPPING
  439. #ifdef BABYSTEP_XY
  440. MENU_ITEM(submenu, MSG_BABYSTEP_X, lcd_babystep_x);
  441. MENU_ITEM(submenu, MSG_BABYSTEP_Y, lcd_babystep_y);
  442. #endif //BABYSTEP_XY
  443. MENU_ITEM(submenu, MSG_BABYSTEP_Z, lcd_babystep_z);
  444. #endif
  445. #ifdef FILAMENTCHANGEENABLE
  446. MENU_ITEM(gcode, MSG_FILAMENTCHANGE, PSTR("M600"));
  447. #endif
  448. END_MENU();
  449. }
  450. void _lcd_preheat(int endnum, const float temph, const float tempb, const int fan) {
  451. if (temph > 0) setTargetHotend(temph, endnum);
  452. setTargetBed(tempb);
  453. fanSpeed = fan;
  454. lcd_return_to_status();
  455. setWatch(); // heater sanity check timer
  456. }
  457. void lcd_preheat_pla0() { _lcd_preheat(0, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  458. void lcd_preheat_abs0() { _lcd_preheat(0, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  459. #if TEMP_SENSOR_1 != 0 //2nd extruder preheat
  460. void lcd_preheat_pla1() { _lcd_preheat(1, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  461. void lcd_preheat_abs1() { _lcd_preheat(1, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  462. #endif //2nd extruder preheat
  463. #if TEMP_SENSOR_2 != 0 //3 extruder preheat
  464. void lcd_preheat_pla2() { _lcd_preheat(2, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  465. void lcd_preheat_abs2() { _lcd_preheat(2, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  466. #endif //3 extruder preheat
  467. #if TEMP_SENSOR_3 != 0 //4 extruder preheat
  468. void lcd_preheat_pla3() { _lcd_preheat(3, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  469. void lcd_preheat_abs3() { _lcd_preheat(3, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed); }
  470. #endif //4 extruder preheat
  471. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 //more than one extruder present
  472. void lcd_preheat_pla0123() {
  473. setTargetHotend0(plaPreheatHotendTemp);
  474. setTargetHotend1(plaPreheatHotendTemp);
  475. setTargetHotend2(plaPreheatHotendTemp);
  476. _lcd_preheat(3, plaPreheatHotendTemp, plaPreheatHPBTemp, plaPreheatFanSpeed);
  477. }
  478. void lcd_preheat_abs0123() {
  479. setTargetHotend0(absPreheatHotendTemp);
  480. setTargetHotend1(absPreheatHotendTemp);
  481. setTargetHotend2(absPreheatHotendTemp);
  482. _lcd_preheat(3, absPreheatHotendTemp, absPreheatHPBTemp, absPreheatFanSpeed);
  483. }
  484. #endif //more than one extruder present
  485. void lcd_preheat_pla_bedonly() { _lcd_preheat(0, 0, plaPreheatHPBTemp, plaPreheatFanSpeed); }
  486. void lcd_preheat_abs_bedonly() { _lcd_preheat(0, 0, absPreheatHPBTemp, absPreheatFanSpeed); }
  487. static void lcd_preheat_pla_menu() {
  488. START_MENU();
  489. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  490. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H1, lcd_preheat_pla0);
  491. #if TEMP_SENSOR_1 != 0 //2 extruder preheat
  492. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H2, lcd_preheat_pla1);
  493. #endif //2 extruder preheat
  494. #if TEMP_SENSOR_2 != 0 //3 extruder preheat
  495. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H3, lcd_preheat_pla2);
  496. #endif //3 extruder preheat
  497. #if TEMP_SENSOR_3 != 0 //4 extruder preheat
  498. MENU_ITEM(function, MSG_PREHEAT_PLA_N MSG_H4, lcd_preheat_pla3);
  499. #endif //4 extruder preheat
  500. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 //all extruder preheat
  501. MENU_ITEM(function, MSG_PREHEAT_PLA_ALL, lcd_preheat_pla0123);
  502. #endif //all extruder preheat
  503. #if TEMP_SENSOR_BED != 0
  504. MENU_ITEM(function, MSG_PREHEAT_PLA_BEDONLY, lcd_preheat_pla_bedonly);
  505. #endif
  506. END_MENU();
  507. }
  508. static void lcd_preheat_abs_menu() {
  509. START_MENU();
  510. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  511. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H1, lcd_preheat_abs0);
  512. #if TEMP_SENSOR_1 != 0 //2 extruder preheat
  513. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H2, lcd_preheat_abs1);
  514. #endif //2 extruder preheat
  515. #if TEMP_SENSOR_2 != 0 //3 extruder preheat
  516. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H3, lcd_preheat_abs2);
  517. #endif //3 extruder preheat
  518. #if TEMP_SENSOR_3 != 0 //4 extruder preheat
  519. MENU_ITEM(function, MSG_PREHEAT_ABS_N MSG_H4, lcd_preheat_abs3);
  520. #endif //4 extruder preheat
  521. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_3 != 0 //all extruder preheat
  522. MENU_ITEM(function, MSG_PREHEAT_ABS_ALL, lcd_preheat_abs0123);
  523. #endif //all extruder preheat
  524. #if TEMP_SENSOR_BED != 0
  525. MENU_ITEM(function, MSG_PREHEAT_ABS_BEDONLY, lcd_preheat_abs_bedonly);
  526. #endif
  527. END_MENU();
  528. }
  529. void lcd_cooldown() {
  530. setTargetHotend0(0);
  531. setTargetHotend1(0);
  532. setTargetHotend2(0);
  533. setTargetHotend3(0);
  534. setTargetBed(0);
  535. fanSpeed = 0;
  536. lcd_return_to_status();
  537. }
  538. static void lcd_prepare_menu() {
  539. START_MENU();
  540. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  541. #if defined( SDSUPPORT ) && defined( MENU_ADDAUTOSTART )
  542. MENU_ITEM(function, MSG_AUTOSTART, lcd_autostart_sd);
  543. #endif
  544. MENU_ITEM(gcode, MSG_DISABLE_STEPPERS, PSTR("M84"));
  545. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  546. MENU_ITEM(function, MSG_SET_HOME_OFFSETS, lcd_set_home_offsets);
  547. //MENU_ITEM(gcode, MSG_SET_ORIGIN, PSTR("G92 X0 Y0 Z0"));
  548. #if TEMP_SENSOR_0 != 0
  549. #if TEMP_SENSOR_1 != 0 || TEMP_SENSOR_2 != 0 || TEMP_SENSOR_BED != 0
  550. MENU_ITEM(submenu, MSG_PREHEAT_PLA, lcd_preheat_pla_menu);
  551. MENU_ITEM(submenu, MSG_PREHEAT_ABS, lcd_preheat_abs_menu);
  552. #else
  553. MENU_ITEM(function, MSG_PREHEAT_PLA, lcd_preheat_pla0);
  554. MENU_ITEM(function, MSG_PREHEAT_ABS, lcd_preheat_abs0);
  555. #endif
  556. #endif
  557. MENU_ITEM(function, MSG_COOLDOWN, lcd_cooldown);
  558. #if defined(POWER_SUPPLY) && POWER_SUPPLY > 0 && defined(PS_ON_PIN) && PS_ON_PIN > -1
  559. if (powersupply) {
  560. MENU_ITEM(gcode, MSG_SWITCH_PS_OFF, PSTR("M81"));
  561. }
  562. else {
  563. MENU_ITEM(gcode, MSG_SWITCH_PS_ON, PSTR("M80"));
  564. }
  565. #endif
  566. MENU_ITEM(submenu, MSG_MOVE_AXIS, lcd_move_menu);
  567. END_MENU();
  568. }
  569. #ifdef DELTA_CALIBRATION_MENU
  570. static void lcd_delta_calibrate_menu()
  571. {
  572. START_MENU();
  573. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  574. MENU_ITEM(gcode, MSG_AUTO_HOME, PSTR("G28"));
  575. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_X, PSTR("G0 F8000 X-77.94 Y-45 Z0"));
  576. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_Y, PSTR("G0 F8000 X77.94 Y-45 Z0"));
  577. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_Z, PSTR("G0 F8000 X0 Y90 Z0"));
  578. MENU_ITEM(gcode, MSG_DELTA_CALIBRATE_CENTER, PSTR("G0 F8000 X0 Y0 Z0"));
  579. END_MENU();
  580. }
  581. #endif // DELTA_CALIBRATION_MENU
  582. float move_menu_scale;
  583. static void lcd_move_menu_axis();
  584. static void _lcd_move(const char *name, int axis, int min, int max) {
  585. if (encoderPosition != 0) {
  586. refresh_cmd_timeout();
  587. current_position[axis] += float((int)encoderPosition) * move_menu_scale;
  588. if (min_software_endstops && current_position[axis] < min) current_position[axis] = min;
  589. if (max_software_endstops && current_position[axis] > max) current_position[axis] = max;
  590. encoderPosition = 0;
  591. #ifdef DELTA
  592. calculate_delta(current_position);
  593. plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS], manual_feedrate[axis]/60, active_extruder);
  594. #else
  595. 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);
  596. #endif
  597. lcdDrawUpdate = 1;
  598. }
  599. if (lcdDrawUpdate) lcd_implementation_drawedit(name, ftostr31(current_position[axis]));
  600. if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
  601. }
  602. static void lcd_move_x() { _lcd_move(PSTR("X"), X_AXIS, X_MIN_POS, X_MAX_POS); }
  603. static void lcd_move_y() { _lcd_move(PSTR("Y"), Y_AXIS, Y_MIN_POS, Y_MAX_POS); }
  604. static void lcd_move_z() { _lcd_move(PSTR("Z"), Z_AXIS, Z_MIN_POS, Z_MAX_POS); }
  605. static void lcd_move_e() {
  606. if (encoderPosition != 0) {
  607. current_position[E_AXIS] += float((int)encoderPosition) * move_menu_scale;
  608. encoderPosition = 0;
  609. #ifdef DELTA
  610. calculate_delta(current_position);
  611. plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS], manual_feedrate[E_AXIS]/60, active_extruder);
  612. #else
  613. plan_buffer_line(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS], manual_feedrate[E_AXIS]/60, active_extruder);
  614. #endif
  615. lcdDrawUpdate = 1;
  616. }
  617. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR("Extruder"), ftostr31(current_position[E_AXIS]));
  618. if (LCD_CLICKED) lcd_goto_menu(lcd_move_menu_axis);
  619. }
  620. static void lcd_move_menu_axis() {
  621. START_MENU();
  622. MENU_ITEM(back, MSG_MOVE_AXIS, lcd_move_menu);
  623. MENU_ITEM(submenu, MSG_MOVE_X, lcd_move_x);
  624. MENU_ITEM(submenu, MSG_MOVE_Y, lcd_move_y);
  625. if (move_menu_scale < 10.0) {
  626. MENU_ITEM(submenu, MSG_MOVE_Z, lcd_move_z);
  627. MENU_ITEM(submenu, MSG_MOVE_E, lcd_move_e);
  628. }
  629. END_MENU();
  630. }
  631. static void lcd_move_menu_10mm() {
  632. move_menu_scale = 10.0;
  633. lcd_move_menu_axis();
  634. }
  635. static void lcd_move_menu_1mm() {
  636. move_menu_scale = 1.0;
  637. lcd_move_menu_axis();
  638. }
  639. static void lcd_move_menu_01mm() {
  640. move_menu_scale = 0.1;
  641. lcd_move_menu_axis();
  642. }
  643. static void lcd_move_menu() {
  644. START_MENU();
  645. MENU_ITEM(back, MSG_PREPARE, lcd_prepare_menu);
  646. MENU_ITEM(submenu, MSG_MOVE_10MM, lcd_move_menu_10mm);
  647. MENU_ITEM(submenu, MSG_MOVE_1MM, lcd_move_menu_1mm);
  648. MENU_ITEM(submenu, MSG_MOVE_01MM, lcd_move_menu_01mm);
  649. //TODO:X,Y,Z,E
  650. END_MENU();
  651. }
  652. static void lcd_control_menu() {
  653. START_MENU();
  654. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  655. MENU_ITEM(submenu, MSG_TEMPERATURE, lcd_control_temperature_menu);
  656. MENU_ITEM(submenu, MSG_MOTION, lcd_control_motion_menu);
  657. MENU_ITEM(submenu, MSG_VOLUMETRIC, lcd_control_volumetric_menu);
  658. #ifdef DOGLCD
  659. //MENU_ITEM_EDIT(int3, MSG_CONTRAST, &lcd_contrast, 0, 63);
  660. MENU_ITEM(submenu, MSG_CONTRAST, lcd_set_contrast);
  661. #endif
  662. #ifdef FWRETRACT
  663. MENU_ITEM(submenu, MSG_RETRACT, lcd_control_retract_menu);
  664. #endif
  665. #ifdef EEPROM_SETTINGS
  666. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  667. MENU_ITEM(function, MSG_LOAD_EPROM, Config_RetrieveSettings);
  668. #endif
  669. MENU_ITEM(function, MSG_RESTORE_FAILSAFE, Config_ResetDefault);
  670. END_MENU();
  671. }
  672. #ifdef PIDTEMP
  673. // Helpers for editing PID Ki & Kd values
  674. // grab the PID value out of the temp variable; scale it; then update the PID driver
  675. void copy_and_scalePID_i(int e) {
  676. PID_PARAM(Ki, e) = scalePID_i(raw_Ki);
  677. updatePID();
  678. }
  679. void copy_and_scalePID_d(int e) {
  680. PID_PARAM(Kd, e) = scalePID_d(raw_Kd);
  681. updatePID();
  682. }
  683. void copy_and_scalePID_i_E1() { copy_and_scalePID_i(0); }
  684. void copy_and_scalePID_d_E1() { copy_and_scalePID_d(0); }
  685. #ifdef PID_PARAMS_PER_EXTRUDER
  686. #if EXTRUDERS > 1
  687. void copy_and_scalePID_i_E2() { copy_and_scalePID_i(1); }
  688. void copy_and_scalePID_d_E2() { copy_and_scalePID_d(1); }
  689. #if EXTRUDERS > 2
  690. void copy_and_scalePID_i_E3() { copy_and_scalePID_i(2); }
  691. void copy_and_scalePID_d_E3() { copy_and_scalePID_d(2); }
  692. #if EXTRUDERS > 3
  693. void copy_and_scalePID_i_E4() { copy_and_scalePID_i(3); }
  694. void copy_and_scalePID_d_E4() { copy_and_scalePID_d(3); }
  695. #endif //EXTRUDERS > 3
  696. #endif //EXTRUDERS > 2
  697. #endif //EXTRUDERS > 1
  698. #endif //PID_PARAMS_PER_EXTRUDER
  699. #endif //PIDTEMP
  700. static void lcd_control_temperature_menu() {
  701. START_MENU();
  702. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  703. #if TEMP_SENSOR_0 != 0
  704. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
  705. #endif
  706. #if EXTRUDERS > 1
  707. #if TEMP_SENSOR_1 != 0
  708. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N2, &target_temperature[1], 0, HEATER_1_MAXTEMP - 15);
  709. #endif
  710. #if EXTRUDERS > 2
  711. #if TEMP_SENSOR_2 != 0
  712. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N3, &target_temperature[2], 0, HEATER_2_MAXTEMP - 15);
  713. #endif
  714. #if EXTRUDERS > 3
  715. #if TEMP_SENSOR_3 != 0
  716. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_NOZZLE MSG_N4, &target_temperature[3], 0, HEATER_3_MAXTEMP - 15);
  717. #endif
  718. #endif // EXTRUDERS > 3
  719. #endif // EXTRUDERS > 2
  720. #endif // EXTRUDERS > 1
  721. #if TEMP_SENSOR_BED != 0
  722. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);
  723. #endif
  724. MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
  725. #if defined(AUTOTEMP) && (TEMP_SENSOR_0 != 0)
  726. MENU_ITEM_EDIT(bool, MSG_AUTOTEMP, &autotemp_enabled);
  727. MENU_ITEM_EDIT(float3, MSG_MIN, &autotemp_min, 0, HEATER_0_MAXTEMP - 15);
  728. MENU_ITEM_EDIT(float3, MSG_MAX, &autotemp_max, 0, HEATER_0_MAXTEMP - 15);
  729. MENU_ITEM_EDIT(float32, MSG_FACTOR, &autotemp_factor, 0.0, 1.0);
  730. #endif
  731. #ifdef PIDTEMP
  732. // set up temp variables - undo the default scaling
  733. raw_Ki = unscalePID_i(PID_PARAM(Ki,0));
  734. raw_Kd = unscalePID_d(PID_PARAM(Kd,0));
  735. MENU_ITEM_EDIT(float52, MSG_PID_P, &PID_PARAM(Kp,0), 1, 9990);
  736. // i is typically a small value so allows values below 1
  737. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E1);
  738. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D, &raw_Kd, 1, 9990, copy_and_scalePID_d_E1);
  739. #ifdef PID_ADD_EXTRUSION_RATE
  740. MENU_ITEM_EDIT(float3, MSG_PID_C, &PID_PARAM(Kc,0), 1, 9990);
  741. #endif//PID_ADD_EXTRUSION_RATE
  742. #ifdef PID_PARAMS_PER_EXTRUDER
  743. #if EXTRUDERS > 1
  744. // set up temp variables - undo the default scaling
  745. raw_Ki = unscalePID_i(PID_PARAM(Ki,1));
  746. raw_Kd = unscalePID_d(PID_PARAM(Kd,1));
  747. MENU_ITEM_EDIT(float52, MSG_PID_P MSG_E2, &PID_PARAM(Kp,1), 1, 9990);
  748. // i is typically a small value so allows values below 1
  749. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I MSG_E2, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E2);
  750. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D MSG_E2, &raw_Kd, 1, 9990, copy_and_scalePID_d_E2);
  751. #ifdef PID_ADD_EXTRUSION_RATE
  752. MENU_ITEM_EDIT(float3, MSG_PID_C MSG_E2, &PID_PARAM(Kc,1), 1, 9990);
  753. #endif//PID_ADD_EXTRUSION_RATE
  754. #if EXTRUDERS > 2
  755. // set up temp variables - undo the default scaling
  756. raw_Ki = unscalePID_i(PID_PARAM(Ki,2));
  757. raw_Kd = unscalePID_d(PID_PARAM(Kd,2));
  758. MENU_ITEM_EDIT(float52, MSG_PID_P MSG_E3, &PID_PARAM(Kp,2), 1, 9990);
  759. // i is typically a small value so allows values below 1
  760. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I MSG_E3, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E3);
  761. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D MSG_E3, &raw_Kd, 1, 9990, copy_and_scalePID_d_E3);
  762. #ifdef PID_ADD_EXTRUSION_RATE
  763. MENU_ITEM_EDIT(float3, MSG_PID_C MSG_E3, &PID_PARAM(Kc,2), 1, 9990);
  764. #endif//PID_ADD_EXTRUSION_RATE
  765. #if EXTRUDERS > 3
  766. // set up temp variables - undo the default scaling
  767. raw_Ki = unscalePID_i(PID_PARAM(Ki,3));
  768. raw_Kd = unscalePID_d(PID_PARAM(Kd,3));
  769. MENU_ITEM_EDIT(float52, MSG_PID_P MSG_E4, &PID_PARAM(Kp,3), 1, 9990);
  770. // i is typically a small value so allows values below 1
  771. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_I MSG_E4, &raw_Ki, 0.01, 9990, copy_and_scalePID_i_E4);
  772. MENU_ITEM_EDIT_CALLBACK(float52, MSG_PID_D MSG_E4, &raw_Kd, 1, 9990, copy_and_scalePID_d_E4);
  773. #ifdef PID_ADD_EXTRUSION_RATE
  774. MENU_ITEM_EDIT(float3, MSG_PID_C MSG_E4, &PID_PARAM(Kc,3), 1, 9990);
  775. #endif//PID_ADD_EXTRUSION_RATE
  776. #endif//EXTRUDERS > 3
  777. #endif//EXTRUDERS > 2
  778. #endif//EXTRUDERS > 1
  779. #endif //PID_PARAMS_PER_EXTRUDER
  780. #endif//PIDTEMP
  781. MENU_ITEM(submenu, MSG_PREHEAT_PLA_SETTINGS, lcd_control_temperature_preheat_pla_settings_menu);
  782. MENU_ITEM(submenu, MSG_PREHEAT_ABS_SETTINGS, lcd_control_temperature_preheat_abs_settings_menu);
  783. END_MENU();
  784. }
  785. static void lcd_control_temperature_preheat_pla_settings_menu() {
  786. START_MENU();
  787. MENU_ITEM(back, MSG_TEMPERATURE, lcd_control_temperature_menu);
  788. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &plaPreheatFanSpeed, 0, 255);
  789. #if TEMP_SENSOR_0 != 0
  790. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &plaPreheatHotendTemp, 0, HEATER_0_MAXTEMP - 15);
  791. #endif
  792. #if TEMP_SENSOR_BED != 0
  793. MENU_ITEM_EDIT(int3, MSG_BED, &plaPreheatHPBTemp, 0, BED_MAXTEMP - 15);
  794. #endif
  795. #ifdef EEPROM_SETTINGS
  796. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  797. #endif
  798. END_MENU();
  799. }
  800. static void lcd_control_temperature_preheat_abs_settings_menu() {
  801. START_MENU();
  802. MENU_ITEM(back, MSG_TEMPERATURE, lcd_control_temperature_menu);
  803. MENU_ITEM_EDIT(int3, MSG_FAN_SPEED, &absPreheatFanSpeed, 0, 255);
  804. #if TEMP_SENSOR_0 != 0
  805. MENU_ITEM_EDIT(int3, MSG_NOZZLE, &absPreheatHotendTemp, 0, HEATER_0_MAXTEMP - 15);
  806. #endif
  807. #if TEMP_SENSOR_BED != 0
  808. MENU_ITEM_EDIT(int3, MSG_BED, &absPreheatHPBTemp, 0, BED_MAXTEMP - 15);
  809. #endif
  810. #ifdef EEPROM_SETTINGS
  811. MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
  812. #endif
  813. END_MENU();
  814. }
  815. static void lcd_control_motion_menu() {
  816. START_MENU();
  817. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  818. #ifdef ENABLE_AUTO_BED_LEVELING
  819. MENU_ITEM_EDIT(float32, MSG_ZPROBE_ZOFFSET, &zprobe_zoffset, 0.5, 50);
  820. #endif
  821. MENU_ITEM_EDIT(float5, MSG_ACC, &acceleration, 500, 99000);
  822. MENU_ITEM_EDIT(float3, MSG_VXY_JERK, &max_xy_jerk, 1, 990);
  823. MENU_ITEM_EDIT(float52, MSG_VZ_JERK, &max_z_jerk, 0.1, 990);
  824. MENU_ITEM_EDIT(float3, MSG_VE_JERK, &max_e_jerk, 1, 990);
  825. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_X, &max_feedrate[X_AXIS], 1, 999);
  826. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Y, &max_feedrate[Y_AXIS], 1, 999);
  827. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_Z, &max_feedrate[Z_AXIS], 1, 999);
  828. MENU_ITEM_EDIT(float3, MSG_VMAX MSG_E, &max_feedrate[E_AXIS], 1, 999);
  829. MENU_ITEM_EDIT(float3, MSG_VMIN, &minimumfeedrate, 0, 999);
  830. MENU_ITEM_EDIT(float3, MSG_VTRAV_MIN, &mintravelfeedrate, 0, 999);
  831. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_X, &max_acceleration_units_per_sq_second[X_AXIS], 100, 99000, reset_acceleration_rates);
  832. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Y, &max_acceleration_units_per_sq_second[Y_AXIS], 100, 99000, reset_acceleration_rates);
  833. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_Z, &max_acceleration_units_per_sq_second[Z_AXIS], 100, 99000, reset_acceleration_rates);
  834. MENU_ITEM_EDIT_CALLBACK(long5, MSG_AMAX MSG_E, &max_acceleration_units_per_sq_second[E_AXIS], 100, 99000, reset_acceleration_rates);
  835. MENU_ITEM_EDIT(float5, MSG_A_RETRACT, &retract_acceleration, 100, 99000);
  836. MENU_ITEM_EDIT(float5, MSG_A_TRAVEL, &travel_acceleration, 100, 99000);
  837. MENU_ITEM_EDIT(float52, MSG_XSTEPS, &axis_steps_per_unit[X_AXIS], 5, 9999);
  838. MENU_ITEM_EDIT(float52, MSG_YSTEPS, &axis_steps_per_unit[Y_AXIS], 5, 9999);
  839. MENU_ITEM_EDIT(float51, MSG_ZSTEPS, &axis_steps_per_unit[Z_AXIS], 5, 9999);
  840. MENU_ITEM_EDIT(float51, MSG_ESTEPS, &axis_steps_per_unit[E_AXIS], 5, 9999);
  841. #ifdef ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
  842. MENU_ITEM_EDIT(bool, MSG_ENDSTOP_ABORT, &abort_on_endstop_hit);
  843. #endif
  844. #ifdef SCARA
  845. MENU_ITEM_EDIT(float74, MSG_XSCALE, &axis_scaling[X_AXIS],0.5,2);
  846. MENU_ITEM_EDIT(float74, MSG_YSCALE, &axis_scaling[Y_AXIS],0.5,2);
  847. #endif
  848. END_MENU();
  849. }
  850. static void lcd_control_volumetric_menu() {
  851. START_MENU();
  852. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  853. MENU_ITEM_EDIT_CALLBACK(bool, MSG_VOLUMETRIC_ENABLED, &volumetric_enabled, calculate_volumetric_multipliers);
  854. if (volumetric_enabled) {
  855. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_SIZE_EXTRUDER_0, &filament_size[0], 1.5, 3.25, calculate_volumetric_multipliers);
  856. #if EXTRUDERS > 1
  857. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_SIZE_EXTRUDER_1, &filament_size[1], 1.5, 3.25, calculate_volumetric_multipliers);
  858. #if EXTRUDERS > 2
  859. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_SIZE_EXTRUDER_2, &filament_size[2], 1.5, 3.25, calculate_volumetric_multipliers);
  860. #if EXTRUDERS > 3
  861. MENU_MULTIPLIER_ITEM_EDIT_CALLBACK(float43, MSG_FILAMENT_SIZE_EXTRUDER_3, &filament_size[3], 1.5, 3.25, calculate_volumetric_multipliers);
  862. #endif //EXTRUDERS > 3
  863. #endif //EXTRUDERS > 2
  864. #endif //EXTRUDERS > 1
  865. }
  866. END_MENU();
  867. }
  868. #ifdef DOGLCD
  869. static void lcd_set_contrast() {
  870. if (encoderPosition != 0) {
  871. lcd_contrast -= encoderPosition;
  872. if (lcd_contrast < 0) lcd_contrast = 0;
  873. else if (lcd_contrast > 63) lcd_contrast = 63;
  874. encoderPosition = 0;
  875. lcdDrawUpdate = 1;
  876. u8g.setContrast(lcd_contrast);
  877. }
  878. if (lcdDrawUpdate) lcd_implementation_drawedit(PSTR(MSG_CONTRAST), itostr2(lcd_contrast));
  879. if (LCD_CLICKED) lcd_goto_menu(lcd_control_menu);
  880. }
  881. #endif //DOGLCD
  882. #ifdef FWRETRACT
  883. static void lcd_control_retract_menu() {
  884. START_MENU();
  885. MENU_ITEM(back, MSG_CONTROL, lcd_control_menu);
  886. MENU_ITEM_EDIT(bool, MSG_AUTORETRACT, &autoretract_enabled);
  887. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT, &retract_length, 0, 100);
  888. #if EXTRUDERS > 1
  889. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_SWAP, &retract_length_swap, 0, 100);
  890. #endif
  891. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACTF, &retract_feedrate, 1, 999);
  892. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_ZLIFT, &retract_zlift, 0, 999);
  893. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER, &retract_recover_length, 0, 100);
  894. #if EXTRUDERS > 1
  895. MENU_ITEM_EDIT(float52, MSG_CONTROL_RETRACT_RECOVER_SWAP, &retract_recover_length_swap, 0, 100);
  896. #endif
  897. MENU_ITEM_EDIT(float3, MSG_CONTROL_RETRACT_RECOVERF, &retract_recover_feedrate, 1, 999);
  898. END_MENU();
  899. }
  900. #endif //FWRETRACT
  901. #if SDCARDDETECT == -1
  902. static void lcd_sd_refresh() {
  903. card.initsd();
  904. currentMenuViewOffset = 0;
  905. }
  906. #endif
  907. static void lcd_sd_updir() {
  908. card.updir();
  909. currentMenuViewOffset = 0;
  910. }
  911. void lcd_sdcard_menu() {
  912. if (lcdDrawUpdate == 0 && LCD_CLICKED == 0) return; // nothing to do (so don't thrash the SD card)
  913. uint16_t fileCnt = card.getnrfilenames();
  914. START_MENU();
  915. MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
  916. card.getWorkDirName();
  917. if (card.filename[0] == '/') {
  918. #if SDCARDDETECT == -1
  919. MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
  920. #endif
  921. }
  922. else {
  923. MENU_ITEM(function, LCD_STR_FOLDER "..", lcd_sd_updir);
  924. }
  925. for(uint16_t i = 0; i < fileCnt; i++) {
  926. if (_menuItemNr == _lineNr) {
  927. #ifndef SDCARD_RATHERRECENTFIRST
  928. card.getfilename(i);
  929. #else
  930. card.getfilename(fileCnt-1-i);
  931. #endif
  932. if (card.filenameIsDir)
  933. MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
  934. else
  935. MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
  936. }
  937. else {
  938. MENU_ITEM_DUMMY();
  939. }
  940. }
  941. END_MENU();
  942. }
  943. #define menu_edit_type(_type, _name, _strFunc, scale) \
  944. bool _menu_edit_ ## _name () { \
  945. bool isClicked = LCD_CLICKED; \
  946. if ((int32_t)encoderPosition < 0) encoderPosition = 0; \
  947. if ((int32_t)encoderPosition > maxEditValue) encoderPosition = maxEditValue; \
  948. if (lcdDrawUpdate) \
  949. lcd_implementation_drawedit(editLabel, _strFunc(((_type)((int32_t)encoderPosition + minEditValue)) / scale)); \
  950. if (isClicked) { \
  951. *((_type*)editValue) = ((_type)((int32_t)encoderPosition + minEditValue)) / scale; \
  952. lcd_goto_menu(prevMenu, prevEncoderPosition); \
  953. } \
  954. return isClicked; \
  955. } \
  956. void menu_edit_ ## _name () { _menu_edit_ ## _name(); } \
  957. void menu_edit_callback_ ## _name () { if (_menu_edit_ ## _name ()) (*callbackFunc)(); } \
  958. static void _menu_action_setting_edit_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue) { \
  959. prevMenu = currentMenu; \
  960. prevEncoderPosition = encoderPosition; \
  961. \
  962. lcdDrawUpdate = 2; \
  963. currentMenu = menu_edit_ ## _name; \
  964. \
  965. editLabel = pstr; \
  966. editValue = ptr; \
  967. minEditValue = minValue * scale; \
  968. maxEditValue = maxValue * scale - minEditValue; \
  969. encoderPosition = (*ptr) * scale - minEditValue; \
  970. } \
  971. static void menu_action_setting_edit_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue) { \
  972. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  973. currentMenu = menu_edit_ ## _name; \
  974. }\
  975. static void menu_action_setting_edit_callback_ ## _name (const char* pstr, _type* ptr, _type minValue, _type maxValue, menuFunc_t callback) { \
  976. _menu_action_setting_edit_ ## _name(pstr, ptr, minValue, maxValue); \
  977. currentMenu = menu_edit_callback_ ## _name; \
  978. callbackFunc = callback; \
  979. }
  980. menu_edit_type(int, int3, itostr3, 1)
  981. menu_edit_type(float, float3, ftostr3, 1)
  982. menu_edit_type(float, float32, ftostr32, 100)
  983. menu_edit_type(float, float43, ftostr43, 1000)
  984. menu_edit_type(float, float5, ftostr5, 0.01)
  985. menu_edit_type(float, float51, ftostr51, 10)
  986. menu_edit_type(float, float52, ftostr52, 100)
  987. menu_edit_type(unsigned long, long5, ftostr5, 0.01)
  988. #ifdef REPRAPWORLD_KEYPAD
  989. static void reprapworld_keypad_move_z_up() {
  990. encoderPosition = 1;
  991. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  992. lcd_move_z();
  993. }
  994. static void reprapworld_keypad_move_z_down() {
  995. encoderPosition = -1;
  996. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  997. lcd_move_z();
  998. }
  999. static void reprapworld_keypad_move_x_left() {
  1000. encoderPosition = -1;
  1001. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1002. lcd_move_x();
  1003. }
  1004. static void reprapworld_keypad_move_x_right() {
  1005. encoderPosition = 1;
  1006. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1007. lcd_move_x();
  1008. }
  1009. static void reprapworld_keypad_move_y_down() {
  1010. encoderPosition = 1;
  1011. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1012. lcd_move_y();
  1013. }
  1014. static void reprapworld_keypad_move_y_up() {
  1015. encoderPosition = -1;
  1016. move_menu_scale = REPRAPWORLD_KEYPAD_MOVE_STEP;
  1017. lcd_move_y();
  1018. }
  1019. static void reprapworld_keypad_move_home() {
  1020. enquecommands_P((PSTR("G28"))); // move all axis home
  1021. }
  1022. #endif //REPRAPWORLD_KEYPAD
  1023. /** End of menus **/
  1024. static void lcd_quick_feedback() {
  1025. lcdDrawUpdate = 2;
  1026. blocking_enc = millis() + 500;
  1027. lcd_implementation_quick_feedback();
  1028. }
  1029. /** Menu action functions **/
  1030. static void menu_action_back(menuFunc_t data) { lcd_goto_menu(data); }
  1031. static void menu_action_submenu(menuFunc_t data) { lcd_goto_menu(data); }
  1032. static void menu_action_gcode(const char* pgcode) { enquecommands_P(pgcode); }
  1033. static void menu_action_function(menuFunc_t data) { (*data)(); }
  1034. static void menu_action_sdfile(const char* filename, char* longFilename) {
  1035. char cmd[30];
  1036. char* c;
  1037. sprintf_P(cmd, PSTR("M23 %s"), filename);
  1038. for(c = &cmd[4]; *c; c++) *c = tolower(*c);
  1039. enquecommand(cmd);
  1040. enquecommands_P(PSTR("M24"));
  1041. lcd_return_to_status();
  1042. }
  1043. static void menu_action_sddirectory(const char* filename, char* longFilename) {
  1044. card.chdir(filename);
  1045. encoderPosition = 0;
  1046. }
  1047. static void menu_action_setting_edit_bool(const char* pstr, bool* ptr) { *ptr = !(*ptr); }
  1048. static void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, menuFunc_t callback) {
  1049. menu_action_setting_edit_bool(pstr, ptr);
  1050. (*callback)();
  1051. }
  1052. #endif //ULTIPANEL
  1053. /** LCD API **/
  1054. void lcd_init() {
  1055. lcd_implementation_init();
  1056. #ifdef NEWPANEL
  1057. SET_INPUT(BTN_EN1);
  1058. SET_INPUT(BTN_EN2);
  1059. WRITE(BTN_EN1,HIGH);
  1060. WRITE(BTN_EN2,HIGH);
  1061. #if BTN_ENC > 0
  1062. SET_INPUT(BTN_ENC);
  1063. WRITE(BTN_ENC,HIGH);
  1064. #endif
  1065. #ifdef REPRAPWORLD_KEYPAD
  1066. pinMode(SHIFT_CLK,OUTPUT);
  1067. pinMode(SHIFT_LD,OUTPUT);
  1068. pinMode(SHIFT_OUT,INPUT);
  1069. WRITE(SHIFT_OUT,HIGH);
  1070. WRITE(SHIFT_LD,HIGH);
  1071. #endif
  1072. #else // Not NEWPANEL
  1073. #ifdef SR_LCD_2W_NL // Non latching 2 wire shift register
  1074. pinMode (SR_DATA_PIN, OUTPUT);
  1075. pinMode (SR_CLK_PIN, OUTPUT);
  1076. #elif defined(SHIFT_CLK)
  1077. pinMode(SHIFT_CLK,OUTPUT);
  1078. pinMode(SHIFT_LD,OUTPUT);
  1079. pinMode(SHIFT_EN,OUTPUT);
  1080. pinMode(SHIFT_OUT,INPUT);
  1081. WRITE(SHIFT_OUT,HIGH);
  1082. WRITE(SHIFT_LD,HIGH);
  1083. WRITE(SHIFT_EN,LOW);
  1084. #endif // SR_LCD_2W_NL
  1085. #endif//!NEWPANEL
  1086. #if defined(SDSUPPORT) && defined(SDCARDDETECT) && (SDCARDDETECT > 0)
  1087. pinMode(SDCARDDETECT, INPUT);
  1088. WRITE(SDCARDDETECT, HIGH);
  1089. lcd_oldcardstatus = IS_SD_INSERTED;
  1090. #endif //(SDCARDDETECT > 0)
  1091. #ifdef LCD_HAS_SLOW_BUTTONS
  1092. slow_buttons = 0;
  1093. #endif
  1094. lcd_buttons_update();
  1095. #ifdef ULTIPANEL
  1096. encoderDiff = 0;
  1097. #endif
  1098. }
  1099. int lcd_strlen(char *s) {
  1100. int i = 0, j = 0;
  1101. while (s[i]) {
  1102. if ((s[i] & 0xc0) != 0x80) j++;
  1103. i++;
  1104. }
  1105. return j;
  1106. }
  1107. int lcd_strlen_P(const char *s) {
  1108. int j = 0;
  1109. while (pgm_read_byte(s)) {
  1110. if ((pgm_read_byte(s) & 0xc0) != 0x80) j++;
  1111. s++;
  1112. }
  1113. return j;
  1114. }
  1115. void lcd_update() {
  1116. static unsigned long timeoutToStatus = 0;
  1117. #ifdef LCD_HAS_SLOW_BUTTONS
  1118. slow_buttons = lcd_implementation_read_slow_buttons(); // buttons which take too long to read in interrupt context
  1119. #endif
  1120. lcd_buttons_update();
  1121. #if (SDCARDDETECT > 0)
  1122. if (IS_SD_INSERTED != lcd_oldcardstatus && lcd_detected()) {
  1123. lcdDrawUpdate = 2;
  1124. lcd_oldcardstatus = IS_SD_INSERTED;
  1125. lcd_implementation_init( // to maybe revive the LCD if static electricity killed it.
  1126. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT) && !defined(DOGLCD)
  1127. currentMenu == lcd_status_screen
  1128. #endif
  1129. );
  1130. if (lcd_oldcardstatus) {
  1131. card.initsd();
  1132. LCD_MESSAGEPGM(MSG_SD_INSERTED);
  1133. }
  1134. else {
  1135. card.release();
  1136. LCD_MESSAGEPGM(MSG_SD_REMOVED);
  1137. }
  1138. }
  1139. #endif//CARDINSERTED
  1140. uint32_t ms = millis();
  1141. if (ms > lcd_next_update_millis) {
  1142. #ifdef ULTIPANEL
  1143. #ifdef REPRAPWORLD_KEYPAD
  1144. if (REPRAPWORLD_KEYPAD_MOVE_Z_UP) reprapworld_keypad_move_z_up();
  1145. if (REPRAPWORLD_KEYPAD_MOVE_Z_DOWN) reprapworld_keypad_move_z_down();
  1146. if (REPRAPWORLD_KEYPAD_MOVE_X_LEFT) reprapworld_keypad_move_x_left();
  1147. if (REPRAPWORLD_KEYPAD_MOVE_X_RIGHT) reprapworld_keypad_move_x_right();
  1148. if (REPRAPWORLD_KEYPAD_MOVE_Y_DOWN) reprapworld_keypad_move_y_down();
  1149. if (REPRAPWORLD_KEYPAD_MOVE_Y_UP) reprapworld_keypad_move_y_up();
  1150. if (REPRAPWORLD_KEYPAD_MOVE_HOME) reprapworld_keypad_move_home();
  1151. #endif
  1152. bool encoderPastThreshold = (abs(encoderDiff) >= ENCODER_PULSES_PER_STEP);
  1153. if (encoderPastThreshold || LCD_CLICKED) {
  1154. if (encoderPastThreshold) {
  1155. int32_t encoderMultiplier = 1;
  1156. #ifdef ENCODER_RATE_MULTIPLIER
  1157. if (encoderRateMultiplierEnabled) {
  1158. int32_t encoderMovementSteps = abs(encoderDiff) / ENCODER_PULSES_PER_STEP;
  1159. if (lastEncoderMovementMillis != 0) {
  1160. // Note that the rate is always calculated between to passes through the
  1161. // loop and that the abs of the encoderDiff value is tracked.
  1162. float encoderStepRate = (float)(encoderMovementSteps) / ((float)(ms - lastEncoderMovementMillis)) * 1000.0;
  1163. if (encoderStepRate >= ENCODER_100X_STEPS_PER_SEC) encoderMultiplier = 100;
  1164. else if (encoderStepRate >= ENCODER_10X_STEPS_PER_SEC) encoderMultiplier = 10;
  1165. #ifdef ENCODER_RATE_MULTIPLIER_DEBUG
  1166. SERIAL_ECHO_START;
  1167. SERIAL_ECHO("Enc Step Rate: ");
  1168. SERIAL_ECHO(encoderStepRate);
  1169. SERIAL_ECHO(" Multiplier: ");
  1170. SERIAL_ECHO(encoderMultiplier);
  1171. SERIAL_ECHO(" ENCODER_10X_STEPS_PER_SEC: ");
  1172. SERIAL_ECHO(ENCODER_10X_STEPS_PER_SEC);
  1173. SERIAL_ECHO(" ENCODER_100X_STEPS_PER_SEC: ");
  1174. SERIAL_ECHOLN(ENCODER_100X_STEPS_PER_SEC);
  1175. #endif //ENCODER_RATE_MULTIPLIER_DEBUG
  1176. }
  1177. lastEncoderMovementMillis = ms;
  1178. }
  1179. #endif //ENCODER_RATE_MULTIPLIER
  1180. lcdDrawUpdate = 1;
  1181. encoderPosition += (encoderDiff * encoderMultiplier) / ENCODER_PULSES_PER_STEP;
  1182. encoderDiff = 0;
  1183. }
  1184. timeoutToStatus = ms + LCD_TIMEOUT_TO_STATUS;
  1185. }
  1186. #endif //ULTIPANEL
  1187. #ifdef DOGLCD // Changes due to different driver architecture of the DOGM display
  1188. blink++; // Variable for fan animation and alive dot
  1189. u8g.firstPage();
  1190. do {
  1191. u8g.setFont(FONT_MENU);
  1192. u8g.setPrintPos(125, 0);
  1193. if (blink % 2) u8g.setColorIndex(1); else u8g.setColorIndex(0); // Set color for the alive dot
  1194. u8g.drawPixel(127, 63); // draw alive dot
  1195. u8g.setColorIndex(1); // black on white
  1196. (*currentMenu)();
  1197. if (!lcdDrawUpdate) break; // Terminate display update, when nothing new to draw. This must be done before the last dogm.next()
  1198. } while( u8g.nextPage() );
  1199. #else
  1200. (*currentMenu)();
  1201. #endif
  1202. #ifdef LCD_HAS_STATUS_INDICATORS
  1203. lcd_implementation_update_indicators();
  1204. #endif
  1205. #ifdef ULTIPANEL
  1206. if (currentMenu != lcd_status_screen && millis() > timeoutToStatus) {
  1207. lcd_return_to_status();
  1208. lcdDrawUpdate = 2;
  1209. }
  1210. #endif //ULTIPANEL
  1211. if (lcdDrawUpdate == 2) lcd_implementation_clear();
  1212. if (lcdDrawUpdate) lcdDrawUpdate--;
  1213. lcd_next_update_millis = millis() + LCD_UPDATE_INTERVAL;
  1214. }
  1215. }
  1216. void lcd_ignore_click(bool b) {
  1217. ignore_click = b;
  1218. wait_for_unclick = false;
  1219. }
  1220. void lcd_finishstatus() {
  1221. int len = lcd_strlen(lcd_status_message);
  1222. if (len > 0) {
  1223. while (len < LCD_WIDTH) {
  1224. lcd_status_message[len++] = ' ';
  1225. }
  1226. }
  1227. lcd_status_message[LCD_WIDTH] = '\0';
  1228. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT) && !defined(DOGLCD)
  1229. #if PROGRESS_MSG_EXPIRE > 0
  1230. messageTick =
  1231. #endif
  1232. progressBarTick = millis();
  1233. #endif
  1234. lcdDrawUpdate = 2;
  1235. #ifdef FILAMENT_LCD_DISPLAY
  1236. message_millis = millis(); //get status message to show up for a while
  1237. #endif
  1238. }
  1239. void lcd_setstatus(const char* message) {
  1240. if (lcd_status_message_level > 0) return;
  1241. strncpy(lcd_status_message, message, LCD_WIDTH);
  1242. lcd_finishstatus();
  1243. }
  1244. void lcd_setstatuspgm(const char* message) {
  1245. if (lcd_status_message_level > 0) return;
  1246. strncpy_P(lcd_status_message, message, LCD_WIDTH);
  1247. lcd_finishstatus();
  1248. }
  1249. void lcd_setalertstatuspgm(const char* message) {
  1250. lcd_setstatuspgm(message);
  1251. lcd_status_message_level = 1;
  1252. #ifdef ULTIPANEL
  1253. lcd_return_to_status();
  1254. #endif
  1255. }
  1256. void lcd_reset_alert_level() { lcd_status_message_level = 0; }
  1257. #ifdef DOGLCD
  1258. void lcd_setcontrast(uint8_t value) {
  1259. lcd_contrast = value & 63;
  1260. u8g.setContrast(lcd_contrast);
  1261. }
  1262. #endif
  1263. #ifdef ULTIPANEL
  1264. ////////////////////////
  1265. // Setup Rotary Encoder Bit Values (for two pin encoders to indicate movement)
  1266. // These values are independent of which pins are used for EN_A and EN_B indications
  1267. // The rotary encoder part is also independent to the chipset used for the LCD
  1268. #if defined(EN_A) && defined(EN_B)
  1269. #define encrot0 0
  1270. #define encrot1 2
  1271. #define encrot2 3
  1272. #define encrot3 1
  1273. #endif
  1274. /* Warning: This function is called from interrupt context */
  1275. void lcd_buttons_update() {
  1276. #ifdef NEWPANEL
  1277. uint8_t newbutton = 0;
  1278. if (READ(BTN_EN1) == 0) newbutton |= EN_A;
  1279. if (READ(BTN_EN2) == 0) newbutton |= EN_B;
  1280. #if BTN_ENC > 0
  1281. if (millis() > blocking_enc && READ(BTN_ENC) == 0) newbutton |= EN_C;
  1282. #endif
  1283. buttons = newbutton;
  1284. #ifdef LCD_HAS_SLOW_BUTTONS
  1285. buttons |= slow_buttons;
  1286. #endif
  1287. #ifdef REPRAPWORLD_KEYPAD
  1288. // for the reprapworld_keypad
  1289. uint8_t newbutton_reprapworld_keypad=0;
  1290. WRITE(SHIFT_LD, LOW);
  1291. WRITE(SHIFT_LD, HIGH);
  1292. for(int8_t i = 0; i < 8; i++) {
  1293. newbutton_reprapworld_keypad >>= 1;
  1294. if (READ(SHIFT_OUT)) newbutton_reprapworld_keypad |= BIT(7);
  1295. WRITE(SHIFT_CLK, HIGH);
  1296. WRITE(SHIFT_CLK, LOW);
  1297. }
  1298. buttons_reprapworld_keypad=~newbutton_reprapworld_keypad; //invert it, because a pressed switch produces a logical 0
  1299. #endif
  1300. #else //read it from the shift register
  1301. uint8_t newbutton = 0;
  1302. WRITE(SHIFT_LD, LOW);
  1303. WRITE(SHIFT_LD, HIGH);
  1304. unsigned char tmp_buttons = 0;
  1305. for(int8_t i=0; i<8; i++) {
  1306. newbutton >>= 1;
  1307. if (READ(SHIFT_OUT)) newbutton |= BIT(7);
  1308. WRITE(SHIFT_CLK, HIGH);
  1309. WRITE(SHIFT_CLK, LOW);
  1310. }
  1311. buttons = ~newbutton; //invert it, because a pressed switch produces a logical 0
  1312. #endif //!NEWPANEL
  1313. //manage encoder rotation
  1314. uint8_t enc=0;
  1315. if (buttons & EN_A) enc |= B01;
  1316. if (buttons & EN_B) enc |= B10;
  1317. if (enc != lastEncoderBits) {
  1318. switch(enc) {
  1319. case encrot0:
  1320. if (lastEncoderBits==encrot3) encoderDiff++;
  1321. else if (lastEncoderBits==encrot1) encoderDiff--;
  1322. break;
  1323. case encrot1:
  1324. if (lastEncoderBits==encrot0) encoderDiff++;
  1325. else if (lastEncoderBits==encrot2) encoderDiff--;
  1326. break;
  1327. case encrot2:
  1328. if (lastEncoderBits==encrot1) encoderDiff++;
  1329. else if (lastEncoderBits==encrot3) encoderDiff--;
  1330. break;
  1331. case encrot3:
  1332. if (lastEncoderBits==encrot2) encoderDiff++;
  1333. else if (lastEncoderBits==encrot0) encoderDiff--;
  1334. break;
  1335. }
  1336. }
  1337. lastEncoderBits = enc;
  1338. }
  1339. bool lcd_detected(void) {
  1340. #if (defined(LCD_I2C_TYPE_MCP23017) || defined(LCD_I2C_TYPE_MCP23008)) && defined(DETECT_DEVICE)
  1341. return lcd.LcdDetected() == 1;
  1342. #else
  1343. return true;
  1344. #endif
  1345. }
  1346. void lcd_buzz(long duration, uint16_t freq) {
  1347. #ifdef LCD_USE_I2C_BUZZER
  1348. lcd.buzz(duration,freq);
  1349. #endif
  1350. }
  1351. bool lcd_clicked() { return LCD_CLICKED; }
  1352. #endif //ULTIPANEL
  1353. /********************************/
  1354. /** Float conversion utilities **/
  1355. /********************************/
  1356. // convert float to string with +123.4 format
  1357. char conv[8];
  1358. char *ftostr3(const float &x)
  1359. {
  1360. return itostr3((int)x);
  1361. }
  1362. char *itostr2(const uint8_t &x)
  1363. {
  1364. //sprintf(conv,"%5.1f",x);
  1365. int xx=x;
  1366. conv[0]=(xx/10)%10+'0';
  1367. conv[1]=(xx)%10+'0';
  1368. conv[2]=0;
  1369. return conv;
  1370. }
  1371. // Convert float to string with 123.4 format, dropping sign
  1372. char *ftostr31(const float &x)
  1373. {
  1374. int xx=x*10;
  1375. conv[0]=(xx>=0)?'+':'-';
  1376. xx=abs(xx);
  1377. conv[1]=(xx/1000)%10+'0';
  1378. conv[2]=(xx/100)%10+'0';
  1379. conv[3]=(xx/10)%10+'0';
  1380. conv[4]='.';
  1381. conv[5]=(xx)%10+'0';
  1382. conv[6]=0;
  1383. return conv;
  1384. }
  1385. // Convert float to string with 123.4 format
  1386. char *ftostr31ns(const float &x)
  1387. {
  1388. int xx=x*10;
  1389. //conv[0]=(xx>=0)?'+':'-';
  1390. xx=abs(xx);
  1391. conv[0]=(xx/1000)%10+'0';
  1392. conv[1]=(xx/100)%10+'0';
  1393. conv[2]=(xx/10)%10+'0';
  1394. conv[3]='.';
  1395. conv[4]=(xx)%10+'0';
  1396. conv[5]=0;
  1397. return conv;
  1398. }
  1399. char *ftostr32(const float &x)
  1400. {
  1401. long xx=x*100;
  1402. if (xx >= 0)
  1403. conv[0]=(xx/10000)%10+'0';
  1404. else
  1405. conv[0]='-';
  1406. xx=abs(xx);
  1407. conv[1]=(xx/1000)%10+'0';
  1408. conv[2]=(xx/100)%10+'0';
  1409. conv[3]='.';
  1410. conv[4]=(xx/10)%10+'0';
  1411. conv[5]=(xx)%10+'0';
  1412. conv[6]=0;
  1413. return conv;
  1414. }
  1415. // Convert float to string with 1.234 format
  1416. char *ftostr43(const float &x)
  1417. {
  1418. long xx = x * 1000;
  1419. if (xx >= 0)
  1420. conv[0] = (xx / 1000) % 10 + '0';
  1421. else
  1422. conv[0] = '-';
  1423. xx = abs(xx);
  1424. conv[1] = '.';
  1425. conv[2] = (xx / 100) % 10 + '0';
  1426. conv[3] = (xx / 10) % 10 + '0';
  1427. conv[4] = (xx) % 10 + '0';
  1428. conv[5] = 0;
  1429. return conv;
  1430. }
  1431. //Float to string with 1.23 format
  1432. char *ftostr12ns(const float &x)
  1433. {
  1434. long xx=x*100;
  1435. xx=abs(xx);
  1436. conv[0]=(xx/100)%10+'0';
  1437. conv[1]='.';
  1438. conv[2]=(xx/10)%10+'0';
  1439. conv[3]=(xx)%10+'0';
  1440. conv[4]=0;
  1441. return conv;
  1442. }
  1443. // convert float to space-padded string with -_23.4_ format
  1444. char *ftostr32sp(const float &x) {
  1445. long xx = abs(x * 100);
  1446. uint8_t dig;
  1447. if (x < 0) { // negative val = -_0
  1448. conv[0] = '-';
  1449. dig = (xx / 1000) % 10;
  1450. conv[1] = dig ? '0' + dig : ' ';
  1451. }
  1452. else { // positive val = __0
  1453. dig = (xx / 10000) % 10;
  1454. if (dig) {
  1455. conv[0] = '0' + dig;
  1456. conv[1] = '0' + (xx / 1000) % 10;
  1457. }
  1458. else {
  1459. conv[0] = ' ';
  1460. dig = (xx / 1000) % 10;
  1461. conv[1] = dig ? '0' + dig : ' ';
  1462. }
  1463. }
  1464. conv[2] = '0' + (xx / 100) % 10; // lsd always
  1465. dig = xx % 10;
  1466. if (dig) { // 2 decimal places
  1467. conv[5] = '0' + dig;
  1468. conv[4] = '0' + (xx / 10) % 10;
  1469. conv[3] = '.';
  1470. }
  1471. else { // 1 or 0 decimal place
  1472. dig = (xx / 10) % 10;
  1473. if (dig) {
  1474. conv[4] = '0' + dig;
  1475. conv[3] = '.';
  1476. }
  1477. else {
  1478. conv[3] = conv[4] = ' ';
  1479. }
  1480. conv[5] = ' ';
  1481. }
  1482. conv[6] = '\0';
  1483. return conv;
  1484. }
  1485. char *itostr31(const int &xx)
  1486. {
  1487. conv[0]=(xx>=0)?'+':'-';
  1488. conv[1]=(xx/1000)%10+'0';
  1489. conv[2]=(xx/100)%10+'0';
  1490. conv[3]=(xx/10)%10+'0';
  1491. conv[4]='.';
  1492. conv[5]=(xx)%10+'0';
  1493. conv[6]=0;
  1494. return conv;
  1495. }
  1496. // Convert int to rj string with 123 or -12 format
  1497. char *itostr3(const int &x)
  1498. {
  1499. int xx = x;
  1500. if (xx < 0) {
  1501. conv[0]='-';
  1502. xx = -xx;
  1503. } else if (xx >= 100)
  1504. conv[0]=(xx/100)%10+'0';
  1505. else
  1506. conv[0]=' ';
  1507. if (xx >= 10)
  1508. conv[1]=(xx/10)%10+'0';
  1509. else
  1510. conv[1]=' ';
  1511. conv[2]=(xx)%10+'0';
  1512. conv[3]=0;
  1513. return conv;
  1514. }
  1515. // Convert int to lj string with 123 format
  1516. char *itostr3left(const int &xx)
  1517. {
  1518. if (xx >= 100)
  1519. {
  1520. conv[0]=(xx/100)%10+'0';
  1521. conv[1]=(xx/10)%10+'0';
  1522. conv[2]=(xx)%10+'0';
  1523. conv[3]=0;
  1524. }
  1525. else if (xx >= 10)
  1526. {
  1527. conv[0]=(xx/10)%10+'0';
  1528. conv[1]=(xx)%10+'0';
  1529. conv[2]=0;
  1530. }
  1531. else
  1532. {
  1533. conv[0]=(xx)%10+'0';
  1534. conv[1]=0;
  1535. }
  1536. return conv;
  1537. }
  1538. // Convert int to rj string with 1234 format
  1539. char *itostr4(const int &xx) {
  1540. conv[0] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  1541. conv[1] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  1542. conv[2] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  1543. conv[3] = xx % 10 + '0';
  1544. conv[4] = 0;
  1545. return conv;
  1546. }
  1547. // Convert float to rj string with 12345 format
  1548. char *ftostr5(const float &x) {
  1549. long xx = abs(x);
  1550. conv[0] = xx >= 10000 ? (xx / 10000) % 10 + '0' : ' ';
  1551. conv[1] = xx >= 1000 ? (xx / 1000) % 10 + '0' : ' ';
  1552. conv[2] = xx >= 100 ? (xx / 100) % 10 + '0' : ' ';
  1553. conv[3] = xx >= 10 ? (xx / 10) % 10 + '0' : ' ';
  1554. conv[4] = xx % 10 + '0';
  1555. conv[5] = 0;
  1556. return conv;
  1557. }
  1558. // Convert float to string with +1234.5 format
  1559. char *ftostr51(const float &x)
  1560. {
  1561. long xx=x*10;
  1562. conv[0]=(xx>=0)?'+':'-';
  1563. xx=abs(xx);
  1564. conv[1]=(xx/10000)%10+'0';
  1565. conv[2]=(xx/1000)%10+'0';
  1566. conv[3]=(xx/100)%10+'0';
  1567. conv[4]=(xx/10)%10+'0';
  1568. conv[5]='.';
  1569. conv[6]=(xx)%10+'0';
  1570. conv[7]=0;
  1571. return conv;
  1572. }
  1573. // Convert float to string with +123.45 format
  1574. char *ftostr52(const float &x)
  1575. {
  1576. long xx=x*100;
  1577. conv[0]=(xx>=0)?'+':'-';
  1578. xx=abs(xx);
  1579. conv[1]=(xx/10000)%10+'0';
  1580. conv[2]=(xx/1000)%10+'0';
  1581. conv[3]=(xx/100)%10+'0';
  1582. conv[4]='.';
  1583. conv[5]=(xx/10)%10+'0';
  1584. conv[6]=(xx)%10+'0';
  1585. conv[7]=0;
  1586. return conv;
  1587. }
  1588. #endif //ULTRA_LCD