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

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