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

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