My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ultralcd_impl_HD44780.h 30KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048
  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 PIN_EXISTS(SR_STROBE)
  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. const 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 uplevel[8] = {
  201. B00100,
  202. B01110,
  203. B11111,
  204. B00100,
  205. B11100,
  206. B00000,
  207. B00000,
  208. B00000
  209. }; //thanks joris
  210. static byte feedrate[8] = {
  211. B11100,
  212. B10000,
  213. B11000,
  214. B10111,
  215. B00101,
  216. B00110,
  217. B00101,
  218. B00000
  219. }; //thanks Sonny Mounicou
  220. static byte clock[8] = {
  221. B00000,
  222. B01110,
  223. B10011,
  224. B10101,
  225. B10001,
  226. B01110,
  227. B00000,
  228. B00000
  229. }; //thanks Sonny Mounicou
  230. lcd.createChar(LCD_STR_BEDTEMP[0], bedTemp);
  231. lcd.createChar(LCD_STR_DEGREE[0], degree);
  232. lcd.createChar(LCD_STR_THERMOMETER[0], thermometer);
  233. lcd.createChar(LCD_STR_FEEDRATE[0], feedrate);
  234. lcd.createChar(LCD_STR_CLOCK[0], clock);
  235. #if ENABLED(SDSUPPORT)
  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. #else
  303. lcd.createChar(LCD_STR_UPLEVEL[0], uplevel);
  304. #endif
  305. }
  306. static void lcd_implementation_init(
  307. #if ENABLED(LCD_PROGRESS_BAR)
  308. const bool info_screen_charset = true
  309. #endif
  310. ) {
  311. #if ENABLED(LCD_I2C_TYPE_PCF8575)
  312. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  313. #ifdef LCD_I2C_PIN_BL
  314. lcd.setBacklightPin(LCD_I2C_PIN_BL, POSITIVE);
  315. lcd.setBacklight(HIGH);
  316. #endif
  317. #elif ENABLED(LCD_I2C_TYPE_MCP23017)
  318. lcd.setMCPType(LTI_TYPE_MCP23017);
  319. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  320. lcd_implementation_update_indicators();
  321. #elif ENABLED(LCD_I2C_TYPE_MCP23008)
  322. lcd.setMCPType(LTI_TYPE_MCP23008);
  323. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  324. #elif ENABLED(LCD_I2C_TYPE_PCA8574)
  325. lcd.init();
  326. lcd.backlight();
  327. #else
  328. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  329. #endif
  330. lcd_set_custom_characters(
  331. #if ENABLED(LCD_PROGRESS_BAR)
  332. info_screen_charset
  333. #endif
  334. );
  335. lcd.clear();
  336. }
  337. void lcd_implementation_clear() { lcd.clear(); }
  338. void lcd_print(const char c) { charset_mapper(c); }
  339. void lcd_print(const char * const str) { for (uint8_t i = 0; char c = str[i]; ++i) lcd.print(c); }
  340. void lcd_printPGM(const char* str) { for (; char c = pgm_read_byte(str); ++str) lcd.print(c); }
  341. void lcd_print_utf(const char * const str, const uint8_t maxLength=LCD_WIDTH) {
  342. char c;
  343. for (uint8_t i = 0, n = maxLength; n && (c = str[i]); ++i)
  344. n -= charset_mapper(c);
  345. }
  346. void lcd_printPGM_utf(const char* str, const uint8_t maxLength=LCD_WIDTH) {
  347. char c;
  348. for (uint8_t i = 0, n = maxLength; n && (c = str[i]); ++i)
  349. n -= charset_mapper(c);
  350. }
  351. #if ENABLED(SHOW_BOOTSCREEN)
  352. void lcd_erase_line(const int line) {
  353. lcd.setCursor(0, line);
  354. for (uint8_t i = LCD_WIDTH + 1; --i;)
  355. lcd.print(' ');
  356. }
  357. // Scroll the PSTR 'text' in a 'len' wide field for 'time' milliseconds at position col,line
  358. void lcd_scroll(const int col, const int line, const char* const text, const int len, const int time) {
  359. char tmp[LCD_WIDTH + 1] = {0};
  360. int n = max(lcd_strlen_P(text) - len, 0);
  361. for (int i = 0; i <= n; i++) {
  362. strncpy_P(tmp, text + i, min(len, LCD_WIDTH));
  363. lcd.setCursor(col, line);
  364. lcd_print(tmp);
  365. delay(time / max(n, 1));
  366. }
  367. }
  368. static void logo_lines(const char* const extra) {
  369. int indent = (LCD_WIDTH - 8 - lcd_strlen_P(extra)) / 2;
  370. lcd.setCursor(indent, 0); lcd.print('\x00'); lcd_printPGM(PSTR( "------" )); lcd.print('\x01');
  371. lcd.setCursor(indent, 1); lcd_printPGM(PSTR("|Marlin|")); lcd_printPGM(extra);
  372. lcd.setCursor(indent, 2); lcd.print('\x02'); lcd_printPGM(PSTR( "------" )); lcd.print('\x03');
  373. }
  374. void bootscreen() {
  375. byte top_left[8] = {
  376. B00000,
  377. B00000,
  378. B00000,
  379. B00000,
  380. B00001,
  381. B00010,
  382. B00100,
  383. B00100
  384. };
  385. byte top_right[8] = {
  386. B00000,
  387. B00000,
  388. B00000,
  389. B11100,
  390. B11100,
  391. B01100,
  392. B00100,
  393. B00100
  394. };
  395. byte botom_left[8] = {
  396. B00100,
  397. B00010,
  398. B00001,
  399. B00000,
  400. B00000,
  401. B00000,
  402. B00000,
  403. B00000
  404. };
  405. byte botom_right[8] = {
  406. B00100,
  407. B01000,
  408. B10000,
  409. B00000,
  410. B00000,
  411. B00000,
  412. B00000,
  413. B00000
  414. };
  415. lcd.createChar(0, top_left);
  416. lcd.createChar(1, top_right);
  417. lcd.createChar(2, botom_left);
  418. lcd.createChar(3, botom_right);
  419. lcd.clear();
  420. #define LCD_EXTRA_SPACE (LCD_WIDTH-8)
  421. #define CENTER_OR_SCROLL(STRING,DELAY) \
  422. lcd_erase_line(3); \
  423. if (strlen(STRING) <= LCD_WIDTH) { \
  424. lcd.setCursor((LCD_WIDTH - lcd_strlen_P(PSTR(STRING))) / 2, 3); \
  425. lcd_printPGM(PSTR(STRING)); \
  426. safe_delay(DELAY); \
  427. } \
  428. else { \
  429. lcd_scroll(0, 3, PSTR(STRING), LCD_WIDTH, DELAY); \
  430. }
  431. #ifdef STRING_SPLASH_LINE1
  432. //
  433. // Show the Marlin logo with splash line 1
  434. //
  435. if (LCD_EXTRA_SPACE >= strlen(STRING_SPLASH_LINE1) + 1) {
  436. //
  437. // Show the Marlin logo, splash line1, and splash line 2
  438. //
  439. logo_lines(PSTR(" " STRING_SPLASH_LINE1));
  440. #ifdef STRING_SPLASH_LINE2
  441. CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 2000);
  442. #else
  443. safe_delay(2000);
  444. #endif
  445. }
  446. else {
  447. //
  448. // Show the Marlin logo with splash line 1
  449. // After a delay show splash line 2, if it exists
  450. //
  451. #ifdef STRING_SPLASH_LINE2
  452. #define _SPLASH_WAIT_1 1500
  453. #else
  454. #define _SPLASH_WAIT_1 2000
  455. #endif
  456. logo_lines(PSTR(""));
  457. CENTER_OR_SCROLL(STRING_SPLASH_LINE1, _SPLASH_WAIT_1);
  458. #ifdef STRING_SPLASH_LINE2
  459. CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 1500);
  460. #endif
  461. }
  462. #elif defined(STRING_SPLASH_LINE2)
  463. //
  464. // Show splash line 2 only, alongside the logo if possible
  465. //
  466. if (LCD_EXTRA_SPACE >= strlen(STRING_SPLASH_LINE2) + 1) {
  467. logo_lines(PSTR(" " STRING_SPLASH_LINE2));
  468. safe_delay(2000);
  469. }
  470. else {
  471. logo_lines(PSTR(""));
  472. CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 2000);
  473. }
  474. #else
  475. //
  476. // Show only the Marlin logo
  477. //
  478. logo_lines(PSTR(""));
  479. safe_delay(2000);
  480. #endif
  481. lcd.clear();
  482. safe_delay(100);
  483. lcd_set_custom_characters(
  484. #if ENABLED(LCD_PROGRESS_BAR)
  485. false
  486. #endif
  487. );
  488. }
  489. #endif // SHOW_BOOTSCREEN
  490. void lcd_kill_screen() {
  491. lcd.setCursor(0, 0);
  492. lcd_print_utf(lcd_status_message);
  493. #if LCD_HEIGHT < 4
  494. lcd.setCursor(0, 2);
  495. #else
  496. lcd.setCursor(0, 2);
  497. lcd_printPGM(PSTR(MSG_HALTED));
  498. lcd.setCursor(0, 3);
  499. #endif
  500. lcd_printPGM(PSTR(MSG_PLEASE_RESET));
  501. }
  502. FORCE_INLINE void _draw_axis_label(const AxisEnum axis, const char* const pstr, const bool blink) {
  503. if (blink)
  504. lcd_printPGM(pstr);
  505. else {
  506. if (!axis_homed[axis])
  507. lcd.print('?');
  508. else {
  509. #if DISABLED(DISABLE_REDUCED_ACCURACY_WARNING)
  510. if (!axis_known_position[axis])
  511. lcd.print(' ');
  512. else
  513. #endif
  514. lcd_printPGM(pstr);
  515. }
  516. }
  517. }
  518. FORCE_INLINE void _draw_heater_status(const int8_t heater, const char prefix, const bool blink) {
  519. const bool isBed = heater < 0;
  520. const float t1 = (isBed ? thermalManager.degBed() : thermalManager.degHotend(heater));
  521. const float t2 = (isBed ? thermalManager.degTargetBed() : thermalManager.degTargetHotend(heater));
  522. if (prefix >= 0) lcd.print(prefix);
  523. lcd.print(itostr3(t1 + 0.5));
  524. lcd.print('/');
  525. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  526. const bool is_idle = (!isBed ? thermalManager.is_heater_idle(heater) :
  527. #if HAS_TEMP_BED
  528. thermalManager.is_bed_idle()
  529. #else
  530. false
  531. #endif
  532. );
  533. if (!blink && is_idle) {
  534. lcd.print(' ');
  535. if (t2 >= 10) lcd.print(' ');
  536. if (t2 >= 100) lcd.print(' ');
  537. }
  538. else
  539. #endif
  540. lcd.print(itostr3left(t2 + 0.5));
  541. if (prefix >= 0) {
  542. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  543. if (t2 < 10) lcd.print(' ');
  544. }
  545. }
  546. #if ENABLED(LCD_PROGRESS_BAR)
  547. inline void lcd_draw_progress_bar(const uint8_t percent) {
  548. int tix = (int)(percent * (LCD_WIDTH) * 3) / 100,
  549. cel = tix / 3, rem = tix % 3, i = LCD_WIDTH;
  550. char msg[LCD_WIDTH + 1], b = ' ';
  551. msg[i] = '\0';
  552. while (i--) {
  553. if (i == cel - 1)
  554. b = LCD_STR_PROGRESS[2];
  555. else if (i == cel && rem != 0)
  556. b = LCD_STR_PROGRESS[rem - 1];
  557. msg[i] = b;
  558. }
  559. lcd.print(msg);
  560. }
  561. #endif // LCD_PROGRESS_BAR
  562. /**
  563. Possible status screens:
  564. 16x2 |000/000 B000/000|
  565. |0123456789012345|
  566. 16x4 |000/000 B000/000|
  567. |SD100% Z 000.00|
  568. |F100% T--:--|
  569. |0123456789012345|
  570. 20x2 |T000/000D B000/000D |
  571. |01234567890123456789|
  572. 20x4 |T000/000D B000/000D |
  573. |X 000 Y 000 Z 000.00|
  574. |F100% SD100% T--:--|
  575. |01234567890123456789|
  576. 20x4 |T000/000D B000/000D |
  577. |T000/000D Z 000.00|
  578. |F100% SD100% T--:--|
  579. |01234567890123456789|
  580. */
  581. static void lcd_implementation_status_screen() {
  582. bool blink = lcd_blink();
  583. //
  584. // Line 1
  585. //
  586. lcd.setCursor(0, 0);
  587. #if LCD_WIDTH < 20
  588. //
  589. // Hotend 0 Temperature
  590. //
  591. _draw_heater_status(0, -1, blink);
  592. //
  593. // Hotend 1 or Bed Temperature
  594. //
  595. #if HOTENDS > 1 || TEMP_SENSOR_BED != 0
  596. lcd.setCursor(8, 0);
  597. #if HOTENDS > 1
  598. lcd.print(LCD_STR_THERMOMETER[0]);
  599. _draw_heater_status(1, -1, blink);
  600. #else
  601. lcd.print(LCD_STR_BEDTEMP[0]);
  602. _draw_heater_status(-1, -1, blink);
  603. #endif
  604. #endif // HOTENDS > 1 || TEMP_SENSOR_BED != 0
  605. #else // LCD_WIDTH >= 20
  606. //
  607. // Hotend 0 Temperature
  608. //
  609. _draw_heater_status(0, LCD_STR_THERMOMETER[0], blink);
  610. //
  611. // Hotend 1 or Bed Temperature
  612. //
  613. #if HOTENDS > 1 || TEMP_SENSOR_BED != 0
  614. lcd.setCursor(10, 0);
  615. #if HOTENDS > 1
  616. _draw_heater_status(1, LCD_STR_THERMOMETER[0], blink);
  617. #else
  618. _draw_heater_status(-1, LCD_STR_BEDTEMP[0], blink);
  619. #endif
  620. #endif // HOTENDS > 1 || TEMP_SENSOR_BED != 0
  621. #endif // LCD_WIDTH >= 20
  622. //
  623. // Line 2
  624. //
  625. #if LCD_HEIGHT > 2
  626. #if LCD_WIDTH < 20
  627. #if ENABLED(SDSUPPORT)
  628. lcd.setCursor(0, 2);
  629. lcd_printPGM(PSTR("SD"));
  630. if (IS_SD_PRINTING)
  631. lcd.print(itostr3(card.percentDone()));
  632. else
  633. lcd_printPGM(PSTR("---"));
  634. lcd.print('%');
  635. #endif // SDSUPPORT
  636. #else // LCD_WIDTH >= 20
  637. lcd.setCursor(0, 1);
  638. #if HOTENDS > 1 && TEMP_SENSOR_BED != 0
  639. // If we both have a 2nd extruder and a heated bed,
  640. // show the heated bed temp on the left,
  641. // since the first line is filled with extruder temps
  642. _draw_heater_status(-1, LCD_STR_BEDTEMP[0], blink);
  643. #else
  644. // Before homing the axis letters are blinking 'X' <-> '?'.
  645. // When axis is homed but axis_known_position is false the axis letters are blinking 'X' <-> ' '.
  646. // When everything is ok you see a constant 'X'.
  647. _draw_axis_label(X_AXIS, PSTR(MSG_X), blink);
  648. lcd.print(ftostr4sign(current_position[X_AXIS]));
  649. lcd.print(' ');
  650. _draw_axis_label(Y_AXIS, PSTR(MSG_Y), blink);
  651. lcd.print(ftostr4sign(current_position[Y_AXIS]));
  652. #endif // HOTENDS > 1 || TEMP_SENSOR_BED != 0
  653. #endif // LCD_WIDTH >= 20
  654. lcd.setCursor(LCD_WIDTH - 8, 1);
  655. _draw_axis_label(Z_AXIS, PSTR(MSG_Z), blink);
  656. lcd.print(ftostr52sp(FIXFLOAT(current_position[Z_AXIS])));
  657. #endif // LCD_HEIGHT > 2
  658. //
  659. // Line 3
  660. //
  661. #if LCD_HEIGHT > 3
  662. lcd.setCursor(0, 2);
  663. lcd.print(LCD_STR_FEEDRATE[0]);
  664. lcd.print(itostr3(feedrate_percentage));
  665. lcd.print('%');
  666. #if LCD_WIDTH >= 20 && ENABLED(SDSUPPORT)
  667. lcd.setCursor(7, 2);
  668. lcd_printPGM(PSTR("SD"));
  669. if (IS_SD_PRINTING)
  670. lcd.print(itostr3(card.percentDone()));
  671. else
  672. lcd_printPGM(PSTR("---"));
  673. lcd.print('%');
  674. #endif // LCD_WIDTH >= 20 && SDSUPPORT
  675. char buffer[10];
  676. duration_t elapsed = print_job_timer.duration();
  677. uint8_t len = elapsed.toDigital(buffer);
  678. lcd.setCursor(LCD_WIDTH - len - 1, 2);
  679. lcd.print(LCD_STR_CLOCK[0]);
  680. lcd_print(buffer);
  681. #endif // LCD_HEIGHT > 3
  682. //
  683. // Last Line
  684. // Status Message (which may be a Progress Bar or Filament display)
  685. //
  686. lcd.setCursor(0, LCD_HEIGHT - 1);
  687. #if ENABLED(LCD_PROGRESS_BAR)
  688. // Draw the progress bar if the message has shown long enough
  689. // or if there is no message set.
  690. if (card.isFileOpen() && (ELAPSED(millis(), progress_bar_ms + PROGRESS_BAR_MSG_TIME) || !lcd_status_message[0])) {
  691. const uint8_t percent = card.percentDone();
  692. if (percent) return lcd_draw_progress_bar(percent);
  693. }
  694. #elif ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
  695. // Show Filament Diameter and Volumetric Multiplier %
  696. // After allowing lcd_status_message to show for 5 seconds
  697. if (ELAPSED(millis(), previous_lcd_status_ms + 5000UL)) {
  698. lcd_printPGM(PSTR("Dia "));
  699. lcd.print(ftostr12ns(filament_width_meas));
  700. lcd_printPGM(PSTR(" V"));
  701. lcd.print(itostr3(100.0 * volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]));
  702. lcd.print('%');
  703. return;
  704. }
  705. #endif // FILAMENT_LCD_DISPLAY && SDSUPPORT
  706. #if ENABLED(STATUS_MESSAGE_SCROLLING)
  707. lcd_print_utf(lcd_status_message + status_scroll_pos);
  708. const uint8_t slen = lcd_strlen(lcd_status_message);
  709. if (slen > LCD_WIDTH) {
  710. // Skip any non-printing bytes
  711. while (!charset_mapper(lcd_status_message[status_scroll_pos])) ++status_scroll_pos;
  712. if (++status_scroll_pos > slen - LCD_WIDTH) status_scroll_pos = 0;
  713. }
  714. #else
  715. lcd_print_utf(lcd_status_message);
  716. #endif
  717. }
  718. #if ENABLED(ULTIPANEL)
  719. #if ENABLED(ADVANCED_PAUSE_FEATURE)
  720. static void lcd_implementation_hotend_status(const uint8_t row) {
  721. if (row < LCD_HEIGHT) {
  722. lcd.setCursor(LCD_WIDTH - 9, row);
  723. lcd.print(LCD_STR_THERMOMETER[0]);
  724. lcd.print(itostr3(thermalManager.degHotend(active_extruder)));
  725. lcd.print('/');
  726. lcd.print(itostr3(thermalManager.degTargetHotend(active_extruder)));
  727. }
  728. }
  729. #endif // ADVANCED_PAUSE_FEATURE
  730. static void lcd_implementation_drawmenu_static(const uint8_t row, const char* pstr, const bool center=true, const bool invert=false, const char *valstr=NULL) {
  731. UNUSED(invert);
  732. char c;
  733. int8_t n = LCD_WIDTH;
  734. lcd.setCursor(0, row);
  735. if (center && !valstr) {
  736. int8_t pad = (LCD_WIDTH - lcd_strlen_P(pstr)) / 2;
  737. while (--pad >= 0) { lcd.print(' '); n--; }
  738. }
  739. while (n > 0 && (c = pgm_read_byte(pstr))) {
  740. n -= charset_mapper(c);
  741. pstr++;
  742. }
  743. if (valstr) while (n > 0 && (c = *valstr)) {
  744. n -= charset_mapper(c);
  745. valstr++;
  746. }
  747. while (n-- > 0) lcd.print(' ');
  748. }
  749. static void lcd_implementation_drawmenu_generic(const bool sel, const uint8_t row, const char* pstr, const char pre_char, const char post_char) {
  750. char c;
  751. uint8_t n = LCD_WIDTH - 2;
  752. lcd.setCursor(0, row);
  753. lcd.print(sel ? pre_char : ' ');
  754. while ((c = pgm_read_byte(pstr)) && n > 0) {
  755. n -= charset_mapper(c);
  756. pstr++;
  757. }
  758. while (n--) lcd.print(' ');
  759. lcd.print(post_char);
  760. }
  761. static void lcd_implementation_drawmenu_setting_edit_generic(const bool sel, const uint8_t row, const char* pstr, const char pre_char, const char* const data) {
  762. char c;
  763. uint8_t n = LCD_WIDTH - 2 - lcd_strlen(data);
  764. lcd.setCursor(0, row);
  765. lcd.print(sel ? pre_char : ' ');
  766. while ((c = pgm_read_byte(pstr)) && n > 0) {
  767. n -= charset_mapper(c);
  768. pstr++;
  769. }
  770. lcd.print(':');
  771. while (n--) lcd.print(' ');
  772. lcd_print(data);
  773. }
  774. static void lcd_implementation_drawmenu_setting_edit_generic_P(const bool sel, const uint8_t row, const char* pstr, const char pre_char, const char* const data) {
  775. char c;
  776. uint8_t n = LCD_WIDTH - 2 - lcd_strlen_P(data);
  777. lcd.setCursor(0, row);
  778. lcd.print(sel ? pre_char : ' ');
  779. while ((c = pgm_read_byte(pstr)) && n > 0) {
  780. n -= charset_mapper(c);
  781. pstr++;
  782. }
  783. lcd.print(':');
  784. while (n--) lcd.print(' ');
  785. lcd_printPGM(data);
  786. }
  787. #define DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(_type, _name, _strFunc) \
  788. inline void lcd_implementation_drawmenu_setting_edit_ ## _name (const bool sel, const uint8_t row, const char* pstr, const char* pstr2, _type * const data, ...) { \
  789. lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', _strFunc(*(data))); \
  790. } \
  791. inline void lcd_implementation_drawmenu_setting_edit_callback_ ## _name (const bool sel, const uint8_t row, const char* pstr, const char* pstr2, _type * const data, ...) { \
  792. lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', _strFunc(*(data))); \
  793. } \
  794. inline void lcd_implementation_drawmenu_setting_edit_accessor_ ## _name (const bool sel, const uint8_t row, const char* pstr, const char* pstr2, _type (*pget)(), void (*pset)(_type), ...) { \
  795. lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, '>', _strFunc(pget())); \
  796. } \
  797. typedef void _name##_void
  798. DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(int, int3, itostr3);
  799. DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float3, ftostr3);
  800. DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float32, ftostr32);
  801. DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float43, ftostr43sign);
  802. DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float5, ftostr5rj);
  803. DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float51, ftostr51sign);
  804. DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float52, ftostr52sign);
  805. DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(float, float62, ftostr62rj);
  806. DEFINE_LCD_IMPLEMENTATION_DRAWMENU_SETTING_EDIT_TYPE(unsigned long, long5, ftostr5rj);
  807. #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))
  808. #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))
  809. #define lcd_implementation_drawmenu_setting_edit_accessor_bool(sel, row, pstr, pstr2, pget, pset, callback) lcd_implementation_drawmenu_setting_edit_generic_P(sel, row, pstr, '>', (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
  810. void lcd_implementation_drawedit(const char* pstr, const char* const value=NULL) {
  811. lcd.setCursor(1, 1);
  812. lcd_printPGM(pstr);
  813. if (value != NULL) {
  814. lcd.print(':');
  815. lcd.setCursor(LCD_WIDTH - lcd_strlen(value), 1);
  816. lcd_print(value);
  817. }
  818. }
  819. #if ENABLED(SDSUPPORT)
  820. static void lcd_implementation_drawmenu_sd(const bool sel, const uint8_t row, const char* const pstr, const char* filename, char* const longFilename, const uint8_t concat, const char post_char) {
  821. UNUSED(pstr);
  822. char c;
  823. uint8_t n = LCD_WIDTH - concat;
  824. lcd.setCursor(0, row);
  825. lcd.print(sel ? '>' : ' ');
  826. if (longFilename[0]) {
  827. filename = longFilename;
  828. longFilename[n] = '\0';
  829. }
  830. while ((c = *filename) && n > 0) {
  831. n -= charset_mapper(c);
  832. filename++;
  833. }
  834. while (n--) lcd.print(' ');
  835. lcd.print(post_char);
  836. }
  837. static void lcd_implementation_drawmenu_sdfile(const bool sel, const uint8_t row, const char* pstr, const char* filename, char* const longFilename) {
  838. lcd_implementation_drawmenu_sd(sel, row, pstr, filename, longFilename, 2, ' ');
  839. }
  840. static void lcd_implementation_drawmenu_sddirectory(const bool sel, const uint8_t row, const char* pstr, const char* filename, char* const longFilename) {
  841. lcd_implementation_drawmenu_sd(sel, row, pstr, filename, longFilename, 2, LCD_STR_FOLDER[0]);
  842. }
  843. #endif // SDSUPPORT
  844. #define lcd_implementation_drawmenu_back(sel, row, pstr, dummy) lcd_implementation_drawmenu_generic(sel, row, pstr, LCD_STR_UPLEVEL[0], LCD_STR_UPLEVEL[0])
  845. #define lcd_implementation_drawmenu_submenu(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', LCD_STR_ARROW_RIGHT[0])
  846. #define lcd_implementation_drawmenu_gcode(sel, row, pstr, gcode) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
  847. #define lcd_implementation_drawmenu_function(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
  848. #if ENABLED(LCD_HAS_SLOW_BUTTONS)
  849. extern millis_t next_button_update_ms;
  850. static uint8_t lcd_implementation_read_slow_buttons() {
  851. #if ENABLED(LCD_I2C_TYPE_MCP23017)
  852. // Reading these buttons this is likely to be too slow to call inside interrupt context
  853. // so they are called during normal lcd_update
  854. uint8_t slow_bits = lcd.readButtons() << B_I2C_BTN_OFFSET;
  855. #if ENABLED(LCD_I2C_VIKI)
  856. if ((slow_bits & (B_MI | B_RI)) && PENDING(millis(), next_button_update_ms)) // LCD clicked
  857. slow_bits &= ~(B_MI | B_RI); // Disable LCD clicked buttons if screen is updated
  858. #endif // LCD_I2C_VIKI
  859. return slow_bits;
  860. #endif // LCD_I2C_TYPE_MCP23017
  861. }
  862. #endif // LCD_HAS_SLOW_BUTTONS
  863. #endif // ULTIPANEL
  864. #if ENABLED(LCD_HAS_STATUS_INDICATORS)
  865. static void lcd_implementation_update_indicators() {
  866. // Set the LEDS - referred to as backlights by the LiquidTWI2 library
  867. static uint8_t ledsprev = 0;
  868. uint8_t leds = 0;
  869. if (thermalManager.degTargetBed() > 0) leds |= LED_A;
  870. if (thermalManager.degTargetHotend(0) > 0) leds |= LED_B;
  871. #if FAN_COUNT > 0
  872. if (0
  873. #if HAS_FAN0
  874. || fanSpeeds[0]
  875. #endif
  876. #if HAS_FAN1
  877. || fanSpeeds[1]
  878. #endif
  879. #if HAS_FAN2
  880. || fanSpeeds[2]
  881. #endif
  882. ) leds |= LED_C;
  883. #endif // FAN_COUNT > 0
  884. #if HOTENDS > 1
  885. if (thermalManager.degTargetHotend(1) > 0) leds |= LED_C;
  886. #endif
  887. if (leds != ledsprev) {
  888. lcd.setBacklight(leds);
  889. ledsprev = leds;
  890. }
  891. }
  892. #endif // LCD_HAS_STATUS_INDICATORS
  893. #endif // ULTRALCD_IMPL_HD44780_H