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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890
  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 uint16_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 3
  66. #define BLEN_REPRAPWORLD_KEYPAD_RIGHT 4
  67. #define BLEN_REPRAPWORLD_KEYPAD_MIDDLE 5
  68. #define BLEN_REPRAPWORLD_KEYPAD_DOWN 6
  69. #define BLEN_REPRAPWORLD_KEYPAD_LEFT 7
  70. #define REPRAPWORLD_BTN_OFFSET 3 // 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. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  164. static uint16_t progressBarTick = 0;
  165. #if PROGRESS_MSG_EXPIRE > 0
  166. static uint16_t messageTick = 0;
  167. #endif
  168. #define LCD_STR_PROGRESS "\x03\x04\x05"
  169. #endif
  170. /* Custom characters defined in the first 8 characters of the LCD */
  171. #define LCD_STR_BEDTEMP "\x00" // this will have 'unexpected' results when used in a string!
  172. #define LCD_STR_DEGREE "\x01"
  173. #define LCD_STR_THERMOMETER "\x02"
  174. #define LCD_STR_UPLEVEL "\x03"
  175. #define LCD_STR_REFRESH "\x04"
  176. #define LCD_STR_FOLDER "\x05"
  177. #define LCD_STR_FEEDRATE "\x06"
  178. #define LCD_STR_CLOCK "\x07"
  179. //#define LCD_STR_ARROW_RIGHT "\x7E" /* from the default character set. Only available on DISPLAY_CHARSET_HD44780_JAPAN - at this place!*/
  180. #define LCD_STR_ARROW_RIGHT ">" /* from the default character set */
  181. static void lcd_set_custom_characters(
  182. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  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 defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  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 defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  327. bool progress_bar_set=true
  328. #endif
  329. ) {
  330. #if defined(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.setBacklight(HIGH);
  335. #endif
  336. #elif defined(LCD_I2C_TYPE_MCP23017)
  337. lcd.setMCPType(LTI_TYPE_MCP23017);
  338. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  339. lcd.setBacklight(0); //set all the LEDs off to begin with
  340. #elif defined(LCD_I2C_TYPE_MCP23008)
  341. lcd.setMCPType(LTI_TYPE_MCP23008);
  342. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  343. #elif defined(LCD_I2C_TYPE_PCA8574)
  344. lcd.init();
  345. lcd.backlight();
  346. #else
  347. lcd.begin(LCD_WIDTH, LCD_HEIGHT);
  348. #endif
  349. lcd_set_custom_characters(
  350. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  351. progress_bar_set
  352. #endif
  353. );
  354. lcd.clear();
  355. }
  356. static void lcd_implementation_clear()
  357. {
  358. lcd.clear();
  359. }
  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;
  363. char n = 0;
  364. while((c = pgm_read_byte(str++))) {
  365. n += charset_mapper(c);
  366. }
  367. return n;
  368. }
  369. char lcd_print(char* str) {
  370. char c;
  371. char i = 0;
  372. char n = 0;
  373. while((c = str[i++])) {
  374. n += charset_mapper(c);
  375. }
  376. return n;
  377. }
  378. unsigned lcd_print(char c) {
  379. return charset_mapper(c);
  380. }
  381. /*
  382. Possible status screens:
  383. 16x2 |0123456789012345|
  384. |000/000 B000/000|
  385. |Status line.....|
  386. 16x4 |0123456789012345|
  387. |000/000 B000/000|
  388. |SD100% Z000.0|
  389. |F100% T--:--|
  390. |Status line.....|
  391. 20x2 |01234567890123456789|
  392. |T000/000D B000/000D |
  393. |Status line.........|
  394. 20x4 |01234567890123456789|
  395. |T000/000D B000/000D |
  396. |X+000.0 Y+000.0 Z+000.0|
  397. |F100% SD100% T--:--|
  398. |Status line.........|
  399. 20x4 |01234567890123456789|
  400. |T000/000D B000/000D |
  401. |T000/000D Z000.0|
  402. |F100% SD100% T--:--|
  403. |Status line.........|
  404. */
  405. static void lcd_implementation_status_screen()
  406. {
  407. int tHotend=int(degHotend(0) + 0.5);
  408. int tTarget=int(degTargetHotend(0) + 0.5);
  409. #if LCD_WIDTH < 20
  410. lcd.setCursor(0, 0);
  411. lcd.print(itostr3(tHotend));
  412. lcd.print('/');
  413. lcd.print(itostr3left(tTarget));
  414. # if EXTRUDERS > 1 || TEMP_SENSOR_BED != 0
  415. //If we have an 2nd extruder or heated bed, show that in the top right corner
  416. lcd.setCursor(8, 0);
  417. # if EXTRUDERS > 1
  418. tHotend = int(degHotend(1) + 0.5);
  419. tTarget = int(degTargetHotend(1) + 0.5);
  420. lcd.print(LCD_STR_THERMOMETER[0]);
  421. # else//Heated bed
  422. tHotend=int(degBed() + 0.5);
  423. tTarget=int(degTargetBed() + 0.5);
  424. lcd.print(LCD_STR_BEDTEMP[0]);
  425. # endif
  426. lcd.print(itostr3(tHotend));
  427. lcd.print('/');
  428. lcd.print(itostr3left(tTarget));
  429. # endif//EXTRUDERS > 1 || TEMP_SENSOR_BED != 0
  430. #else//LCD_WIDTH > 19
  431. lcd.setCursor(0, 0);
  432. lcd.print(LCD_STR_THERMOMETER[0]);
  433. lcd.print(itostr3(tHotend));
  434. lcd.print('/');
  435. lcd.print(itostr3left(tTarget));
  436. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  437. if (tTarget < 10)
  438. lcd.print(' ');
  439. # if EXTRUDERS > 1 || TEMP_SENSOR_BED != 0
  440. //If we have an 2nd extruder or heated bed, show that in the top right corner
  441. lcd.setCursor(10, 0);
  442. # if EXTRUDERS > 1
  443. tHotend = int(degHotend(1) + 0.5);
  444. tTarget = int(degTargetHotend(1) + 0.5);
  445. lcd.print(LCD_STR_THERMOMETER[0]);
  446. # else//Heated bed
  447. tHotend=int(degBed() + 0.5);
  448. tTarget=int(degTargetBed() + 0.5);
  449. lcd.print(LCD_STR_BEDTEMP[0]);
  450. # endif
  451. lcd.print(itostr3(tHotend));
  452. lcd.print('/');
  453. lcd.print(itostr3left(tTarget));
  454. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  455. if (tTarget < 10)
  456. lcd.print(' ');
  457. # endif//EXTRUDERS > 1 || TEMP_SENSOR_BED != 0
  458. #endif//LCD_WIDTH > 19
  459. #if LCD_HEIGHT > 2
  460. //Lines 2 for 4 line LCD
  461. # if LCD_WIDTH < 20
  462. # ifdef SDSUPPORT
  463. lcd.setCursor(0, 2);
  464. lcd_printPGM(PSTR("SD"));
  465. if (IS_SD_PRINTING)
  466. lcd.print(itostr3(card.percentDone()));
  467. else
  468. lcd_printPGM(PSTR("---"));
  469. lcd.print('%');
  470. # endif//SDSUPPORT
  471. # else//LCD_WIDTH > 19
  472. # if EXTRUDERS > 1 && TEMP_SENSOR_BED != 0
  473. //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
  474. tHotend=int(degBed() + 0.5);
  475. tTarget=int(degTargetBed() + 0.5);
  476. lcd.setCursor(0, 1);
  477. lcd.print(LCD_STR_BEDTEMP[0]);
  478. lcd.print(itostr3(tHotend));
  479. lcd.print('/');
  480. lcd.print(itostr3left(tTarget));
  481. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  482. if (tTarget < 10)
  483. lcd.print(' ');
  484. # else
  485. lcd.setCursor(0,1);
  486. lcd.print('X');
  487. lcd.print(ftostr3(current_position[X_AXIS]));
  488. lcd_printPGM(PSTR(" Y"));
  489. lcd.print(ftostr3(current_position[Y_AXIS]));
  490. # endif//EXTRUDERS > 1 || TEMP_SENSOR_BED != 0
  491. # endif//LCD_WIDTH > 19
  492. lcd.setCursor(LCD_WIDTH - 8, 1);
  493. lcd.print('Z');
  494. lcd.print(ftostr32sp(current_position[Z_AXIS] + 0.00001));
  495. #endif//LCD_HEIGHT > 2
  496. #if LCD_HEIGHT > 3
  497. lcd.setCursor(0, 2);
  498. lcd.print(LCD_STR_FEEDRATE[0]);
  499. lcd.print(itostr3(feedmultiply));
  500. lcd.print('%');
  501. # if LCD_WIDTH > 19
  502. # ifdef SDSUPPORT
  503. lcd.setCursor(7, 2);
  504. lcd_printPGM(PSTR("SD"));
  505. if (IS_SD_PRINTING)
  506. lcd.print(itostr3(card.percentDone()));
  507. else
  508. lcd_printPGM(PSTR("---"));
  509. lcd.print('%');
  510. # endif//SDSUPPORT
  511. # endif//LCD_WIDTH > 19
  512. lcd.setCursor(LCD_WIDTH - 6, 2);
  513. lcd.print(LCD_STR_CLOCK[0]);
  514. if(starttime != 0)
  515. {
  516. uint16_t time = millis()/60000 - starttime/60000;
  517. lcd.print(itostr2(time/60));
  518. lcd.print(':');
  519. lcd.print(itostr2(time%60));
  520. }else{
  521. lcd_printPGM(PSTR("--:--"));
  522. }
  523. #endif
  524. // Status message line at the bottom
  525. lcd.setCursor(0, LCD_HEIGHT - 1);
  526. #if defined(LCD_PROGRESS_BAR) && defined(SDSUPPORT)
  527. if (card.isFileOpen()) {
  528. uint16_t mil = millis(), diff = mil - progressBarTick;
  529. if (diff >= PROGRESS_BAR_MSG_TIME || !lcd_status_message[0]) {
  530. // draw the progress bar
  531. int tix = (int)(card.percentDone() * LCD_WIDTH * 3) / 100,
  532. cel = tix / 3, rem = tix % 3, i = LCD_WIDTH;
  533. char msg[LCD_WIDTH+1], b = ' ';
  534. msg[i] = '\0';
  535. while (i--) {
  536. if (i == cel - 1)
  537. b = LCD_STR_PROGRESS[2];
  538. else if (i == cel && rem != 0)
  539. b = LCD_STR_PROGRESS[rem-1];
  540. msg[i] = b;
  541. }
  542. lcd.print(msg);
  543. return;
  544. }
  545. } //card.isFileOpen
  546. #endif //LCD_PROGRESS_BAR
  547. //Display both Status message line and Filament display on the last line
  548. #ifdef FILAMENT_LCD_DISPLAY
  549. if (message_millis + 5000 <= millis()) { //display any status for the first 5 sec after screen is initiated
  550. lcd_printPGM(PSTR("Dia "));
  551. lcd.print(ftostr12ns(filament_width_meas));
  552. lcd_printPGM(PSTR(" V"));
  553. lcd.print(itostr3(100.0*volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]));
  554. lcd.print('%');
  555. return;
  556. }
  557. #endif //FILAMENT_LCD_DISPLAY
  558. lcd_print(lcd_status_message);
  559. }
  560. static void lcd_implementation_drawmenu_generic(uint8_t row, const char* pstr, char pre_char, char post_char)
  561. {
  562. char c;
  563. //Use all characters in narrow LCDs
  564. #if LCD_WIDTH < 20
  565. uint8_t n = LCD_WIDTH - 1 - 1;
  566. #else
  567. uint8_t n = LCD_WIDTH - 1 - 2;
  568. #endif
  569. lcd.setCursor(0, row);
  570. lcd.print(pre_char);
  571. while( ((c = pgm_read_byte(pstr)) != '\0') && (n>0) )
  572. {
  573. n -= lcd_print(c);
  574. pstr++;
  575. }
  576. while(n--) {
  577. lcd.print(' ');
  578. }
  579. lcd.print(post_char);
  580. lcd.print(' ');
  581. }
  582. static void lcd_implementation_drawmenu_setting_edit_generic(uint8_t row, const char* pstr, char pre_char, char* data)
  583. {
  584. char c;
  585. //Use all characters in narrow LCDs
  586. #if LCD_WIDTH < 20
  587. uint8_t n = LCD_WIDTH - 1 - 1 - lcd_strlen(data);
  588. #else
  589. uint8_t n = LCD_WIDTH - 1 - 2 - lcd_strlen(data);
  590. #endif
  591. lcd.setCursor(0, row);
  592. lcd.print(pre_char);
  593. while( ((c = pgm_read_byte(pstr)) != '\0') && (n>0) ) {
  594. n -= lcd_print(c);
  595. pstr++;
  596. }
  597. lcd.print(':');
  598. while(n--)
  599. lcd.print(' ');
  600. lcd_print(data);
  601. }
  602. static void lcd_implementation_drawmenu_setting_edit_generic_P(uint8_t row, const char* pstr, char pre_char, const char* data)
  603. {
  604. char c;
  605. //Use all characters in narrow LCDs
  606. #if LCD_WIDTH < 20
  607. uint8_t n = LCD_WIDTH - 1 - 1 - lcd_strlen_P(data);
  608. #else
  609. uint8_t n = LCD_WIDTH - 1 - 2 - lcd_strlen_P(data);
  610. #endif
  611. lcd.setCursor(0, row);
  612. lcd.print(pre_char);
  613. while( ((c = pgm_read_byte(pstr)) != '\0') && (n>0) ) {
  614. n -= lcd_print(c);
  615. pstr++;
  616. }
  617. lcd.print(':');
  618. while(n--)
  619. lcd.print(' ');
  620. lcd_printPGM(data);
  621. }
  622. #define lcd_implementation_drawmenu_setting_edit_int3_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', itostr3(*(data)))
  623. #define lcd_implementation_drawmenu_setting_edit_int3(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', itostr3(*(data)))
  624. #define lcd_implementation_drawmenu_setting_edit_float3_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr3(*(data)))
  625. #define lcd_implementation_drawmenu_setting_edit_float3(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr3(*(data)))
  626. #define lcd_implementation_drawmenu_setting_edit_float32_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr32(*(data)))
  627. #define lcd_implementation_drawmenu_setting_edit_float32(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr32(*(data)))
  628. #define lcd_implementation_drawmenu_setting_edit_float43_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr43(*(data)))
  629. #define lcd_implementation_drawmenu_setting_edit_float43(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr43(*(data)))
  630. #define lcd_implementation_drawmenu_setting_edit_float5_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr5(*(data)))
  631. #define lcd_implementation_drawmenu_setting_edit_float5(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr5(*(data)))
  632. #define lcd_implementation_drawmenu_setting_edit_float52_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr52(*(data)))
  633. #define lcd_implementation_drawmenu_setting_edit_float52(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr52(*(data)))
  634. #define lcd_implementation_drawmenu_setting_edit_float51_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr51(*(data)))
  635. #define lcd_implementation_drawmenu_setting_edit_float51(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr51(*(data)))
  636. #define lcd_implementation_drawmenu_setting_edit_long5_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr5(*(data)))
  637. #define lcd_implementation_drawmenu_setting_edit_long5(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr5(*(data)))
  638. #define lcd_implementation_drawmenu_setting_edit_bool_selected(row, pstr, pstr2, data) lcd_implementation_drawmenu_setting_edit_generic_P(row, pstr, '>', (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
  639. #define lcd_implementation_drawmenu_setting_edit_bool(row, pstr, pstr2, data) lcd_implementation_drawmenu_setting_edit_generic_P(row, pstr, ' ', (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
  640. //Add version for callback functions
  641. #define lcd_implementation_drawmenu_setting_edit_callback_int3_selected(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', itostr3(*(data)))
  642. #define lcd_implementation_drawmenu_setting_edit_callback_int3(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', itostr3(*(data)))
  643. #define lcd_implementation_drawmenu_setting_edit_callback_float3_selected(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr3(*(data)))
  644. #define lcd_implementation_drawmenu_setting_edit_callback_float3(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr3(*(data)))
  645. #define lcd_implementation_drawmenu_setting_edit_callback_float32_selected(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr32(*(data)))
  646. #define lcd_implementation_drawmenu_setting_edit_callback_float32(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr32(*(data)))
  647. #define lcd_implementation_drawmenu_setting_edit_callback_float43_selected(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr43(*(data)))
  648. #define lcd_implementation_drawmenu_setting_edit_callback_float43(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr43(*(data)))
  649. #define lcd_implementation_drawmenu_setting_edit_callback_float5_selected(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr5(*(data)))
  650. #define lcd_implementation_drawmenu_setting_edit_callback_float5(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr5(*(data)))
  651. #define lcd_implementation_drawmenu_setting_edit_callback_float52_selected(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr52(*(data)))
  652. #define lcd_implementation_drawmenu_setting_edit_callback_float52(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr52(*(data)))
  653. #define lcd_implementation_drawmenu_setting_edit_callback_float51_selected(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr51(*(data)))
  654. #define lcd_implementation_drawmenu_setting_edit_callback_float51(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr51(*(data)))
  655. #define lcd_implementation_drawmenu_setting_edit_callback_long5_selected(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr5(*(data)))
  656. #define lcd_implementation_drawmenu_setting_edit_callback_long5(row, pstr, pstr2, data, minValue, maxValue, callback) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr5(*(data)))
  657. #define lcd_implementation_drawmenu_setting_edit_callback_bool_selected(row, pstr, pstr2, data, callback) lcd_implementation_drawmenu_setting_edit_generic_P(row, pstr, '>', (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
  658. #define lcd_implementation_drawmenu_setting_edit_callback_bool(row, pstr, pstr2, data, callback) lcd_implementation_drawmenu_setting_edit_generic_P(row, pstr, ' ', (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
  659. void lcd_implementation_drawedit(const char* pstr, char* value)
  660. {
  661. lcd.setCursor(1, 1);
  662. lcd_printPGM(pstr);
  663. lcd.print(':');
  664. #if LCD_WIDTH < 20
  665. lcd.setCursor(LCD_WIDTH - lcd_strlen(value), 1);
  666. #else
  667. lcd.setCursor(LCD_WIDTH -1 - lcd_strlen(value), 1);
  668. #endif
  669. lcd_print(value);
  670. }
  671. static void lcd_implementation_drawmenu_sdfile_selected(uint8_t row, const char* pstr, const char* filename, char* longFilename)
  672. {
  673. char c;
  674. uint8_t n = LCD_WIDTH - 1;
  675. lcd.setCursor(0, row);
  676. lcd.print('>');
  677. if (longFilename[0] != '\0')
  678. {
  679. filename = longFilename;
  680. longFilename[LCD_WIDTH-1] = '\0';
  681. }
  682. while( ((c = *filename) != '\0') && (n>0) )
  683. {
  684. n -= lcd_print(c);
  685. filename++;
  686. }
  687. while(n--)
  688. lcd.print(' ');
  689. }
  690. static void lcd_implementation_drawmenu_sdfile(uint8_t row, const char* pstr, const char* filename, char* longFilename)
  691. {
  692. char c;
  693. uint8_t n = LCD_WIDTH - 1;
  694. lcd.setCursor(0, row);
  695. lcd.print(' ');
  696. if (longFilename[0] != '\0')
  697. {
  698. filename = longFilename;
  699. longFilename[LCD_WIDTH-1] = '\0';
  700. }
  701. while( ((c = *filename) != '\0') && (n>0) )
  702. {
  703. n -= lcd_print(c);
  704. filename++;
  705. }
  706. while(n--)
  707. lcd.print(' ');
  708. }
  709. static void lcd_implementation_drawmenu_sddirectory_selected(uint8_t row, const char* pstr, const char* filename, char* longFilename) {
  710. char c;
  711. uint8_t n = LCD_WIDTH - 2;
  712. lcd.setCursor(0, row);
  713. lcd.print('>');
  714. lcd.print(LCD_STR_FOLDER[0]);
  715. if (longFilename[0] != '\0') {
  716. filename = longFilename;
  717. longFilename[LCD_WIDTH-2] = '\0';
  718. }
  719. while( ((c = *filename) != '\0') && (n>0) ) {
  720. n -= lcd_print(c);
  721. filename++;
  722. }
  723. while(n--)
  724. lcd.print(' ');
  725. }
  726. static void lcd_implementation_drawmenu_sddirectory(uint8_t row, const char* pstr, const char* filename, char* longFilename) {
  727. char c;
  728. uint8_t n = LCD_WIDTH - 2;
  729. lcd.setCursor(0, row);
  730. lcd.print(' ');
  731. lcd.print(LCD_STR_FOLDER[0]);
  732. if (longFilename[0] != '\0') {
  733. filename = longFilename;
  734. longFilename[LCD_WIDTH-2] = '\0';
  735. }
  736. while( ((c = *filename) != '\0') && (n>0) ) {
  737. n -= lcd_print(c);
  738. filename++;
  739. }
  740. while(n--)
  741. lcd.print(' ');
  742. }
  743. #define lcd_implementation_drawmenu_back_selected(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, LCD_STR_UPLEVEL[0], LCD_STR_UPLEVEL[0])
  744. #define lcd_implementation_drawmenu_back(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, ' ', LCD_STR_UPLEVEL[0])
  745. #define lcd_implementation_drawmenu_submenu_selected(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, '>', LCD_STR_ARROW_RIGHT[0])
  746. #define lcd_implementation_drawmenu_submenu(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, ' ', LCD_STR_ARROW_RIGHT[0])
  747. #define lcd_implementation_drawmenu_gcode_selected(row, pstr, gcode) lcd_implementation_drawmenu_generic(row, pstr, '>', ' ')
  748. #define lcd_implementation_drawmenu_gcode(row, pstr, gcode) lcd_implementation_drawmenu_generic(row, pstr, ' ', ' ')
  749. #define lcd_implementation_drawmenu_function_selected(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, '>', ' ')
  750. #define lcd_implementation_drawmenu_function(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, ' ', ' ')
  751. static void lcd_implementation_quick_feedback()
  752. {
  753. #ifdef LCD_USE_I2C_BUZZER
  754. #if defined(LCD_FEEDBACK_FREQUENCY_DURATION_MS) && defined(LCD_FEEDBACK_FREQUENCY_HZ)
  755. lcd_buzz(LCD_FEEDBACK_FREQUENCY_DURATION_MS, LCD_FEEDBACK_FREQUENCY_HZ);
  756. #else
  757. lcd_buzz(1000/6, 100);
  758. #endif
  759. #elif defined(BEEPER) && BEEPER > -1
  760. SET_OUTPUT(BEEPER);
  761. #if !defined(LCD_FEEDBACK_FREQUENCY_HZ) || !defined(LCD_FEEDBACK_FREQUENCY_DURATION_MS)
  762. const unsigned int delay = 100;
  763. uint8_t i = 10;
  764. #else
  765. const unsigned int delay = 1000000 / LCD_FEEDBACK_FREQUENCY_HZ / 2;
  766. int8_t i = LCD_FEEDBACK_FREQUENCY_DURATION_MS * LCD_FEEDBACK_FREQUENCY_HZ / 1000;
  767. #endif
  768. while (i--) {
  769. WRITE(BEEPER,HIGH);
  770. delayMicroseconds(delay);
  771. WRITE(BEEPER,LOW);
  772. delayMicroseconds(delay);
  773. }
  774. #endif
  775. }
  776. #ifdef LCD_HAS_STATUS_INDICATORS
  777. static void lcd_implementation_update_indicators()
  778. {
  779. #if defined(LCD_I2C_PANELOLU2) || defined(LCD_I2C_VIKI)
  780. //set the LEDS - referred to as backlights by the LiquidTWI2 library
  781. static uint8_t ledsprev = 0;
  782. uint8_t leds = 0;
  783. if (target_temperature_bed > 0) leds |= LED_A;
  784. if (target_temperature[0] > 0) leds |= LED_B;
  785. if (fanSpeed) leds |= LED_C;
  786. #if EXTRUDERS > 1
  787. if (target_temperature[1] > 0) leds |= LED_C;
  788. #endif
  789. if (leds != ledsprev) {
  790. lcd.setBacklight(leds);
  791. ledsprev = leds;
  792. }
  793. #endif
  794. }
  795. #endif
  796. #ifdef LCD_HAS_SLOW_BUTTONS
  797. extern uint32_t blocking_enc;
  798. static uint8_t lcd_implementation_read_slow_buttons()
  799. {
  800. #ifdef LCD_I2C_TYPE_MCP23017
  801. uint8_t slow_buttons;
  802. // Reading these buttons this is likely to be too slow to call inside interrupt context
  803. // so they are called during normal lcd_update
  804. slow_buttons = lcd.readButtons() << B_I2C_BTN_OFFSET;
  805. #if defined(LCD_I2C_VIKI)
  806. if(slow_buttons & (B_MI|B_RI)) { //LCD clicked
  807. if(blocking_enc > millis()) {
  808. slow_buttons &= ~(B_MI|B_RI); // Disable LCD clicked buttons if screen is updated
  809. }
  810. }
  811. #endif
  812. return slow_buttons;
  813. #endif
  814. }
  815. #endif
  816. #endif //__ULTRALCD_IMPLEMENTATION_HITACHI_HD44780_H