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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  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. //#ifndef 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. #ifdef 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 defined(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. #define LCD_CLICKED (buttons&(B_MI|B_RI|B_ST)) // pause/stop button also acts as click until we implement proper pause/stop.
  44. #else
  45. #define LCD_CLICKED (buttons&(B_MI|B_RI))
  46. #endif
  47. // I2C buttons take too long to read inside an interrupt context and so we read them during lcd_update
  48. #define LCD_HAS_SLOW_BUTTONS
  49. #elif defined(LCD_I2C_PANELOLU2)
  50. // encoder click can be read through I2C if not directly connected
  51. #if BTN_ENC <= 0
  52. #define B_I2C_BTN_OFFSET 3 // (the first three bit positions reserved for EN_A, EN_B, EN_C)
  53. #define B_MI (PANELOLU2_ENCODER_C<<B_I2C_BTN_OFFSET) // requires LiquidTWI2 library v1.2.3 or later
  54. #define LCD_CLICKED (buttons&B_MI)
  55. // I2C buttons take too long to read inside an interrupt context and so we read them during lcd_update
  56. #define LCD_HAS_SLOW_BUTTONS
  57. #else
  58. #define LCD_CLICKED (buttons&EN_C)
  59. #endif
  60. #elif defined(REPRAPWORLD_KEYPAD)
  61. // define register bit values, don't change it
  62. #define BLEN_REPRAPWORLD_KEYPAD_F3 0
  63. #define BLEN_REPRAPWORLD_KEYPAD_F2 1
  64. #define BLEN_REPRAPWORLD_KEYPAD_F1 2
  65. #define BLEN_REPRAPWORLD_KEYPAD_UP 6
  66. #define BLEN_REPRAPWORLD_KEYPAD_RIGHT 4
  67. #define BLEN_REPRAPWORLD_KEYPAD_MIDDLE 5
  68. #define BLEN_REPRAPWORLD_KEYPAD_DOWN 3
  69. #define BLEN_REPRAPWORLD_KEYPAD_LEFT 7
  70. #define REPRAPWORLD_BTN_OFFSET 0 // bit offset into buttons for shift register values
  71. #define EN_REPRAPWORLD_KEYPAD_F3 BIT((BLEN_REPRAPWORLD_KEYPAD_F3+REPRAPWORLD_BTN_OFFSET))
  72. #define EN_REPRAPWORLD_KEYPAD_F2 BIT((BLEN_REPRAPWORLD_KEYPAD_F2+REPRAPWORLD_BTN_OFFSET))
  73. #define EN_REPRAPWORLD_KEYPAD_F1 BIT((BLEN_REPRAPWORLD_KEYPAD_F1+REPRAPWORLD_BTN_OFFSET))
  74. #define EN_REPRAPWORLD_KEYPAD_UP BIT((BLEN_REPRAPWORLD_KEYPAD_UP+REPRAPWORLD_BTN_OFFSET))
  75. #define EN_REPRAPWORLD_KEYPAD_RIGHT BIT((BLEN_REPRAPWORLD_KEYPAD_RIGHT+REPRAPWORLD_BTN_OFFSET))
  76. #define EN_REPRAPWORLD_KEYPAD_MIDDLE BIT((BLEN_REPRAPWORLD_KEYPAD_MIDDLE+REPRAPWORLD_BTN_OFFSET))
  77. #define EN_REPRAPWORLD_KEYPAD_DOWN BIT((BLEN_REPRAPWORLD_KEYPAD_DOWN+REPRAPWORLD_BTN_OFFSET))
  78. #define EN_REPRAPWORLD_KEYPAD_LEFT BIT((BLEN_REPRAPWORLD_KEYPAD_LEFT+REPRAPWORLD_BTN_OFFSET))
  79. //#define LCD_CLICKED ((buttons&EN_C) || (buttons&EN_REPRAPWORLD_KEYPAD_F1))
  80. //#define REPRAPWORLD_KEYPAD_MOVE_Y_DOWN (buttons&EN_REPRAPWORLD_KEYPAD_DOWN)
  81. //#define REPRAPWORLD_KEYPAD_MOVE_Y_UP (buttons&EN_REPRAPWORLD_KEYPAD_UP)
  82. //#define REPRAPWORLD_KEYPAD_MOVE_HOME (buttons&EN_REPRAPWORLD_KEYPAD_MIDDLE)
  83. #elif defined(NEWPANEL)
  84. #define LCD_CLICKED (buttons&EN_C)
  85. #else // old style ULTIPANEL
  86. //bits in the shift register that carry the buttons for:
  87. // left up center down right red(stop)
  88. #define BL_LE 7
  89. #define BL_UP 6
  90. #define BL_MI 5
  91. #define BL_DW 4
  92. #define BL_RI 3
  93. #define BL_ST 2
  94. //automatic, do not change
  95. #define B_LE BIT(BL_LE)
  96. #define B_UP BIT(BL_UP)
  97. #define B_MI BIT(BL_MI)
  98. #define B_DW BIT(BL_DW)
  99. #define B_RI BIT(BL_RI)
  100. #define B_ST BIT(BL_ST)
  101. #define LCD_CLICKED (buttons&(B_MI|B_ST))
  102. #endif
  103. #endif //ULTIPANEL
  104. ////////////////////////////////////
  105. // Create LCD class instance and chipset-specific information
  106. #if defined(LCD_I2C_TYPE_PCF8575)
  107. // note: these are register mapped pins on the PCF8575 controller not Arduino pins
  108. #define LCD_I2C_PIN_BL 3
  109. #define LCD_I2C_PIN_EN 2
  110. #define LCD_I2C_PIN_RW 1
  111. #define LCD_I2C_PIN_RS 0
  112. #define LCD_I2C_PIN_D4 4
  113. #define LCD_I2C_PIN_D5 5
  114. #define LCD_I2C_PIN_D6 6
  115. #define LCD_I2C_PIN_D7 7
  116. #include <Wire.h>
  117. #include <LCD.h>
  118. #include <LiquidCrystal_I2C.h>
  119. #define LCD_CLASS LiquidCrystal_I2C
  120. 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);
  121. #elif defined(LCD_I2C_TYPE_MCP23017)
  122. //for the LED indicators (which maybe mapped to different things in lcd_implementation_update_indicators())
  123. #define LED_A 0x04 //100
  124. #define LED_B 0x02 //010
  125. #define LED_C 0x01 //001
  126. #define LCD_HAS_STATUS_INDICATORS
  127. #include <Wire.h>
  128. #include <LiquidTWI2.h>
  129. #define LCD_CLASS LiquidTWI2
  130. #if defined(DETECT_DEVICE)
  131. LCD_CLASS lcd(LCD_I2C_ADDRESS, 1);
  132. #else
  133. LCD_CLASS lcd(LCD_I2C_ADDRESS);
  134. #endif
  135. #elif defined(LCD_I2C_TYPE_MCP23008)
  136. #include <Wire.h>
  137. #include <LiquidTWI2.h>
  138. #define LCD_CLASS LiquidTWI2
  139. #if defined(DETECT_DEVICE)
  140. LCD_CLASS lcd(LCD_I2C_ADDRESS, 1);
  141. #else
  142. LCD_CLASS lcd(LCD_I2C_ADDRESS);
  143. #endif
  144. #elif defined(LCD_I2C_TYPE_PCA8574)
  145. #include <LiquidCrystal_I2C.h>
  146. #define LCD_CLASS LiquidCrystal_I2C
  147. LCD_CLASS lcd(LCD_I2C_ADDRESS, LCD_WIDTH, LCD_HEIGHT);
  148. // 2 wire Non-latching LCD SR from:
  149. // https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/schematics#!shiftregister-connection
  150. #elif defined(SR_LCD_2W_NL)
  151. extern "C" void __cxa_pure_virtual() { while (1); }
  152. #include <LCD.h>
  153. #include <LiquidCrystal_SR.h>
  154. #define LCD_CLASS LiquidCrystal_SR
  155. LCD_CLASS lcd(SR_DATA_PIN, SR_CLK_PIN);
  156. #else
  157. // Standard directly connected LCD implementations
  158. #include <LiquidCrystal.h>
  159. #define LCD_CLASS LiquidCrystal
  160. 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
  161. #endif
  162. #include "utf_mapper.h"
  163. #ifdef 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. #ifdef 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. #ifdef 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. #ifdef LCD_PROGRESS_BAR
  316. bool progress_bar_set=true
  317. #endif
  318. ) {
  319. #if defined(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 defined(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 defined(LCD_I2C_TYPE_MCP23008)
  330. lcd.setMCPType(LTI_TYPE_MCP23008);
  331. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  332. #elif defined(LCD_I2C_TYPE_PCA8574)
  333. lcd.init();
  334. lcd.backlight();
  335. #else
  336. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  337. #endif
  338. lcd_set_custom_characters(
  339. #ifdef LCD_PROGRESS_BAR
  340. progress_bar_set
  341. #endif
  342. );
  343. lcd.clear();
  344. }
  345. static void lcd_implementation_clear() { lcd.clear(); }
  346. /* Arduino < 1.0.0 is missing a function to print PROGMEM strings, so we need to implement our own */
  347. char lcd_printPGM(const char* str) {
  348. char c, n = 0;
  349. while ((c = pgm_read_byte(str++))) n += charset_mapper(c);
  350. return n;
  351. }
  352. char lcd_print(char* str) {
  353. char c, n = 0;;
  354. unsigned char i = 0;
  355. while ((c = str[i++])) n += charset_mapper(c);
  356. return n;
  357. }
  358. unsigned lcd_print(char c) { return charset_mapper(c); }
  359. /*
  360. Possible status screens:
  361. 16x2 |0123456789012345|
  362. |000/000 B000/000|
  363. |Status line.....|
  364. 16x4 |0123456789012345|
  365. |000/000 B000/000|
  366. |SD100% Z000.0|
  367. |F100% T--:--|
  368. |Status line.....|
  369. 20x2 |01234567890123456789|
  370. |T000/000D B000/000D |
  371. |Status line.........|
  372. 20x4 |01234567890123456789|
  373. |T000/000D B000/000D |
  374. |X000 Y000 Z000.00|
  375. |F100% SD100% T--:--|
  376. |Status line.........|
  377. 20x4 |01234567890123456789|
  378. |T000/000D B000/000D |
  379. |T000/000D Z000.00 |
  380. |F100% SD100% T--:--|
  381. |Status line.........|
  382. */
  383. static void lcd_implementation_status_screen() {
  384. int tHotend = int(degHotend(0) + 0.5);
  385. int tTarget = int(degTargetHotend(0) + 0.5);
  386. #if LCD_WIDTH < 20
  387. lcd.setCursor(0, 0);
  388. lcd.print(itostr3(tHotend));
  389. lcd.print('/');
  390. lcd.print(itostr3left(tTarget));
  391. #if EXTRUDERS > 1 || TEMP_SENSOR_BED != 0
  392. // If we have an 2nd extruder or heated bed, show that in the top right corner
  393. lcd.setCursor(8, 0);
  394. #if EXTRUDERS > 1
  395. tHotend = int(degHotend(1) + 0.5);
  396. tTarget = int(degTargetHotend(1) + 0.5);
  397. lcd.print(LCD_STR_THERMOMETER[0]);
  398. #else // Heated bed
  399. tHotend = int(degBed() + 0.5);
  400. tTarget = int(degTargetBed() + 0.5);
  401. lcd.print(LCD_STR_BEDTEMP[0]);
  402. #endif
  403. lcd.print(itostr3(tHotend));
  404. lcd.print('/');
  405. lcd.print(itostr3left(tTarget));
  406. #endif // EXTRUDERS > 1 || TEMP_SENSOR_BED != 0
  407. #else // LCD_WIDTH > 19
  408. lcd.setCursor(0, 0);
  409. lcd.print(LCD_STR_THERMOMETER[0]);
  410. lcd.print(itostr3(tHotend));
  411. lcd.print('/');
  412. lcd.print(itostr3left(tTarget));
  413. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  414. if (tTarget < 10) lcd.print(' ');
  415. #if EXTRUDERS > 1 || TEMP_SENSOR_BED != 0
  416. // If we have an 2nd extruder or heated bed, show that in the top right corner
  417. lcd.setCursor(10, 0);
  418. #if EXTRUDERS > 1
  419. tHotend = int(degHotend(1) + 0.5);
  420. tTarget = int(degTargetHotend(1) + 0.5);
  421. lcd.print(LCD_STR_THERMOMETER[0]);
  422. #else // Heated bed
  423. tHotend = int(degBed() + 0.5);
  424. tTarget = int(degTargetBed() + 0.5);
  425. lcd.print(LCD_STR_BEDTEMP[0]);
  426. #endif
  427. lcd.print(itostr3(tHotend));
  428. lcd.print('/');
  429. lcd.print(itostr3left(tTarget));
  430. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  431. if (tTarget < 10) lcd.print(' ');
  432. #endif // EXTRUDERS > 1 || TEMP_SENSOR_BED != 0
  433. #endif // LCD_WIDTH > 19
  434. #if LCD_HEIGHT > 2
  435. // Lines 2 for 4 line LCD
  436. #if LCD_WIDTH < 20
  437. #ifdef SDSUPPORT
  438. lcd.setCursor(0, 2);
  439. lcd_printPGM(PSTR("SD"));
  440. if (IS_SD_PRINTING)
  441. lcd.print(itostr3(card.percentDone()));
  442. else
  443. lcd_printPGM(PSTR("---"));
  444. lcd.print('%');
  445. #endif // SDSUPPORT
  446. #else // LCD_WIDTH > 19
  447. #if EXTRUDERS > 1 && TEMP_SENSOR_BED != 0
  448. // If we both have a 2nd extruder and a heated bed, show the heated bed temp on the 2nd line on the left, as the first line is filled with extruder temps
  449. tHotend = int(degBed() + 0.5);
  450. tTarget = int(degTargetBed() + 0.5);
  451. lcd.setCursor(0, 1);
  452. lcd.print(LCD_STR_BEDTEMP[0]);
  453. lcd.print(itostr3(tHotend));
  454. lcd.print('/');
  455. lcd.print(itostr3left(tTarget));
  456. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  457. if (tTarget < 10) lcd.print(' ');
  458. #else
  459. lcd.setCursor(0,1);
  460. lcd.print('X');
  461. lcd.print(ftostr3(current_position[X_AXIS]));
  462. lcd_printPGM(PSTR(" Y"));
  463. lcd.print(ftostr3(current_position[Y_AXIS]));
  464. #endif // EXTRUDERS > 1 || TEMP_SENSOR_BED != 0
  465. #endif // LCD_WIDTH > 19
  466. lcd.setCursor(LCD_WIDTH - 8, 1);
  467. lcd.print('Z');
  468. lcd.print(ftostr32sp(current_position[Z_AXIS] + 0.00001));
  469. #endif // LCD_HEIGHT > 2
  470. #if LCD_HEIGHT > 3
  471. lcd.setCursor(0, 2);
  472. lcd.print(LCD_STR_FEEDRATE[0]);
  473. lcd.print(itostr3(feedrate_multiplier));
  474. lcd.print('%');
  475. #if LCD_WIDTH > 19 && defined(SDSUPPORT)
  476. lcd.setCursor(7, 2);
  477. lcd_printPGM(PSTR("SD"));
  478. if (IS_SD_PRINTING)
  479. lcd.print(itostr3(card.percentDone()));
  480. else
  481. lcd_printPGM(PSTR("---"));
  482. lcd.print('%');
  483. #endif // LCD_WIDTH > 19 && SDSUPPORT
  484. lcd.setCursor(LCD_WIDTH - 6, 2);
  485. lcd.print(LCD_STR_CLOCK[0]);
  486. if (print_job_start_ms != 0) {
  487. uint16_t time = millis()/60000 - print_job_start_ms/60000;
  488. lcd.print(itostr2(time/60));
  489. lcd.print(':');
  490. lcd.print(itostr2(time%60));
  491. }
  492. else {
  493. lcd_printPGM(PSTR("--:--"));
  494. }
  495. #endif // LCD_HEIGHT > 3
  496. /**
  497. * Display Progress Bar, Filament display, and/or Status Message on the last line
  498. */
  499. lcd.setCursor(0, LCD_HEIGHT - 1);
  500. #ifdef LCD_PROGRESS_BAR
  501. if (card.isFileOpen()) {
  502. // Draw the progress bar if the message has shown long enough
  503. // or if there is no message set.
  504. if (millis() >= progress_bar_ms + PROGRESS_BAR_MSG_TIME || !lcd_status_message[0]) {
  505. int tix = (int)(card.percentDone() * LCD_WIDTH * 3) / 100,
  506. cel = tix / 3, rem = tix % 3, i = LCD_WIDTH;
  507. char msg[LCD_WIDTH+1], b = ' ';
  508. msg[i] = '\0';
  509. while (i--) {
  510. if (i == cel - 1)
  511. b = LCD_STR_PROGRESS[2];
  512. else if (i == cel && rem != 0)
  513. b = LCD_STR_PROGRESS[rem-1];
  514. msg[i] = b;
  515. }
  516. lcd.print(msg);
  517. return;
  518. }
  519. } //card.isFileOpen
  520. #elif defined(FILAMENT_LCD_DISPLAY)
  521. // Show Filament Diameter and Volumetric Multiplier %
  522. // After allowing lcd_status_message to show for 5 seconds
  523. if (millis() >= previous_lcd_status_ms + 5000) {
  524. lcd_printPGM(PSTR("Dia "));
  525. lcd.print(ftostr12ns(filament_width_meas));
  526. lcd_printPGM(PSTR(" V"));
  527. lcd.print(itostr3(100.0*volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]));
  528. lcd.print('%');
  529. return;
  530. }
  531. #endif // FILAMENT_LCD_DISPLAY
  532. lcd_print(lcd_status_message);
  533. }
  534. static void lcd_implementation_drawmenu_generic(bool sel, uint8_t row, const char* pstr, char pre_char, char post_char) {
  535. char c;
  536. uint8_t n = LCD_WIDTH - 2;
  537. lcd.setCursor(0, row);
  538. lcd.print(sel ? pre_char : ' ');
  539. while ((c = pgm_read_byte(pstr)) && n > 0) {
  540. n -= lcd_print(c);
  541. pstr++;
  542. }
  543. while(n--) lcd.print(' ');
  544. lcd.print(post_char);
  545. }
  546. static void lcd_implementation_drawmenu_setting_edit_generic(bool sel, uint8_t row, const char* pstr, char pre_char, char* data) {
  547. char c;
  548. uint8_t n = LCD_WIDTH - 2 - lcd_strlen(data);
  549. lcd.setCursor(0, row);
  550. lcd.print(sel ? pre_char : ' ');
  551. while ((c = pgm_read_byte(pstr)) && n > 0) {
  552. n -= lcd_print(c);
  553. pstr++;
  554. }
  555. lcd.print(':');
  556. while (n--) lcd.print(' ');
  557. lcd_print(data);
  558. }
  559. static void lcd_implementation_drawmenu_setting_edit_generic_P(bool sel, uint8_t row, const char* pstr, char pre_char, const char* data) {
  560. char c;
  561. uint8_t n = LCD_WIDTH - 2 - lcd_strlen_P(data);
  562. lcd.setCursor(0, row);
  563. lcd.print(sel ? pre_char : ' ');
  564. while ((c = pgm_read_byte(pstr)) && n > 0) {
  565. n -= lcd_print(c);
  566. pstr++;
  567. }
  568. lcd.print(':');
  569. while (n--) lcd.print(' ');
  570. lcd_printPGM(data);
  571. }
  572. #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)))
  573. #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)))
  574. #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)))
  575. #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)))
  576. #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)))
  577. #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)))
  578. #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)))
  579. #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)))
  580. #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))
  581. //Add version for callback functions
  582. #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)))
  583. #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)))
  584. #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)))
  585. #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)))
  586. #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)))
  587. #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)))
  588. #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)))
  589. #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)))
  590. #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))
  591. void lcd_implementation_drawedit(const char* pstr, char* value) {
  592. lcd.setCursor(1, 1);
  593. lcd_printPGM(pstr);
  594. lcd.print(':');
  595. lcd.setCursor(LCD_WIDTH - lcd_strlen(value), 1);
  596. lcd_print(value);
  597. }
  598. 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) {
  599. char c;
  600. uint8_t n = LCD_WIDTH - concat;
  601. lcd.setCursor(0, row);
  602. lcd.print(sel ? '>' : ' ');
  603. if (longFilename[0]) {
  604. filename = longFilename;
  605. longFilename[n] = '\0';
  606. }
  607. while ((c = *filename) && n > 0) {
  608. n -= lcd_print(c);
  609. filename++;
  610. }
  611. while (n--) lcd.print(' ');
  612. lcd.print(post_char);
  613. }
  614. static void lcd_implementation_drawmenu_sdfile(bool sel, uint8_t row, const char* pstr, const char* filename, char* longFilename) {
  615. lcd_implementation_drawmenu_sd(sel, row, pstr, filename, longFilename, 2, ' ');
  616. }
  617. static void lcd_implementation_drawmenu_sddirectory(bool sel, uint8_t row, const char* pstr, const char* filename, char* longFilename) {
  618. lcd_implementation_drawmenu_sd(sel, row, pstr, filename, longFilename, 2, LCD_STR_FOLDER[0]);
  619. }
  620. #define lcd_implementation_drawmenu_back(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, LCD_STR_UPLEVEL[0], LCD_STR_UPLEVEL[0])
  621. #define lcd_implementation_drawmenu_submenu(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', LCD_STR_ARROW_RIGHT[0])
  622. #define lcd_implementation_drawmenu_gcode(sel, row, pstr, gcode) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
  623. #define lcd_implementation_drawmenu_function(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
  624. #ifdef LCD_HAS_STATUS_INDICATORS
  625. static void lcd_implementation_update_indicators() {
  626. #if defined(LCD_I2C_PANELOLU2) || defined(LCD_I2C_VIKI)
  627. // Set the LEDS - referred to as backlights by the LiquidTWI2 library
  628. static uint8_t ledsprev = 0;
  629. uint8_t leds = 0;
  630. if (target_temperature_bed > 0) leds |= LED_A;
  631. if (target_temperature[0] > 0) leds |= LED_B;
  632. if (fanSpeed) leds |= LED_C;
  633. #if EXTRUDERS > 1
  634. if (target_temperature[1] > 0) leds |= LED_C;
  635. #endif
  636. if (leds != ledsprev) {
  637. lcd.setBacklight(leds);
  638. ledsprev = leds;
  639. }
  640. #endif
  641. }
  642. #endif // LCD_HAS_STATUS_INDICATORS
  643. #ifdef LCD_HAS_SLOW_BUTTONS
  644. extern millis_t next_button_update_ms;
  645. static uint8_t lcd_implementation_read_slow_buttons() {
  646. #ifdef LCD_I2C_TYPE_MCP23017
  647. uint8_t slow_buttons;
  648. // Reading these buttons this is likely to be too slow to call inside interrupt context
  649. // so they are called during normal lcd_update
  650. slow_buttons = lcd.readButtons() << B_I2C_BTN_OFFSET;
  651. #ifdef LCD_I2C_VIKI
  652. if ((slow_buttons & (B_MI|B_RI)) && millis() < next_button_update_ms) // LCD clicked
  653. slow_buttons &= ~(B_MI|B_RI); // Disable LCD clicked buttons if screen is updated
  654. #endif
  655. return slow_buttons;
  656. #endif
  657. }
  658. #endif // LCD_HAS_SLOW_BUTTONS
  659. #endif // ULTRALCD_IMPLEMENTATION_HITACHI_HD44780_H