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

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