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

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