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_impl_HD44780.h 29KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #ifndef ULTRALCD_IMPL_HD44780_H
  23. #define ULTRALCD_IMPL_HD44780_H
  24. /**
  25. * Implementation of the LCD display routines for a Hitachi HD44780 display.
  26. * These are the most common LCD character displays.
  27. */
  28. #include "utility.h"
  29. #include "duration_t.h"
  30. extern volatile uint8_t buttons; //an extended version of the last checked buttons in a bit array.
  31. ////////////////////////////////////
  32. // Setup button and encode mappings for each panel (into 'buttons' variable
  33. //
  34. // This is just to map common functions (across different panels) onto the same
  35. // macro name. The mapping is independent of whether the button is directly connected or
  36. // via a shift/i2c register.
  37. #if ENABLED(ULTIPANEL)
  38. //
  39. // Setup other button mappings of each panel
  40. //
  41. #if ENABLED(LCD_I2C_VIKI)
  42. #define B_I2C_BTN_OFFSET 3 // (the first three bit positions reserved for EN_A, EN_B, EN_C)
  43. // button and encoder bit positions within 'buttons'
  44. #define B_LE (BUTTON_LEFT<<B_I2C_BTN_OFFSET) // The remaining normalized buttons are all read via I2C
  45. #define B_UP (BUTTON_UP<<B_I2C_BTN_OFFSET)
  46. #define B_MI (BUTTON_SELECT<<B_I2C_BTN_OFFSET)
  47. #define B_DW (BUTTON_DOWN<<B_I2C_BTN_OFFSET)
  48. #define B_RI (BUTTON_RIGHT<<B_I2C_BTN_OFFSET)
  49. #if BUTTON_EXISTS(ENC)
  50. // the pause/stop/restart button is connected to BTN_ENC when used
  51. #define B_ST (EN_C) // Map the pause/stop/resume button into its normalized functional name
  52. #undef LCD_CLICKED
  53. #define LCD_CLICKED (buttons&(B_MI|B_RI|B_ST)) // pause/stop button also acts as click until we implement proper pause/stop.
  54. #else
  55. #undef LCD_CLICKED
  56. #define LCD_CLICKED (buttons&(B_MI|B_RI))
  57. #endif
  58. // I2C buttons take too long to read inside an interrupt context and so we read them during lcd_update
  59. #define LCD_HAS_SLOW_BUTTONS
  60. #elif ENABLED(LCD_I2C_PANELOLU2)
  61. #if !BUTTON_EXISTS(ENC) // Use I2C if not directly connected to a pin
  62. #define B_I2C_BTN_OFFSET 3 // (the first three bit positions reserved for EN_A, EN_B, EN_C)
  63. #define B_MI (PANELOLU2_ENCODER_C<<B_I2C_BTN_OFFSET) // requires LiquidTWI2 library v1.2.3 or later
  64. #undef LCD_CLICKED
  65. #define LCD_CLICKED (buttons & B_MI)
  66. // I2C buttons take too long to read inside an interrupt context and so we read them during lcd_update
  67. #define LCD_HAS_SLOW_BUTTONS
  68. #endif
  69. #elif DISABLED(NEWPANEL) // old style ULTIPANEL
  70. // Shift register bits correspond to buttons:
  71. #define BL_LE 7 // Left
  72. #define BL_UP 6 // Up
  73. #define BL_MI 5 // Middle
  74. #define BL_DW 4 // Down
  75. #define BL_RI 3 // Right
  76. #define BL_ST 2 // Red Button
  77. #define B_LE (_BV(BL_LE))
  78. #define B_UP (_BV(BL_UP))
  79. #define B_MI (_BV(BL_MI))
  80. #define B_DW (_BV(BL_DW))
  81. #define B_RI (_BV(BL_RI))
  82. #define B_ST (_BV(BL_ST))
  83. #define LCD_CLICKED ((buttons & B_MI) || (buttons & B_ST))
  84. #endif
  85. #endif //ULTIPANEL
  86. ////////////////////////////////////
  87. // Create LCD class instance and chipset-specific information
  88. #if ENABLED(LCD_I2C_TYPE_PCF8575)
  89. // note: these are register mapped pins on the PCF8575 controller not Arduino pins
  90. #define LCD_I2C_PIN_BL 3
  91. #define LCD_I2C_PIN_EN 2
  92. #define LCD_I2C_PIN_RW 1
  93. #define LCD_I2C_PIN_RS 0
  94. #define LCD_I2C_PIN_D4 4
  95. #define LCD_I2C_PIN_D5 5
  96. #define LCD_I2C_PIN_D6 6
  97. #define LCD_I2C_PIN_D7 7
  98. #include <Wire.h>
  99. #include <LCD.h>
  100. #include <LiquidCrystal_I2C.h>
  101. #define LCD_CLASS LiquidCrystal_I2C
  102. LCD_CLASS lcd(LCD_I2C_ADDRESS, LCD_I2C_PIN_EN, LCD_I2C_PIN_RW, LCD_I2C_PIN_RS, LCD_I2C_PIN_D4, LCD_I2C_PIN_D5, LCD_I2C_PIN_D6, LCD_I2C_PIN_D7);
  103. #elif ENABLED(LCD_I2C_TYPE_MCP23017)
  104. //for the LED indicators (which maybe mapped to different things in lcd_implementation_update_indicators())
  105. #define LED_A 0x04 //100
  106. #define LED_B 0x02 //010
  107. #define LED_C 0x01 //001
  108. #define LCD_HAS_STATUS_INDICATORS
  109. #include <Wire.h>
  110. #include <LiquidTWI2.h>
  111. #define LCD_CLASS LiquidTWI2
  112. #if ENABLED(DETECT_DEVICE)
  113. LCD_CLASS lcd(LCD_I2C_ADDRESS, 1);
  114. #else
  115. LCD_CLASS lcd(LCD_I2C_ADDRESS);
  116. #endif
  117. #elif ENABLED(LCD_I2C_TYPE_MCP23008)
  118. #include <Wire.h>
  119. #include <LiquidTWI2.h>
  120. #define LCD_CLASS LiquidTWI2
  121. #if ENABLED(DETECT_DEVICE)
  122. LCD_CLASS lcd(LCD_I2C_ADDRESS, 1);
  123. #else
  124. LCD_CLASS lcd(LCD_I2C_ADDRESS);
  125. #endif
  126. #elif ENABLED(LCD_I2C_TYPE_PCA8574)
  127. #include <LiquidCrystal_I2C.h>
  128. #define LCD_CLASS LiquidCrystal_I2C
  129. LCD_CLASS lcd(LCD_I2C_ADDRESS, LCD_WIDTH, LCD_HEIGHT);
  130. // 2 wire Non-latching LCD SR from:
  131. // https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/schematics#!shiftregister-connection
  132. #elif ENABLED(SR_LCD_2W_NL)
  133. extern "C" void __cxa_pure_virtual() { while (1); }
  134. #include <LCD.h>
  135. #include <LiquidCrystal_SR.h>
  136. #define LCD_CLASS LiquidCrystal_SR
  137. #if defined(SR_STROBE_PIN)
  138. LCD_CLASS lcd(SR_DATA_PIN, SR_CLK_PIN, SR_STROBE_PIN);
  139. #else
  140. LCD_CLASS lcd(SR_DATA_PIN, SR_CLK_PIN);
  141. #endif
  142. #elif ENABLED(LCM1602)
  143. #include <Wire.h>
  144. #include <LCD.h>
  145. #include <LiquidCrystal_I2C.h>
  146. #define LCD_CLASS LiquidCrystal_I2C
  147. LCD_CLASS lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
  148. #else
  149. // Standard directly connected LCD implementations
  150. #include <LiquidCrystal.h>
  151. #define LCD_CLASS LiquidCrystal
  152. LCD_CLASS lcd(LCD_PINS_RS, LCD_PINS_ENABLE, LCD_PINS_D4, LCD_PINS_D5, LCD_PINS_D6, LCD_PINS_D7); //RS,Enable,D4,D5,D6,D7
  153. #endif
  154. #include "utf_mapper.h"
  155. #if ENABLED(LCD_PROGRESS_BAR)
  156. static millis_t progress_bar_ms = 0;
  157. #if PROGRESS_MSG_EXPIRE > 0
  158. static millis_t expire_status_ms = 0;
  159. #endif
  160. #define LCD_STR_PROGRESS "\x03\x04\x05"
  161. #endif
  162. #if ENABLED(LCD_HAS_STATUS_INDICATORS)
  163. static void lcd_implementation_update_indicators();
  164. #endif
  165. static void lcd_set_custom_characters(
  166. #if ENABLED(LCD_PROGRESS_BAR)
  167. bool info_screen_charset = true
  168. #endif
  169. ) {
  170. static byte bedTemp[8] = {
  171. B00000,
  172. B11111,
  173. B10101,
  174. B10001,
  175. B10101,
  176. B11111,
  177. B00000,
  178. B00000
  179. }; //thanks Sonny Mounicou
  180. static byte degree[8] = {
  181. B01100,
  182. B10010,
  183. B10010,
  184. B01100,
  185. B00000,
  186. B00000,
  187. B00000,
  188. B00000
  189. };
  190. static byte thermometer[8] = {
  191. B00100,
  192. B01010,
  193. B01010,
  194. B01010,
  195. B01010,
  196. B10001,
  197. B10001,
  198. B01110
  199. };
  200. static byte feedrate[8] = {
  201. B11100,
  202. B10000,
  203. B11000,
  204. B10111,
  205. B00101,
  206. B00110,
  207. B00101,
  208. B00000
  209. }; //thanks Sonny Mounicou
  210. static byte clock[8] = {
  211. B00000,
  212. B01110,
  213. B10011,
  214. B10101,
  215. B10001,
  216. B01110,
  217. B00000,
  218. B00000
  219. }; //thanks Sonny Mounicou
  220. lcd.createChar(LCD_STR_BEDTEMP[0], bedTemp);
  221. lcd.createChar(LCD_STR_DEGREE[0], degree);
  222. lcd.createChar(LCD_STR_THERMOMETER[0], thermometer);
  223. lcd.createChar(LCD_STR_FEEDRATE[0], feedrate);
  224. lcd.createChar(LCD_STR_CLOCK[0], clock);
  225. #if ENABLED(SDSUPPORT)
  226. static byte uplevel[8] = {
  227. B00100,
  228. B01110,
  229. B11111,
  230. B00100,
  231. B11100,
  232. B00000,
  233. B00000,
  234. B00000
  235. }; //thanks joris
  236. static byte refresh[8] = {
  237. B00000,
  238. B00110,
  239. B11001,
  240. B11000,
  241. B00011,
  242. B10011,
  243. B01100,
  244. B00000,
  245. }; //thanks joris
  246. static byte folder[8] = {
  247. B00000,
  248. B11100,
  249. B11111,
  250. B10001,
  251. B10001,
  252. B11111,
  253. B00000,
  254. B00000
  255. }; //thanks joris
  256. #if ENABLED(LCD_PROGRESS_BAR)
  257. static byte progress[3][8] = { {
  258. B00000,
  259. B10000,
  260. B10000,
  261. B10000,
  262. B10000,
  263. B10000,
  264. B10000,
  265. B00000
  266. }, {
  267. B00000,
  268. B10100,
  269. B10100,
  270. B10100,
  271. B10100,
  272. B10100,
  273. B10100,
  274. B00000
  275. }, {
  276. B00000,
  277. B10101,
  278. B10101,
  279. B10101,
  280. B10101,
  281. B10101,
  282. B10101,
  283. B00000
  284. } };
  285. static bool char_mode = false;
  286. if (info_screen_charset != char_mode) {
  287. char_mode = info_screen_charset;
  288. if (info_screen_charset) { // Progress bar characters for info screen
  289. for (int i = 3; i--;) lcd.createChar(LCD_STR_PROGRESS[i], progress[i]);
  290. }
  291. else { // Custom characters for submenus
  292. lcd.createChar(LCD_STR_UPLEVEL[0], uplevel);
  293. lcd.createChar(LCD_STR_REFRESH[0], refresh);
  294. lcd.createChar(LCD_STR_FOLDER[0], folder);
  295. }
  296. }
  297. #else
  298. lcd.createChar(LCD_STR_UPLEVEL[0], uplevel);
  299. lcd.createChar(LCD_STR_REFRESH[0], refresh);
  300. lcd.createChar(LCD_STR_FOLDER[0], folder);
  301. #endif
  302. #endif
  303. }
  304. static void lcd_implementation_init(
  305. #if ENABLED(LCD_PROGRESS_BAR)
  306. bool info_screen_charset = true
  307. #endif
  308. ) {
  309. #if ENABLED(LCD_I2C_TYPE_PCF8575)
  310. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  311. #ifdef LCD_I2C_PIN_BL
  312. lcd.setBacklightPin(LCD_I2C_PIN_BL, POSITIVE);
  313. lcd.setBacklight(HIGH);
  314. #endif
  315. #elif ENABLED(LCD_I2C_TYPE_MCP23017)
  316. lcd.setMCPType(LTI_TYPE_MCP23017);
  317. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  318. lcd_implementation_update_indicators();
  319. #elif ENABLED(LCD_I2C_TYPE_MCP23008)
  320. lcd.setMCPType(LTI_TYPE_MCP23008);
  321. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  322. #elif ENABLED(LCD_I2C_TYPE_PCA8574)
  323. lcd.init();
  324. lcd.backlight();
  325. #else
  326. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  327. #endif
  328. lcd_set_custom_characters(
  329. #if ENABLED(LCD_PROGRESS_BAR)
  330. info_screen_charset
  331. #endif
  332. );
  333. lcd.clear();
  334. }
  335. static void lcd_implementation_clear() { lcd.clear(); }
  336. /* Arduino < 1.0.0 is missing a function to print PROGMEM strings, so we need to implement our own */
  337. void lcd_printPGM(const char *str) {
  338. for (; char c = pgm_read_byte(str); ++str) charset_mapper(c);
  339. }
  340. void lcd_print(const char* str) {
  341. for (uint8_t i = 0; char c = str[i]; ++i) charset_mapper(c);
  342. }
  343. void lcd_print(char c) { charset_mapper(c); }
  344. #if ENABLED(SHOW_BOOTSCREEN)
  345. void lcd_erase_line(int line) {
  346. lcd.setCursor(0, line);
  347. for (int i = 0; i < LCD_WIDTH; i++)
  348. lcd_print(' ');
  349. }
  350. // Scroll the PSTR 'text' in a 'len' wide field for 'time' milliseconds at position col,line
  351. void lcd_scroll(int col, int line, const char* text, int len, int time) {
  352. char tmp[LCD_WIDTH + 1] = {0};
  353. int n = max(lcd_strlen_P(text) - len, 0);
  354. for (int i = 0; i <= n; i++) {
  355. strncpy_P(tmp, text + i, min(len, LCD_WIDTH));
  356. lcd.setCursor(col, line);
  357. lcd_print(tmp);
  358. delay(time / max(n, 1));
  359. }
  360. }
  361. static void logo_lines(const char *extra) {
  362. int indent = (LCD_WIDTH - 8 - lcd_strlen_P(extra)) / 2;
  363. lcd.setCursor(indent, 0); lcd.print('\x00'); lcd_printPGM(PSTR( "------" )); lcd.print('\x01');
  364. lcd.setCursor(indent, 1); lcd_printPGM(PSTR("|Marlin|")); lcd_printPGM(extra);
  365. lcd.setCursor(indent, 2); lcd.print('\x02'); lcd_printPGM(PSTR( "------" )); lcd.print('\x03');
  366. }
  367. void bootscreen() {
  368. byte top_left[8] = {
  369. B00000,
  370. B00000,
  371. B00000,
  372. B00000,
  373. B00001,
  374. B00010,
  375. B00100,
  376. B00100
  377. };
  378. byte top_right[8] = {
  379. B00000,
  380. B00000,
  381. B00000,
  382. B11100,
  383. B11100,
  384. B01100,
  385. B00100,
  386. B00100
  387. };
  388. byte botom_left[8] = {
  389. B00100,
  390. B00010,
  391. B00001,
  392. B00000,
  393. B00000,
  394. B00000,
  395. B00000,
  396. B00000
  397. };
  398. byte botom_right[8] = {
  399. B00100,
  400. B01000,
  401. B10000,
  402. B00000,
  403. B00000,
  404. B00000,
  405. B00000,
  406. B00000
  407. };
  408. lcd.createChar(0, top_left);
  409. lcd.createChar(1, top_right);
  410. lcd.createChar(2, botom_left);
  411. lcd.createChar(3, botom_right);
  412. lcd.clear();
  413. #define LCD_EXTRA_SPACE (LCD_WIDTH-8)
  414. #define CENTER_OR_SCROLL(STRING,DELAY) \
  415. lcd_erase_line(3); \
  416. if (strlen(STRING) <= LCD_WIDTH) { \
  417. lcd.setCursor((LCD_WIDTH - lcd_strlen_P(PSTR(STRING))) / 2, 3); \
  418. lcd_printPGM(PSTR(STRING)); \
  419. safe_delay(DELAY); \
  420. } \
  421. else { \
  422. lcd_scroll(0, 3, PSTR(STRING), LCD_WIDTH, DELAY); \
  423. }
  424. #ifdef STRING_SPLASH_LINE1
  425. //
  426. // Show the Marlin logo with splash line 1
  427. //
  428. if (LCD_EXTRA_SPACE >= strlen(STRING_SPLASH_LINE1) + 1) {
  429. //
  430. // Show the Marlin logo, splash line1, and splash line 2
  431. //
  432. logo_lines(PSTR(" " STRING_SPLASH_LINE1));
  433. #ifdef STRING_SPLASH_LINE2
  434. CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 2000);
  435. #else
  436. safe_delay(2000);
  437. #endif
  438. }
  439. else {
  440. //
  441. // Show the Marlin logo with splash line 1
  442. // After a delay show splash line 2, if it exists
  443. //
  444. #ifdef STRING_SPLASH_LINE2
  445. #define _SPLASH_WAIT_1 1500
  446. #else
  447. #define _SPLASH_WAIT_1 2000
  448. #endif
  449. logo_lines(PSTR(""));
  450. CENTER_OR_SCROLL(STRING_SPLASH_LINE1, _SPLASH_WAIT_1);
  451. #ifdef STRING_SPLASH_LINE2
  452. CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 1500);
  453. #endif
  454. }
  455. #elif defined(STRING_SPLASH_LINE2)
  456. //
  457. // Show splash line 2 only, alongside the logo if possible
  458. //
  459. if (LCD_EXTRA_SPACE >= strlen(STRING_SPLASH_LINE2) + 1) {
  460. logo_lines(PSTR(" " STRING_SPLASH_LINE2));
  461. safe_delay(2000);
  462. }
  463. else {
  464. logo_lines(PSTR(""));
  465. CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 2000);
  466. }
  467. #else
  468. //
  469. // Show only the Marlin logo
  470. //
  471. logo_lines(PSTR(""));
  472. safe_delay(2000);
  473. #endif
  474. lcd_set_custom_characters(
  475. #if ENABLED(LCD_PROGRESS_BAR)
  476. false
  477. #endif
  478. );
  479. }
  480. #endif // SHOW_BOOTSCREEN
  481. void lcd_kill_screen() {
  482. lcd.setCursor(0, 0);
  483. lcd_print(lcd_status_message);
  484. #if LCD_HEIGHT < 4
  485. lcd.setCursor(0, 2);
  486. #else
  487. lcd.setCursor(0, 2);
  488. lcd_printPGM(PSTR(MSG_HALTED));
  489. lcd.setCursor(0, 3);
  490. #endif
  491. lcd_printPGM(PSTR(MSG_PLEASE_RESET));
  492. }
  493. FORCE_INLINE void _draw_axis_label(AxisEnum axis, const char *pstr, bool blink) {
  494. if (blink)
  495. lcd_printPGM(pstr);
  496. else {
  497. if (!axis_homed[axis])
  498. lcd.print('?');
  499. else {
  500. #if DISABLED(DISABLE_REDUCED_ACCURACY_WARNING)
  501. if (!axis_known_position[axis])
  502. lcd.print(' ');
  503. else
  504. #endif
  505. lcd_printPGM(pstr);
  506. }
  507. }
  508. }
  509. /**
  510. Possible status screens:
  511. 16x2 |000/000 B000/000|
  512. |0123456789012345|
  513. 16x4 |000/000 B000/000|
  514. |SD100% Z 000.00|
  515. |F100% T--:--|
  516. |0123456789012345|
  517. 20x2 |T000/000D B000/000D |
  518. |01234567890123456789|
  519. 20x4 |T000/000D B000/000D |
  520. |X 000 Y 000 Z 000.00|
  521. |F100% SD100% T--:--|
  522. |01234567890123456789|
  523. 20x4 |T000/000D B000/000D |
  524. |T000/000D Z 000.00|
  525. |F100% SD100% T--:--|
  526. |01234567890123456789|
  527. */
  528. static void lcd_implementation_status_screen() {
  529. #define LCD_TEMP_ONLY(T1,T2) \
  530. lcd.print(itostr3(T1 + 0.5)); \
  531. lcd.print('/'); \
  532. lcd.print(itostr3left(T2 + 0.5))
  533. #define LCD_TEMP(T1,T2,PREFIX) \
  534. lcd.print(PREFIX); \
  535. LCD_TEMP_ONLY(T1,T2); \
  536. lcd_printPGM(PSTR(LCD_STR_DEGREE " ")); \
  537. if (T2 < 10) lcd.print(' ')
  538. //
  539. // Line 1
  540. //
  541. lcd.setCursor(0, 0);
  542. #if LCD_WIDTH < 20
  543. //
  544. // Hotend 0 Temperature
  545. //
  546. LCD_TEMP_ONLY(thermalManager.degHotend(0), thermalManager.degTargetHotend(0));
  547. //
  548. // Hotend 1 or Bed Temperature
  549. //
  550. #if HOTENDS > 1 || TEMP_SENSOR_BED != 0
  551. lcd.setCursor(8, 0);
  552. #if HOTENDS > 1
  553. lcd.print(LCD_STR_THERMOMETER[0]);
  554. LCD_TEMP_ONLY(thermalManager.degHotend(1), thermalManager.degTargetHotend(1));
  555. #else
  556. lcd.print(LCD_STR_BEDTEMP[0]);
  557. LCD_TEMP_ONLY(thermalManager.degBed(), thermalManager.degTargetBed());
  558. #endif
  559. #endif // HOTENDS > 1 || TEMP_SENSOR_BED != 0
  560. #else // LCD_WIDTH >= 20
  561. //
  562. // Hotend 0 Temperature
  563. //
  564. LCD_TEMP(thermalManager.degHotend(0), thermalManager.degTargetHotend(0), LCD_STR_THERMOMETER[0]);
  565. //
  566. // Hotend 1 or Bed Temperature
  567. //
  568. #if HOTENDS > 1 || TEMP_SENSOR_BED != 0
  569. lcd.setCursor(10, 0);
  570. #if HOTENDS > 1
  571. LCD_TEMP(thermalManager.degHotend(1), thermalManager.degTargetHotend(1), LCD_STR_THERMOMETER[0]);
  572. #else
  573. LCD_TEMP(thermalManager.degBed(), thermalManager.degTargetBed(), LCD_STR_BEDTEMP[0]);
  574. #endif
  575. #endif // HOTENDS > 1 || TEMP_SENSOR_BED != 0
  576. #endif // LCD_WIDTH >= 20
  577. //
  578. // Line 2
  579. //
  580. #if LCD_HEIGHT > 2
  581. bool blink = lcd_blink();
  582. #if LCD_WIDTH < 20
  583. #if ENABLED(SDSUPPORT)
  584. lcd.setCursor(0, 2);
  585. lcd_printPGM(PSTR("SD"));
  586. if (IS_SD_PRINTING)
  587. lcd.print(itostr3(card.percentDone()));
  588. else
  589. lcd_printPGM(PSTR("---"));
  590. lcd.print('%');
  591. #endif // SDSUPPORT
  592. #else // LCD_WIDTH >= 20
  593. lcd.setCursor(0, 1);
  594. #if HOTENDS > 1 && TEMP_SENSOR_BED != 0
  595. // If we both have a 2nd extruder and a heated bed,
  596. // show the heated bed temp on the left,
  597. // since the first line is filled with extruder temps
  598. LCD_TEMP(thermalManager.degBed(), thermalManager.degTargetBed(), LCD_STR_BEDTEMP[0]);
  599. #else
  600. // Before homing the axis letters are blinking 'X' <-> '?'.
  601. // When axis is homed but axis_known_position is false the axis letters are blinking 'X' <-> ' '.
  602. // When everything is ok you see a constant 'X'.
  603. _draw_axis_label(X_AXIS, PSTR(MSG_X), blink);
  604. lcd.print(ftostr4sign(current_position[X_AXIS]));
  605. lcd.print(' ');
  606. _draw_axis_label(Y_AXIS, PSTR(MSG_Y), blink);
  607. lcd.print(ftostr4sign(current_position[Y_AXIS]));
  608. #endif // HOTENDS > 1 || TEMP_SENSOR_BED != 0
  609. #endif // LCD_WIDTH >= 20
  610. lcd.setCursor(LCD_WIDTH - 8, 1);
  611. _draw_axis_label(Z_AXIS, PSTR(MSG_Z), blink);
  612. lcd.print(ftostr52sp(current_position[Z_AXIS] + 0.00001));
  613. #endif // LCD_HEIGHT > 2
  614. //
  615. // Line 3
  616. //
  617. #if LCD_HEIGHT > 3
  618. lcd.setCursor(0, 2);
  619. lcd.print(LCD_STR_FEEDRATE[0]);
  620. lcd.print(itostr3(feedrate_percentage));
  621. lcd.print('%');
  622. #if LCD_WIDTH > 19 && ENABLED(SDSUPPORT)
  623. lcd.setCursor(7, 2);
  624. lcd_printPGM(PSTR("SD"));
  625. if (IS_SD_PRINTING)
  626. lcd.print(itostr3(card.percentDone()));
  627. else
  628. lcd_printPGM(PSTR("---"));
  629. lcd.print('%');
  630. #endif // LCD_WIDTH > 19 && SDSUPPORT
  631. lcd.setCursor(LCD_WIDTH - 6, 2);
  632. lcd.print(LCD_STR_CLOCK[0]);
  633. char buffer[10];
  634. duration_t elapsed = print_job_timer.duration();
  635. elapsed.toDigital(buffer);
  636. lcd_print(buffer);
  637. #endif // LCD_HEIGHT > 3
  638. //
  639. // Last Line
  640. // Status Message (which may be a Progress Bar or Filament display)
  641. //
  642. lcd.setCursor(0, LCD_HEIGHT - 1);
  643. #if ENABLED(LCD_PROGRESS_BAR)
  644. if (card.isFileOpen()) {
  645. // Draw the progress bar if the message has shown long enough
  646. // or if there is no message set.
  647. if (ELAPSED(millis(), progress_bar_ms + PROGRESS_BAR_MSG_TIME) || !lcd_status_message[0]) {
  648. int tix = (int)(card.percentDone() * (LCD_WIDTH) * 3) / 100,
  649. cel = tix / 3, rem = tix % 3, i = LCD_WIDTH;
  650. char msg[LCD_WIDTH + 1], b = ' ';
  651. msg[i] = '\0';
  652. while (i--) {
  653. if (i == cel - 1)
  654. b = LCD_STR_PROGRESS[2];
  655. else if (i == cel && rem != 0)
  656. b = LCD_STR_PROGRESS[rem - 1];
  657. msg[i] = b;
  658. }
  659. lcd.print(msg);
  660. return;
  661. }
  662. } //card.isFileOpen
  663. #elif ENABLED(FILAMENT_LCD_DISPLAY)
  664. // Show Filament Diameter and Volumetric Multiplier %
  665. // After allowing lcd_status_message to show for 5 seconds
  666. if (ELAPSED(millis(), previous_lcd_status_ms + 5000UL)) {
  667. lcd_printPGM(PSTR("Dia "));
  668. lcd.print(ftostr12ns(filament_width_meas));
  669. lcd_printPGM(PSTR(" V"));
  670. lcd.print(itostr3(100.0 * volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]));
  671. lcd.print('%');
  672. return;
  673. }
  674. #endif // FILAMENT_LCD_DISPLAY
  675. lcd_print(lcd_status_message);
  676. }
  677. #if ENABLED(ULTIPANEL)
  678. #if ENABLED(LCD_INFO_MENU) || ENABLED(FILAMENT_CHANGE_FEATURE)
  679. static void lcd_implementation_drawmenu_static(uint8_t row, const char* pstr, bool center=true, bool invert=false, const char *valstr=NULL) {
  680. UNUSED(invert);
  681. char c;
  682. int8_t n = LCD_WIDTH;
  683. lcd.setCursor(0, row);
  684. if (center && !valstr) {
  685. int8_t pad = (LCD_WIDTH - lcd_strlen_P(pstr)) / 2;
  686. while (--pad >= 0) { lcd.print(' '); n--; }
  687. }
  688. while (n > 0 && (c = pgm_read_byte(pstr))) {
  689. n -= charset_mapper(c);
  690. pstr++;
  691. }
  692. if (valstr) while (n > 0 && (c = *valstr)) {
  693. n -= charset_mapper(c);
  694. valstr++;
  695. }
  696. while (n-- > 0) lcd.print(' ');
  697. }
  698. #endif // LCD_INFO_MENU || FILAMENT_CHANGE_FEATURE
  699. static void lcd_implementation_drawmenu_generic(bool sel, uint8_t row, const char* pstr, char pre_char, char post_char) {
  700. char c;
  701. uint8_t n = LCD_WIDTH - 2;
  702. lcd.setCursor(0, row);
  703. lcd.print(sel ? pre_char : ' ');
  704. while ((c = pgm_read_byte(pstr)) && n > 0) {
  705. n -= charset_mapper(c);
  706. pstr++;
  707. }
  708. while (n--) lcd.print(' ');
  709. lcd.print(post_char);
  710. }
  711. static void lcd_implementation_drawmenu_setting_edit_generic(bool sel, uint8_t row, const char* pstr, char pre_char, char* data) {
  712. char c;
  713. uint8_t n = LCD_WIDTH - 2 - lcd_strlen(data);
  714. lcd.setCursor(0, row);
  715. lcd.print(sel ? pre_char : ' ');
  716. while ((c = pgm_read_byte(pstr)) && n > 0) {
  717. n -= charset_mapper(c);
  718. pstr++;
  719. }
  720. lcd.print(':');
  721. while (n--) lcd.print(' ');
  722. lcd_print(data);
  723. }
  724. static void lcd_implementation_drawmenu_setting_edit_generic_P(bool sel, uint8_t row, const char* pstr, char pre_char, const char* data) {
  725. char c;
  726. uint8_t n = LCD_WIDTH - 2 - lcd_strlen_P(data);
  727. lcd.setCursor(0, row);
  728. lcd.print(sel ? pre_char : ' ');
  729. while ((c = pgm_read_byte(pstr)) && n > 0) {
  730. n -= charset_mapper(c);
  731. pstr++;
  732. }
  733. lcd.print(':');
  734. while (n--) lcd.print(' ');
  735. lcd_printPGM(data);
  736. }
  737. #define lcd_implementation_drawmenu_setting_edit_int3(sel, row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', itostr3(*(data)))
  738. #define lcd_implementation_drawmenu_setting_edit_float3(sel, row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr3(*(data)))
  739. #define lcd_implementation_drawmenu_setting_edit_float32(sel, row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr32(*(data)))
  740. #define lcd_implementation_drawmenu_setting_edit_float43(sel, row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr43sign(*(data)))
  741. #define lcd_implementation_drawmenu_setting_edit_float5(sel, row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr5rj(*(data)))
  742. #define lcd_implementation_drawmenu_setting_edit_float52(sel, row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr52sign(*(data)))
  743. #define lcd_implementation_drawmenu_setting_edit_float51(sel, row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr51sign(*(data)))
  744. #define lcd_implementation_drawmenu_setting_edit_long5(sel, row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr5rj(*(data)))
  745. #define lcd_implementation_drawmenu_setting_edit_bool(sel, row, pstr, pstr2, data) lcd_implementation_drawmenu_setting_edit_generic_P(sel, row, pstr, '>', (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
  746. //Add version for callback functions
  747. #define lcd_implementation_drawmenu_setting_edit_callback_int3(sel, row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', itostr3(*(data)))
  748. #define lcd_implementation_drawmenu_setting_edit_callback_float3(sel, row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr3(*(data)))
  749. #define lcd_implementation_drawmenu_setting_edit_callback_float32(sel, row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr32(*(data)))
  750. #define lcd_implementation_drawmenu_setting_edit_callback_float43(sel, row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr43sign(*(data)))
  751. #define lcd_implementation_drawmenu_setting_edit_callback_float5(sel, row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr5rj(*(data)))
  752. #define lcd_implementation_drawmenu_setting_edit_callback_float52(sel, row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr52sign(*(data)))
  753. #define lcd_implementation_drawmenu_setting_edit_callback_float51(sel, row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr51sign(*(data)))
  754. #define lcd_implementation_drawmenu_setting_edit_callback_long5(sel, row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', ftostr5rj(*(data)))
  755. #define lcd_implementation_drawmenu_setting_edit_callback_bool(sel, row, pstr, pstr2, data, callback) lcd_implementation_drawmenu_setting_edit_generic_P(sel, row, pstr, '>', (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
  756. void lcd_implementation_drawedit(const char* pstr, const char* value=NULL) {
  757. lcd.setCursor(1, 1);
  758. lcd_printPGM(pstr);
  759. if (value != NULL) {
  760. lcd.print(':');
  761. lcd.setCursor(LCD_WIDTH - lcd_strlen(value), 1);
  762. lcd_print(value);
  763. }
  764. }
  765. #if ENABLED(SDSUPPORT)
  766. static void lcd_implementation_drawmenu_sd(bool sel, uint8_t row, const char* pstr, const char* filename, char* longFilename, uint8_t concat, char post_char) {
  767. UNUSED(pstr);
  768. char c;
  769. uint8_t n = LCD_WIDTH - concat;
  770. lcd.setCursor(0, row);
  771. lcd.print(sel ? '>' : ' ');
  772. if (longFilename[0]) {
  773. filename = longFilename;
  774. longFilename[n] = '\0';
  775. }
  776. while ((c = *filename) && n > 0) {
  777. n -= charset_mapper(c);
  778. filename++;
  779. }
  780. while (n--) lcd.print(' ');
  781. lcd.print(post_char);
  782. }
  783. static void lcd_implementation_drawmenu_sdfile(bool sel, uint8_t row, const char* pstr, const char* filename, char* longFilename) {
  784. lcd_implementation_drawmenu_sd(sel, row, pstr, filename, longFilename, 2, ' ');
  785. }
  786. static void lcd_implementation_drawmenu_sddirectory(bool sel, uint8_t row, const char* pstr, const char* filename, char* longFilename) {
  787. lcd_implementation_drawmenu_sd(sel, row, pstr, filename, longFilename, 2, LCD_STR_FOLDER[0]);
  788. }
  789. #endif // SDSUPPORT
  790. #define lcd_implementation_drawmenu_back(sel, row, pstr) lcd_implementation_drawmenu_generic(sel, row, pstr, LCD_STR_UPLEVEL[0], LCD_STR_UPLEVEL[0])
  791. #define lcd_implementation_drawmenu_submenu(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', LCD_STR_ARROW_RIGHT[0])
  792. #define lcd_implementation_drawmenu_gcode(sel, row, pstr, gcode) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
  793. #define lcd_implementation_drawmenu_function(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
  794. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  795. extern millis_t next_button_update_ms;
  796. static uint8_t lcd_implementation_read_slow_buttons() {
  797. #if ENABLED(LCD_I2C_TYPE_MCP23017)
  798. // Reading these buttons this is likely to be too slow to call inside interrupt context
  799. // so they are called during normal lcd_update
  800. uint8_t slow_bits = lcd.readButtons() << B_I2C_BTN_OFFSET;
  801. #if ENABLED(LCD_I2C_VIKI)
  802. if ((slow_bits & (B_MI | B_RI)) && PENDING(millis(), next_button_update_ms)) // LCD clicked
  803. slow_bits &= ~(B_MI | B_RI); // Disable LCD clicked buttons if screen is updated
  804. #endif // LCD_I2C_VIKI
  805. return slow_bits;
  806. #endif // LCD_I2C_TYPE_MCP23017
  807. }
  808. #endif // LCD_HAS_SLOW_BUTTONS
  809. #endif // ULTIPANEL
  810. #if ENABLED(LCD_HAS_STATUS_INDICATORS)
  811. static void lcd_implementation_update_indicators() {
  812. // Set the LEDS - referred to as backlights by the LiquidTWI2 library
  813. static uint8_t ledsprev = 0;
  814. uint8_t leds = 0;
  815. if (thermalManager.degTargetBed() > 0) leds |= LED_A;
  816. if (thermalManager.degTargetHotend(0) > 0) leds |= LED_B;
  817. #if FAN_COUNT > 0
  818. if (0
  819. #if HAS_FAN0
  820. || fanSpeeds[0]
  821. #endif
  822. #if HAS_FAN1
  823. || fanSpeeds[1]
  824. #endif
  825. #if HAS_FAN2
  826. || fanSpeeds[2]
  827. #endif
  828. ) leds |= LED_C;
  829. #endif // FAN_COUNT > 0
  830. #if HOTENDS > 1
  831. if (thermalManager.degTargetHotend(1) > 0) leds |= LED_C;
  832. #endif
  833. if (leds != ledsprev) {
  834. lcd.setBacklight(leds);
  835. ledsprev = leds;
  836. }
  837. }
  838. #endif // LCD_HAS_STATUS_INDICATORS
  839. #endif // ULTRALCD_IMPL_HD44780_H