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.

dogm_lcd_implementation.h 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574
  1. /**
  2. *dogm_lcd_implementation.h
  3. *
  4. *Graphics LCD implementation for 128x64 pixel LCDs by STB for ErikZalm/Marlin
  5. *Demonstrator: http://www.reprap.org/wiki/STB_Electronics
  6. *License: http://opensource.org/licenses/BSD-3-Clause
  7. *
  8. *With the use of:
  9. *u8glib by Oliver Kraus
  10. *http://code.google.com/p/u8glib/
  11. *License: http://opensource.org/licenses/BSD-3-Clause
  12. */
  13. #ifndef ULTRA_LCD_IMPLEMENTATION_DOGM_H
  14. #define ULTRA_LCD_IMPLEMENTATION_DOGM_H
  15. /**
  16. * Implementation of the LCD display routines for a DOGM128 graphic display. These are common LCD 128x64 pixel graphic displays.
  17. **/
  18. // CHANGE_DE begin ***
  19. #include <U8glib.h> // DE_U8glib
  20. #include "DOGMbitmaps.h"
  21. #include "dogm_font_data_marlin.h"
  22. #include "ultralcd.h"
  23. /* Russian language not supported yet, needs custom font
  24. #if LANGUAGE_CHOICE == 6
  25. #include "LiquidCrystalRus.h"
  26. #define LCD_CLASS LiquidCrystalRus
  27. #else
  28. #include <LiquidCrystal.h>
  29. #define LCD_CLASS LiquidCrystal
  30. #endif
  31. */
  32. // DOGM parameters (size in pixels)
  33. #define DOG_CHAR_WIDTH 6
  34. #define DOG_CHAR_HEIGHT 12
  35. #define DOG_CHAR_WIDTH_LARGE 9
  36. #define DOG_CHAR_HEIGHT_LARGE 18
  37. #define START_ROW 0
  38. /* Custom characters defined in font font_6x10_marlin.c */
  39. #define LCD_STR_BEDTEMP "\xFE"
  40. #define LCD_STR_DEGREE "\xB0"
  41. #define LCD_STR_THERMOMETER "\xFF"
  42. #define LCD_STR_UPLEVEL "\xFB"
  43. #define LCD_STR_REFRESH "\xF8"
  44. #define LCD_STR_FOLDER "\xF9"
  45. #define LCD_STR_FEEDRATE "\xFD"
  46. #define LCD_STR_CLOCK "\xFC"
  47. #define LCD_STR_ARROW_RIGHT "\xFA"
  48. #define FONT_STATUSMENU u8g_font_6x9
  49. // LCD selection
  50. U8GLIB_DOGM128 u8g(DOGLCD_CS, DOGLCD_A0); // HW-SPI Com: CS, A0
  51. static void lcd_implementation_init()
  52. {
  53. // Uncomment this if you have the first generation (V1.10) of STBs board
  54. // pinMode(17, OUTPUT); // Enable LCD backlight
  55. // digitalWrite(17, HIGH);
  56. u8g.firstPage();
  57. do {
  58. u8g.setFont(u8g_font_6x10_marlin);
  59. u8g.setColorIndex(1);
  60. u8g.drawBox (0, 0, u8g.getWidth(), u8g.getHeight());
  61. u8g.setColorIndex(1);
  62. } while( u8g.nextPage() );
  63. #ifdef LCD_SCREEN_ROT_90
  64. u8g.setRot90(); // Rotate screen by 90°
  65. #endif
  66. #ifdef LCD_SCREEN_ROT_180;
  67. u8g.setRot180(); // Rotate screen by 180°
  68. #endif
  69. #ifdef LCD_SCREEN_ROT_270;
  70. u8g.setRot270(); // Rotate screen by 270°
  71. #endif
  72. u8g.firstPage();
  73. do {
  74. // RepRap init bmp
  75. u8g.drawBitmapP(0,0,START_BMPBYTEWIDTH,START_BMPHEIGHT,start_bmp);
  76. // Welcome message
  77. u8g.setFont(u8g_font_6x10_marlin);
  78. u8g.drawStr(62,10,"MARLIN");
  79. u8g.setFont(u8g_font_5x8);
  80. u8g.drawStr(62,19,"V1.0.0 RC2");
  81. u8g.setFont(u8g_font_6x10_marlin);
  82. u8g.drawStr(62,28,"by ErikZalm");
  83. u8g.drawStr(62,41,"DOGM128 LCD");
  84. u8g.setFont(u8g_font_5x8);
  85. u8g.drawStr(62,48,"enhancements");
  86. u8g.setFont(u8g_font_5x8);
  87. u8g.drawStr(62,55,"by STB");
  88. u8g.drawStr(62,61,"uses u");
  89. u8g.drawStr90(92,57,"8");
  90. u8g.drawStr(100,61,"glib");
  91. } while( u8g.nextPage() );
  92. }
  93. static void lcd_implementation_clear()
  94. {
  95. u8g.firstPage();
  96. do {
  97. u8g.setColorIndex(0);
  98. u8g.drawBox (0, 0, u8g.getWidth(), u8g.getHeight());
  99. u8g.setColorIndex(1);
  100. } while( u8g.nextPage() );
  101. }
  102. /* Arduino < 1.0.0 is missing a function to print PROGMEM strings, so we need to implement our own */
  103. static void lcd_printPGM(const char* str)
  104. {
  105. char c;
  106. while((c = pgm_read_byte(str++)) != '\0')
  107. {
  108. u8g.print(c);
  109. }
  110. }
  111. static void lcd_implementation_status_screen()
  112. {
  113. static unsigned char fan_rot = 0;
  114. u8g.setColorIndex(1); // black on white
  115. // Symbols menu graphics, animated fan
  116. if ((blink % 2) && fanSpeed ) u8g.drawBitmapP(9,1,STATUS_SCREENBYTEWIDTH,STATUS_SCREENHEIGHT,status_screen0_bmp);
  117. else u8g.drawBitmapP(9,1,STATUS_SCREENBYTEWIDTH,STATUS_SCREENHEIGHT,status_screen1_bmp);
  118. #ifdef SDSUPPORT
  119. //SD Card Symbol
  120. u8g.drawBox(42,42,8,7);
  121. u8g.drawBox(50,44,2,5);
  122. u8g.drawFrame(42,49,10,4);
  123. u8g.drawPixel(50,43);
  124. // Progress bar
  125. u8g.drawFrame(54,49,73,4);
  126. // SD Card Progress bar and clock
  127. u8g.setFont(FONT_STATUSMENU);
  128. if (IS_SD_PRINTING)
  129. {
  130. // Progress bar
  131. u8g.drawBox(55,50, (unsigned int)( (71 * card.percentDone())/100) ,2);
  132. }
  133. else {
  134. // do nothing
  135. }
  136. u8g.setPrintPos(80,47);
  137. if(starttime != 0)
  138. {
  139. uint16_t time = millis()/60000 - starttime/60000;
  140. u8g.print(itostr2(time/60));
  141. u8g.print(':');
  142. u8g.print(itostr2(time%60));
  143. }else{
  144. lcd_printPGM(PSTR("--:--"));
  145. }
  146. #endif
  147. // Extruder 1
  148. u8g.setFont(FONT_STATUSMENU);
  149. u8g.setPrintPos(6,6);
  150. u8g.print(itostr3(int(degTargetHotend(0) + 0.5)));
  151. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  152. u8g.setPrintPos(6,27);
  153. u8g.print(itostr3(int(degHotend(0) + 0.5)));
  154. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  155. if (!isHeatingHotend(0)) u8g.drawBox(13,17,2,2);
  156. else
  157. {
  158. u8g.setColorIndex(0); // white on black
  159. u8g.drawBox(13,17,2,2);
  160. u8g.setColorIndex(1); // black on white
  161. }
  162. // Extruder 2
  163. u8g.setFont(FONT_STATUSMENU);
  164. #if EXTRUDERS > 1
  165. u8g.setPrintPos(31,6);
  166. u8g.print(itostr3(int(degTargetHotend(1) + 0.5)));
  167. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  168. u8g.setPrintPos(31,27);
  169. u8g.print(itostr3(int(degHotend(1) + 0.5)));
  170. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  171. if (!isHeatingHotend(1)) u8g.drawBox(38,17,2,2);
  172. else
  173. {
  174. u8g.setColorIndex(0); // white on black
  175. u8g.drawBox(38,17,2,2);
  176. u8g.setColorIndex(1); // black on white
  177. }
  178. #else
  179. u8g.setPrintPos(31,27);
  180. u8g.print("---");
  181. #endif
  182. // Extruder 3
  183. u8g.setFont(FONT_STATUSMENU);
  184. # if EXTRUDERS > 2
  185. u8g.setPrintPos(55,6);
  186. u8g.print(itostr3(int(degTargetHotend(2) + 0.5)));
  187. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  188. u8g.setPrintPos(55,27);
  189. u8g.print(itostr3(int(degHotend(2) + 0.5)));
  190. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  191. if (!isHeatingHotend(2)) u8g.drawBox(62,17,2,2);
  192. else
  193. {
  194. u8g.setColorIndex(0); // white on black
  195. u8g.drawBox(62,17,2,2);
  196. u8g.setColorIndex(1); // black on white
  197. }
  198. #else
  199. u8g.setPrintPos(55,27);
  200. u8g.print("---");
  201. #endif
  202. // Heatbed
  203. u8g.setFont(FONT_STATUSMENU);
  204. u8g.setPrintPos(81,6);
  205. u8g.print(itostr3(int(degTargetBed() + 0.5)));
  206. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  207. u8g.setPrintPos(81,27);
  208. u8g.print(itostr3(int(degBed() + 0.5)));
  209. lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
  210. if (!isHeatingBed()) u8g.drawBox(88,18,2,2);
  211. else
  212. {
  213. u8g.setColorIndex(0); // white on black
  214. u8g.drawBox(88,18,2,2);
  215. u8g.setColorIndex(1); // black on white
  216. }
  217. // Fan
  218. u8g.setFont(FONT_STATUSMENU);
  219. u8g.setPrintPos(104,27);
  220. #if FAN_PIN > 0
  221. u8g.print(itostr3(int((fanSpeed*100)/256 + 1)));
  222. u8g.print("%");
  223. #else
  224. u8g.print("---");
  225. #endif
  226. // X, Y, Z-Coordinates
  227. u8g.setFont(FONT_STATUSMENU);
  228. u8g.drawBox(0,29,128,10);
  229. u8g.setColorIndex(0); // white on black
  230. u8g.setPrintPos(2,37);
  231. u8g.print("X");
  232. u8g.drawPixel(8,33);
  233. u8g.drawPixel(8,35);
  234. u8g.setPrintPos(10,37);
  235. u8g.print(ftostr31ns(current_position[X_AXIS]));
  236. u8g.setPrintPos(43,37);
  237. lcd_printPGM(PSTR("Y"));
  238. u8g.drawPixel(49,33);
  239. u8g.drawPixel(49,35);
  240. u8g.setPrintPos(51,37);
  241. u8g.print(ftostr31ns(current_position[Y_AXIS]));
  242. u8g.setPrintPos(83,37);
  243. u8g.print("Z");
  244. u8g.drawPixel(89,33);
  245. u8g.drawPixel(89,35);
  246. u8g.setPrintPos(91,37);
  247. u8g.print(ftostr31(current_position[Z_AXIS]));
  248. u8g.setColorIndex(1); // black on white
  249. // Feedrate
  250. u8g.setFont(u8g_font_6x10_marlin);
  251. u8g.setPrintPos(3,49);
  252. u8g.print(LCD_STR_FEEDRATE[0]);
  253. u8g.setFont(FONT_STATUSMENU);
  254. u8g.setPrintPos(12,48);
  255. u8g.print(itostr3(feedmultiply));
  256. u8g.print('%');
  257. // Status line
  258. u8g.setFont(FONT_STATUSMENU);
  259. u8g.setPrintPos(0,61);
  260. u8g.print(lcd_status_message);
  261. }
  262. static void lcd_implementation_drawmenu_generic(uint8_t row, const char* pstr, char pre_char, char post_char)
  263. {
  264. char c;
  265. uint8_t n = LCD_WIDTH - 1 - 2;
  266. if ((pre_char == '>') || (pre_char == LCD_STR_UPLEVEL[0] ))
  267. {
  268. u8g.setColorIndex(1); // black on white
  269. u8g.drawBox (0, row*DOG_CHAR_HEIGHT + 3, 128, DOG_CHAR_HEIGHT);
  270. u8g.setColorIndex(0); // following text must be white on black
  271. } else u8g.setColorIndex(1); // unmarked text is black on white
  272. u8g.setPrintPos(0 * DOG_CHAR_WIDTH, (row + 1) * DOG_CHAR_HEIGHT);
  273. if (pre_char != '>') u8g.print(pre_char); else u8g.print(' '); // Row selector is obsolete
  274. while( (c = pgm_read_byte(pstr)) != '\0' )
  275. {
  276. u8g.print(c);
  277. pstr++;
  278. n--;
  279. }
  280. while(n--){
  281. u8g.print(' ');
  282. }
  283. u8g.print(post_char);
  284. u8g.print(' ');
  285. u8g.setColorIndex(1); // restore settings to black on white
  286. }
  287. static void lcd_implementation_drawmenu_setting_edit_generic(uint8_t row, const char* pstr, char pre_char, char* data)
  288. {
  289. static unsigned int fkt_cnt = 0;
  290. char c;
  291. uint8_t n = LCD_WIDTH - 1 - 2 - strlen(data);
  292. u8g.setPrintPos(0 * DOG_CHAR_WIDTH, (row + 1) * DOG_CHAR_HEIGHT);
  293. u8g.print(pre_char);
  294. while( (c = pgm_read_byte(pstr)) != '\0' )
  295. {
  296. u8g.print(c);
  297. pstr++;
  298. n--;
  299. }
  300. u8g.print(':');
  301. while(n--){
  302. u8g.print(' ');
  303. }
  304. u8g.print(data);
  305. }
  306. static void lcd_implementation_drawmenu_setting_edit_generic_P(uint8_t row, const char* pstr, char pre_char, const char* data)
  307. {
  308. char c;
  309. uint8_t n= LCD_WIDTH - 1 - 2 - strlen_P(data);
  310. u8g.setPrintPos(0 * DOG_CHAR_WIDTH, (row + 1) * DOG_CHAR_HEIGHT);
  311. u8g.print(pre_char);
  312. while( (c = pgm_read_byte(pstr)) != '\0' )
  313. {
  314. u8g.print(c);
  315. pstr++;
  316. n--;
  317. }
  318. u8g.print(':');
  319. while(n--){
  320. u8g.print(' ');
  321. }
  322. lcd_printPGM(data);
  323. }
  324. #define lcd_implementation_drawmenu_setting_edit_int3_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', itostr3(*(data)))
  325. #define lcd_implementation_drawmenu_setting_edit_int3(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', itostr3(*(data)))
  326. #define lcd_implementation_drawmenu_setting_edit_float3_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr3(*(data)))
  327. #define lcd_implementation_drawmenu_setting_edit_float3(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr3(*(data)))
  328. #define lcd_implementation_drawmenu_setting_edit_float32_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr32(*(data)))
  329. #define lcd_implementation_drawmenu_setting_edit_float32(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr32(*(data)))
  330. #define lcd_implementation_drawmenu_setting_edit_float5_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr5(*(data)))
  331. #define lcd_implementation_drawmenu_setting_edit_float5(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr5(*(data)))
  332. #define lcd_implementation_drawmenu_setting_edit_float52_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr52(*(data)))
  333. #define lcd_implementation_drawmenu_setting_edit_float52(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr52(*(data)))
  334. #define lcd_implementation_drawmenu_setting_edit_float51_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr51(*(data)))
  335. #define lcd_implementation_drawmenu_setting_edit_float51(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr51(*(data)))
  336. #define lcd_implementation_drawmenu_setting_edit_long5_selected(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, '>', ftostr5(*(data)))
  337. #define lcd_implementation_drawmenu_setting_edit_long5(row, pstr, pstr2, data, minValue, maxValue) lcd_implementation_drawmenu_setting_edit_generic(row, pstr, ' ', ftostr5(*(data)))
  338. #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))
  339. #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))
  340. //Add version for callback functions
  341. #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)))
  342. #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)))
  343. #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)))
  344. #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)))
  345. #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)))
  346. #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)))
  347. #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)))
  348. #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)))
  349. #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)))
  350. #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)))
  351. #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)))
  352. #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)))
  353. #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)))
  354. #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)))
  355. #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))
  356. #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))
  357. void lcd_implementation_drawedit(const char* pstr, char* value)
  358. {
  359. u8g.setPrintPos(0 * DOG_CHAR_WIDTH_LARGE, (u8g.getHeight() - 1 - DOG_CHAR_HEIGHT_LARGE) - (1 * DOG_CHAR_HEIGHT_LARGE) - START_ROW );
  360. u8g.setFont(u8g_font_9x18);
  361. lcd_printPGM(pstr);
  362. u8g.print(':');
  363. u8g.setPrintPos((14 - strlen(value)) * DOG_CHAR_WIDTH_LARGE, (u8g.getHeight() - 1 - DOG_CHAR_HEIGHT_LARGE) - (1 * DOG_CHAR_HEIGHT_LARGE) - START_ROW );
  364. u8g.print(value);
  365. }
  366. static void lcd_implementation_drawmenu_sdfile_selected(uint8_t row, const char* pstr, const char* filename, char* longFilename)
  367. {
  368. char c;
  369. uint8_t n = LCD_WIDTH - 1;
  370. if (longFilename[0] != '\0')
  371. {
  372. filename = longFilename;
  373. longFilename[LCD_WIDTH-1] = '\0';
  374. }
  375. u8g.setColorIndex(1); // black on white
  376. u8g.drawBox (0, row*DOG_CHAR_HEIGHT + 3, 128, DOG_CHAR_HEIGHT);
  377. u8g.setColorIndex(0); // following text must be white on black
  378. u8g.setPrintPos(0 * DOG_CHAR_WIDTH, (row + 1) * DOG_CHAR_HEIGHT);
  379. u8g.print(' '); // Indent by 1 char
  380. while((c = *filename) != '\0')
  381. {
  382. u8g.print(c);
  383. filename++;
  384. n--;
  385. }
  386. while(n--){
  387. u8g.print(' ');
  388. }
  389. u8g.setColorIndex(1); // black on white
  390. }
  391. static void lcd_implementation_drawmenu_sdfile(uint8_t row, const char* pstr, const char* filename, char* longFilename)
  392. {
  393. char c;
  394. uint8_t n = LCD_WIDTH - 1;
  395. if (longFilename[0] != '\0')
  396. {
  397. filename = longFilename;
  398. longFilename[LCD_WIDTH-1] = '\0';
  399. }
  400. u8g.setPrintPos(0 * DOG_CHAR_WIDTH, (row + 1) * DOG_CHAR_HEIGHT);
  401. u8g.print(' ');
  402. while((c = *filename) != '\0')
  403. {
  404. u8g.print(c);
  405. filename++;
  406. n--;
  407. }
  408. while(n--){
  409. u8g.print(' ');
  410. }
  411. }
  412. static void lcd_implementation_drawmenu_sddirectory_selected(uint8_t row, const char* pstr, const char* filename, char* longFilename)
  413. {
  414. char c;
  415. uint8_t n = LCD_WIDTH - 2;
  416. if (longFilename[0] != '\0')
  417. {
  418. filename = longFilename;
  419. longFilename[LCD_WIDTH-2] = '\0';
  420. }
  421. u8g.setColorIndex(1); // black on white
  422. u8g.drawBox (0, row*DOG_CHAR_HEIGHT + 3, 128, DOG_CHAR_HEIGHT);
  423. u8g.setColorIndex(0); // following text must be white on black
  424. u8g.setPrintPos(0 * DOG_CHAR_WIDTH, (row + 1) * DOG_CHAR_HEIGHT);
  425. u8g.print(' '); // Indent by 1 char
  426. u8g.print(LCD_STR_FOLDER[0]);
  427. while((c = *filename) != '\0')
  428. {
  429. u8g.print(c);
  430. filename++;
  431. n--;
  432. }
  433. while(n--){
  434. u8g.print(' ');
  435. }
  436. u8g.setColorIndex(1); // black on white
  437. }
  438. static void lcd_implementation_drawmenu_sddirectory(uint8_t row, const char* pstr, const char* filename, char* longFilename)
  439. {
  440. char c;
  441. uint8_t n = LCD_WIDTH - 2;
  442. if (longFilename[0] != '\0')
  443. {
  444. filename = longFilename;
  445. longFilename[LCD_WIDTH-2] = '\0';
  446. }
  447. u8g.setPrintPos(0 * DOG_CHAR_WIDTH, (row + 1) * DOG_CHAR_HEIGHT);
  448. u8g.print(' ');
  449. u8g.print(LCD_STR_FOLDER[0]);
  450. while((c = *filename) != '\0')
  451. {
  452. u8g.print(c);
  453. filename++;
  454. n--;
  455. }
  456. while(n--){
  457. u8g.print(' ');
  458. }
  459. }
  460. #define lcd_implementation_drawmenu_back_selected(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, LCD_STR_UPLEVEL[0], LCD_STR_UPLEVEL[0])
  461. #define lcd_implementation_drawmenu_back(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, ' ', LCD_STR_UPLEVEL[0])
  462. #define lcd_implementation_drawmenu_submenu_selected(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, '>', LCD_STR_ARROW_RIGHT[0])
  463. #define lcd_implementation_drawmenu_submenu(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, ' ', LCD_STR_ARROW_RIGHT[0])
  464. #define lcd_implementation_drawmenu_gcode_selected(row, pstr, gcode) lcd_implementation_drawmenu_generic(row, pstr, '>', ' ')
  465. #define lcd_implementation_drawmenu_gcode(row, pstr, gcode) lcd_implementation_drawmenu_generic(row, pstr, ' ', ' ')
  466. #define lcd_implementation_drawmenu_function_selected(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, '>', ' ')
  467. #define lcd_implementation_drawmenu_function(row, pstr, data) lcd_implementation_drawmenu_generic(row, pstr, ' ', ' ')
  468. static void lcd_implementation_quick_feedback()
  469. {
  470. #if BEEPER > -1
  471. SET_OUTPUT(BEEPER);
  472. for(int8_t i=0;i<10;i++)
  473. {
  474. WRITE(BEEPER,HIGH);
  475. delay(3);
  476. WRITE(BEEPER,LOW);
  477. delay(3);
  478. }
  479. #endif
  480. }
  481. #endif//ULTRA_LCD_IMPLEMENTATION_DOGM_H