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_implementation_hitachi_HD44780.h 27KB

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