2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D Printer Firmware
|
2019-02-12 22:06:53 +01:00
|
|
|
* Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-03-24 19:01:20 +01:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-03-19 19:59:56 +01:00
|
|
|
/**
|
2018-11-19 03:39:49 +01:00
|
|
|
* ultralcd_DOGM.cpp
|
2018-10-24 09:27:19 +02:00
|
|
|
*
|
|
|
|
* Implementation of the LCD display routines for a DOGM128 graphic display.
|
|
|
|
* by STB for ErikZalm/Marlin. Common LCD 128x64 pixel graphic displays.
|
2013-03-19 19:59:56 +01:00
|
|
|
*
|
2015-01-10 03:16:56 +01:00
|
|
|
* Demonstrator: http://www.reprap.org/wiki/STB_Electronics
|
|
|
|
* License: http://opensource.org/licenses/BSD-3-Clause
|
2013-03-19 19:59:56 +01:00
|
|
|
*
|
2015-01-10 03:16:56 +01:00
|
|
|
* With the use of:
|
|
|
|
* u8glib by Oliver Kraus
|
2016-03-30 07:26:28 +02:00
|
|
|
* https://github.com/olikraus/U8glib_Arduino
|
2015-01-10 03:16:56 +01:00
|
|
|
* License: http://opensource.org/licenses/BSD-3-Clause
|
2013-03-19 19:59:56 +01:00
|
|
|
*/
|
|
|
|
|
2018-10-24 09:27:19 +02:00
|
|
|
#include "../../inc/MarlinConfigPre.h"
|
2013-03-19 19:59:56 +01:00
|
|
|
|
2018-10-28 04:06:25 +01:00
|
|
|
#if HAS_GRAPHICAL_LCD
|
2016-07-26 08:04:19 +02:00
|
|
|
|
2018-11-13 08:47:45 +01:00
|
|
|
#include "ultralcd_DOGM.h"
|
2018-04-13 03:14:01 +02:00
|
|
|
#include "u8g_fontutf8.h"
|
2018-11-13 08:47:45 +01:00
|
|
|
#include "dogm_Bootscreen.h"
|
|
|
|
|
2018-10-28 04:06:25 +01:00
|
|
|
#include "../lcdprint.h"
|
|
|
|
#include "../fontutils.h"
|
2018-11-13 08:47:45 +01:00
|
|
|
#include "../ultralcd.h"
|
2018-04-13 03:14:01 +02:00
|
|
|
|
2018-10-24 09:27:19 +02:00
|
|
|
#include "../../sd/cardreader.h"
|
|
|
|
#include "../../module/temperature.h"
|
|
|
|
#include "../../module/printcounter.h"
|
|
|
|
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
#include "../../libs/duration_t.h"
|
|
|
|
#endif
|
2016-07-26 08:04:19 +02:00
|
|
|
|
2017-06-13 01:26:49 +02:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
2018-10-23 23:00:34 +02:00
|
|
|
#include "../../feature/bedlevel/ubl/ubl.h"
|
2017-06-13 01:26:49 +02:00
|
|
|
#endif
|
|
|
|
|
2018-12-08 02:08:31 +01:00
|
|
|
/**
|
|
|
|
* Include all needed font files
|
|
|
|
* (See http://marlinfw.org/docs/development/fonts.html)
|
|
|
|
*/
|
2018-10-28 04:06:25 +01:00
|
|
|
#include "fontdata/fontdata_ISO10646_1.h"
|
2015-07-31 07:26:53 +02:00
|
|
|
#if ENABLED(USE_SMALL_INFOFONT)
|
2018-10-24 10:38:13 +02:00
|
|
|
#include "fontdata/fontdata_6x9_marlin.h"
|
2015-03-24 23:40:04 +01:00
|
|
|
#define FONT_STATUSMENU_NAME u8g_font_6x9
|
2013-03-19 19:59:56 +01:00
|
|
|
#else
|
2018-10-31 04:39:44 +01:00
|
|
|
#define FONT_STATUSMENU_NAME MENU_FONT_NAME
|
2015-02-03 13:10:09 +01:00
|
|
|
#endif
|
2013-03-19 19:59:56 +01:00
|
|
|
|
2018-10-24 09:27:19 +02:00
|
|
|
U8G_CLASS u8g(U8G_PARAM);
|
2018-04-13 03:14:01 +02:00
|
|
|
|
2018-10-28 04:06:25 +01:00
|
|
|
#include LANGUAGE_DATA_INCL(LCD_LANGUAGE)
|
2015-03-13 14:26:58 +01:00
|
|
|
|
2018-10-24 09:27:19 +02:00
|
|
|
#if HAS_LCD_CONTRAST
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
int16_t MarlinUI::contrast; // Initialized by settings.load()
|
2018-10-24 09:27:19 +02:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::set_contrast(const int16_t value) {
|
|
|
|
contrast = constrain(value, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX);
|
|
|
|
u8g.setContrast(contrast);
|
2018-10-24 09:27:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2015-03-10 22:34:56 +01:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::set_font(const MarlinFont font_nr) {
|
2018-10-24 09:27:19 +02:00
|
|
|
static char currentfont = 0;
|
|
|
|
if (font_nr != currentfont) {
|
|
|
|
switch ((currentfont = font_nr)) {
|
|
|
|
case FONT_STATUSMENU : u8g.setFont(FONT_STATUSMENU_NAME); break;
|
2018-10-31 04:39:44 +01:00
|
|
|
case FONT_EDIT : u8g.setFont(EDIT_FONT_NAME); break;
|
2018-10-24 09:27:19 +02:00
|
|
|
default:
|
2018-10-31 04:39:44 +01:00
|
|
|
case FONT_MENU : u8g.setFont(MENU_FONT_NAME); break;
|
2018-10-24 09:27:19 +02:00
|
|
|
}
|
2016-09-02 11:09:34 +02:00
|
|
|
}
|
2015-03-10 22:34:56 +01:00
|
|
|
}
|
|
|
|
|
2017-07-02 07:35:41 +02:00
|
|
|
#if ENABLED(SHOW_BOOTSCREEN)
|
|
|
|
|
|
|
|
#if ENABLED(SHOW_CUSTOM_BOOTSCREEN)
|
|
|
|
|
2018-10-13 05:11:20 +02:00
|
|
|
FORCE_INLINE void draw_custom_bootscreen(const u8g_pgm_uint8_t * const bmp, const bool erase=true) {
|
2018-02-21 23:08:52 +01:00
|
|
|
constexpr u8g_uint_t left = (LCD_PIXEL_WIDTH - (CUSTOM_BOOTSCREEN_BMPWIDTH)) / 2,
|
2018-02-25 11:37:31 +01:00
|
|
|
top = (LCD_PIXEL_HEIGHT - (CUSTOM_BOOTSCREEN_BMPHEIGHT)) / 2;
|
|
|
|
#if ENABLED(CUSTOM_BOOTSCREEN_INVERTED)
|
|
|
|
constexpr u8g_uint_t right = left + CUSTOM_BOOTSCREEN_BMPWIDTH,
|
|
|
|
bottom = top + CUSTOM_BOOTSCREEN_BMPHEIGHT;
|
|
|
|
#endif
|
2017-07-02 07:35:41 +02:00
|
|
|
u8g.firstPage();
|
|
|
|
do {
|
|
|
|
u8g.drawBitmapP(
|
2018-02-21 23:08:52 +01:00
|
|
|
left, top,
|
2018-10-13 05:11:20 +02:00
|
|
|
CEILING(CUSTOM_BOOTSCREEN_BMPWIDTH, 8), CUSTOM_BOOTSCREEN_BMPHEIGHT, bmp
|
2018-02-01 01:43:33 +01:00
|
|
|
);
|
2018-02-21 23:08:52 +01:00
|
|
|
#if ENABLED(CUSTOM_BOOTSCREEN_INVERTED)
|
2018-10-13 05:11:20 +02:00
|
|
|
if (erase) {
|
|
|
|
u8g.setColorIndex(1);
|
|
|
|
if (top) u8g.drawBox(0, 0, LCD_PIXEL_WIDTH, top);
|
|
|
|
if (left) u8g.drawBox(0, top, left, CUSTOM_BOOTSCREEN_BMPHEIGHT);
|
|
|
|
if (right < LCD_PIXEL_WIDTH) u8g.drawBox(right, top, LCD_PIXEL_WIDTH - right, CUSTOM_BOOTSCREEN_BMPHEIGHT);
|
|
|
|
if (bottom < LCD_PIXEL_HEIGHT) u8g.drawBox(0, bottom, LCD_PIXEL_WIDTH, LCD_PIXEL_HEIGHT - bottom);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
UNUSED(erase);
|
2018-02-21 23:08:52 +01:00
|
|
|
#endif
|
2017-07-02 07:35:41 +02:00
|
|
|
} while (u8g.nextPage());
|
2018-10-13 05:11:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_custom_bootscreen() {
|
|
|
|
#if ENABLED(ANIMATED_BOOTSCREEN)
|
|
|
|
LOOP_L_N(f, COUNT(custom_bootscreen_animation)) {
|
|
|
|
if (f) safe_delay(CUSTOM_BOOTSCREEN_FRAME_TIME);
|
|
|
|
draw_custom_bootscreen((u8g_pgm_uint8_t*)pgm_read_ptr(&custom_bootscreen_animation[f]), f == 0);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
draw_custom_bootscreen(custom_start_bmp);
|
|
|
|
#endif
|
2017-11-03 11:58:20 +01:00
|
|
|
safe_delay(CUSTOM_BOOTSCREEN_TIMEOUT);
|
2017-07-02 07:35:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SHOW_CUSTOM_BOOTSCREEN
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::show_bootscreen() {
|
2017-11-03 11:58:20 +01:00
|
|
|
#if ENABLED(SHOW_CUSTOM_BOOTSCREEN)
|
|
|
|
lcd_custom_bootscreen();
|
|
|
|
#endif
|
|
|
|
|
2018-02-01 01:43:33 +01:00
|
|
|
constexpr uint8_t offy =
|
|
|
|
#if ENABLED(START_BMPHIGH)
|
|
|
|
(LCD_PIXEL_HEIGHT - (START_BMPHEIGHT)) / 2
|
|
|
|
#else
|
2018-10-31 04:39:44 +01:00
|
|
|
MENU_FONT_HEIGHT
|
2018-02-01 01:43:33 +01:00
|
|
|
#endif
|
|
|
|
;
|
2017-07-02 07:35:41 +02:00
|
|
|
|
2018-02-01 01:43:33 +01:00
|
|
|
const uint8_t width = u8g.getWidth(), height = u8g.getHeight(),
|
|
|
|
offx = (width - (START_BMPWIDTH)) / 2;
|
2017-07-02 07:35:41 +02:00
|
|
|
|
2017-11-03 11:58:20 +01:00
|
|
|
u8g.firstPage();
|
|
|
|
do {
|
2018-01-15 10:14:23 +01:00
|
|
|
u8g.drawBitmapP(offx, offy, (START_BMPWIDTH + 7) / 8, START_BMPHEIGHT, start_bmp);
|
2019-02-06 02:04:26 +01:00
|
|
|
set_font(FONT_MENU);
|
2017-11-03 11:58:20 +01:00
|
|
|
#ifndef STRING_SPLASH_LINE2
|
2018-10-31 04:39:44 +01:00
|
|
|
const uint8_t txt1X = width - (sizeof(STRING_SPLASH_LINE1) - 1) * (MENU_FONT_WIDTH);
|
|
|
|
u8g.drawStr(txt1X, (height + MENU_FONT_HEIGHT) / 2, STRING_SPLASH_LINE1);
|
2017-07-02 07:35:41 +02:00
|
|
|
#else
|
2018-10-31 04:39:44 +01:00
|
|
|
const uint8_t txt1X = (width - (sizeof(STRING_SPLASH_LINE1) - 1) * (MENU_FONT_WIDTH)) / 2,
|
|
|
|
txt2X = (width - (sizeof(STRING_SPLASH_LINE2) - 1) * (MENU_FONT_WIDTH)) / 2;
|
|
|
|
u8g.drawStr(txt1X, height - (MENU_FONT_HEIGHT) * 3 / 2, STRING_SPLASH_LINE1);
|
|
|
|
u8g.drawStr(txt2X, height - (MENU_FONT_HEIGHT) * 1 / 2, STRING_SPLASH_LINE2);
|
2017-07-02 07:35:41 +02:00
|
|
|
#endif
|
2017-11-03 11:58:20 +01:00
|
|
|
} while (u8g.nextPage());
|
|
|
|
safe_delay(BOOTSCREEN_TIMEOUT);
|
2017-07-02 07:35:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SHOW_BOOTSCREEN
|
|
|
|
|
2018-02-14 22:43:54 +01:00
|
|
|
#if ENABLED(LIGHTWEIGHT_UI)
|
2018-11-13 08:47:45 +01:00
|
|
|
#include "status_screen_lite_ST7920.h"
|
2018-02-14 22:43:54 +01:00
|
|
|
#endif
|
|
|
|
|
2017-04-16 06:45:15 +02:00
|
|
|
// Initialize or re-initialize the LCD
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::init_lcd() {
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-03-13 10:54:23 +01:00
|
|
|
#if PIN_EXISTS(LCD_BACKLIGHT) // Enable LCD backlight
|
|
|
|
OUT_WRITE(LCD_BACKLIGHT_PIN, HIGH);
|
|
|
|
#endif
|
|
|
|
|
2018-03-12 14:53:41 +01:00
|
|
|
#if ENABLED(MKS_12864OLED) || ENABLED(MKS_12864OLED_SSD1306)
|
|
|
|
SET_OUTPUT(LCD_PINS_DC);
|
2018-07-31 06:05:36 +02:00
|
|
|
#if !defined(LCD_RESET_PIN)
|
|
|
|
#define LCD_RESET_PIN LCD_PINS_RS
|
|
|
|
#endif
|
2018-03-12 14:53:41 +01:00
|
|
|
#endif
|
|
|
|
|
2016-09-24 23:36:12 +02:00
|
|
|
#if PIN_EXISTS(LCD_RESET)
|
2017-04-16 06:45:15 +02:00
|
|
|
OUT_WRITE(LCD_RESET_PIN, LOW); // perform a clean hardware reset
|
|
|
|
_delay_ms(5);
|
2016-09-25 12:52:10 +02:00
|
|
|
OUT_WRITE(LCD_RESET_PIN, HIGH);
|
2017-04-16 06:45:15 +02:00
|
|
|
_delay_ms(5); // delay to allow the display to initalize
|
2018-03-13 10:54:23 +01:00
|
|
|
#endif
|
|
|
|
|
2018-07-31 06:05:36 +02:00
|
|
|
#if PIN_EXISTS(LCD_RESET)
|
2018-03-13 10:54:23 +01:00
|
|
|
u8g.begin();
|
2015-07-04 06:29:31 +02:00
|
|
|
#endif
|
2015-10-13 12:51:34 +02:00
|
|
|
|
2018-10-24 09:27:19 +02:00
|
|
|
#if HAS_LCD_CONTRAST
|
2018-11-11 19:16:24 +01:00
|
|
|
refresh_contrast();
|
2015-07-23 10:12:19 +02:00
|
|
|
#endif
|
2015-10-13 12:51:34 +02:00
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#if ENABLED(LCD_SCREEN_ROT_90)
|
2015-04-08 06:11:03 +02:00
|
|
|
u8g.setRot90(); // Rotate screen by 90°
|
2015-07-31 07:26:53 +02:00
|
|
|
#elif ENABLED(LCD_SCREEN_ROT_180)
|
2015-07-31 19:32:23 +02:00
|
|
|
u8g.setRot180(); // Rotate screen by 180°
|
2015-07-31 07:26:53 +02:00
|
|
|
#elif ENABLED(LCD_SCREEN_ROT_270)
|
2015-07-31 19:32:23 +02:00
|
|
|
u8g.setRot270(); // Rotate screen by 270°
|
2015-02-03 09:52:29 +01:00
|
|
|
#endif
|
2018-04-13 03:14:01 +02:00
|
|
|
|
2018-11-24 07:26:04 +01:00
|
|
|
uxg_SetUtf8Fonts(g_fontinfo, COUNT(g_fontinfo));
|
2013-03-19 19:59:56 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 01:13:24 +02:00
|
|
|
// The kill screen is displayed for unrecoverable conditions
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::draw_kill_screen() {
|
2018-02-14 22:43:54 +01:00
|
|
|
#if ENABLED(LIGHTWEIGHT_UI)
|
|
|
|
ST7920_Lite_Status_Screen::clear_text_buffer();
|
|
|
|
#endif
|
2018-02-01 01:43:33 +01:00
|
|
|
const uint8_t h4 = u8g.getHeight() / 4;
|
2017-11-03 11:58:20 +01:00
|
|
|
u8g.firstPage();
|
|
|
|
do {
|
2018-11-11 19:16:24 +01:00
|
|
|
set_font(FONT_MENU);
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, h4 * 1);
|
2018-11-11 19:16:24 +01:00
|
|
|
lcd_put_u8str(status_message);
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, h4 * 2);
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_put_u8str_P(PSTR(MSG_HALTED));
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, h4 * 3);
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_put_u8str_P(PSTR(MSG_PLEASE_RESET));
|
2017-11-03 11:58:20 +01:00
|
|
|
} while (u8g.nextPage());
|
2016-07-10 04:50:45 +02:00
|
|
|
}
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::clear_lcd() { } // Automatically cleared by Picture Loop
|
2013-03-19 19:59:56 +01:00
|
|
|
|
2018-10-30 22:34:45 +01:00
|
|
|
#if HAS_LCD_MENU
|
2016-08-21 01:12:57 +02:00
|
|
|
|
2016-11-24 01:28:25 +01:00
|
|
|
uint8_t row_y1, row_y2;
|
2017-02-18 06:57:13 +01:00
|
|
|
|
2017-05-26 20:01:02 +02:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE)
|
2017-02-18 06:57:13 +01:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::draw_hotend_status(const uint8_t row, const uint8_t extruder) {
|
2018-10-31 04:39:44 +01:00
|
|
|
row_y1 = row * (MENU_FONT_HEIGHT) + 1;
|
|
|
|
row_y2 = row_y1 + MENU_FONT_HEIGHT - 1;
|
2017-02-18 06:57:13 +01:00
|
|
|
|
|
|
|
if (!PAGE_CONTAINS(row_y1 + 1, row_y2 + 2)) return;
|
|
|
|
|
2018-10-31 04:39:44 +01:00
|
|
|
lcd_moveto(LCD_PIXEL_WIDTH - 11 * (MENU_FONT_WIDTH), row_y2);
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar('E');
|
|
|
|
lcd_put_wchar((char)('1' + extruder));
|
|
|
|
lcd_put_wchar(' ');
|
2019-01-12 23:01:04 +01:00
|
|
|
lcd_put_u8str(i16tostr3(thermalManager.degHotend(extruder)));
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar('/');
|
2017-05-31 23:26:05 +02:00
|
|
|
|
2019-03-07 09:09:39 +01:00
|
|
|
if (get_blink() || !thermalManager.hotend_idle[extruder].timed_out)
|
2019-01-12 23:01:04 +01:00
|
|
|
lcd_put_u8str(i16tostr3(thermalManager.degTargetHotend(extruder)));
|
2017-02-18 06:57:13 +01:00
|
|
|
}
|
|
|
|
|
2017-05-26 20:01:02 +02:00
|
|
|
#endif // ADVANCED_PAUSE_FEATURE
|
2016-11-24 01:28:25 +01:00
|
|
|
|
2016-08-21 01:12:57 +02:00
|
|
|
// Set the colors for a menu item based on whether it is selected
|
2018-11-14 20:13:51 +01:00
|
|
|
static bool mark_as_selected(const uint8_t row, const bool sel) {
|
2018-10-31 04:39:44 +01:00
|
|
|
row_y1 = row * (MENU_FONT_HEIGHT) + 1;
|
|
|
|
row_y2 = row_y1 + MENU_FONT_HEIGHT - 1;
|
2016-11-24 01:28:25 +01:00
|
|
|
|
2018-04-13 03:14:01 +02:00
|
|
|
if (!PAGE_CONTAINS(row_y1 + 1, row_y2 + 2)) return false;
|
2016-11-24 01:28:25 +01:00
|
|
|
|
2018-11-14 20:13:51 +01:00
|
|
|
if (sel) {
|
2016-11-26 20:55:55 +01:00
|
|
|
#if ENABLED(MENU_HOLLOW_FRAME)
|
|
|
|
u8g.drawHLine(0, row_y1 + 1, LCD_PIXEL_WIDTH);
|
2017-02-18 06:57:13 +01:00
|
|
|
u8g.drawHLine(0, row_y2 + 2, LCD_PIXEL_WIDTH);
|
2016-11-26 20:55:55 +01:00
|
|
|
#else
|
|
|
|
u8g.setColorIndex(1); // black on white
|
2018-10-31 04:39:44 +01:00
|
|
|
u8g.drawBox(0, row_y1 + 2, LCD_PIXEL_WIDTH, MENU_FONT_HEIGHT - 1);
|
2016-11-26 20:55:55 +01:00
|
|
|
u8g.setColorIndex(0); // white on black
|
|
|
|
#endif
|
2016-08-21 01:12:57 +02:00
|
|
|
}
|
2016-11-26 20:55:55 +01:00
|
|
|
#if DISABLED(MENU_HOLLOW_FRAME)
|
|
|
|
else {
|
|
|
|
u8g.setColorIndex(1); // unmarked text is black on white
|
|
|
|
}
|
|
|
|
#endif
|
2018-04-13 03:14:01 +02:00
|
|
|
|
|
|
|
if (!PAGE_CONTAINS(row_y1, row_y2)) return false;
|
|
|
|
|
2018-10-31 04:39:44 +01:00
|
|
|
lcd_moveto(0, row_y2);
|
2018-04-13 03:14:01 +02:00
|
|
|
return true;
|
2015-01-10 03:16:56 +01:00
|
|
|
}
|
2015-02-03 23:35:33 +01:00
|
|
|
|
2016-12-13 06:56:05 +01:00
|
|
|
// Draw a static line of text in the same idiom as a menu item
|
2018-11-11 19:16:24 +01:00
|
|
|
void draw_menu_item_static(const uint8_t row, PGM_P pstr, const bool center/*=true*/, const bool invert/*=false*/, const char* valstr/*=NULL*/) {
|
2016-07-02 22:57:24 +02:00
|
|
|
|
2018-10-23 23:00:34 +02:00
|
|
|
if (mark_as_selected(row, invert)) {
|
2016-07-09 03:18:40 +02:00
|
|
|
|
2018-10-31 04:39:44 +01:00
|
|
|
uint8_t n = LCD_PIXEL_WIDTH; // pixel width of string allowed
|
2016-11-24 01:28:25 +01:00
|
|
|
|
2018-04-13 03:14:01 +02:00
|
|
|
if (center && !valstr) {
|
|
|
|
int8_t pad = (LCD_WIDTH - utf8_strlen_P(pstr)) / 2;
|
|
|
|
while (--pad >= 0) { lcd_put_wchar(' '); n--; }
|
|
|
|
}
|
2018-05-26 06:32:37 +02:00
|
|
|
n -= lcd_put_u8str_max_P(pstr, n);
|
2018-11-17 04:44:48 +01:00
|
|
|
if (valstr) n -= lcd_put_u8str_max(valstr, n);
|
|
|
|
while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
|
2016-12-13 06:56:05 +01:00
|
|
|
}
|
|
|
|
}
|
2016-06-30 11:24:29 +02:00
|
|
|
|
2016-08-21 01:12:57 +02:00
|
|
|
// Draw a generic menu item
|
2018-11-14 20:13:51 +01:00
|
|
|
void draw_menu_item(const bool sel, const uint8_t row, PGM_P const pstr, const char pre_char, const char post_char) {
|
2016-08-21 01:12:57 +02:00
|
|
|
UNUSED(pre_char);
|
2016-06-23 03:22:17 +02:00
|
|
|
|
2018-11-14 20:13:51 +01:00
|
|
|
if (mark_as_selected(row, sel)) {
|
2018-11-17 04:44:48 +01:00
|
|
|
uint8_t n = (LCD_WIDTH - 2) * (MENU_FONT_WIDTH);
|
2018-05-26 06:32:37 +02:00
|
|
|
n -= lcd_put_u8str_max_P(pstr, n);
|
2018-11-17 04:44:48 +01:00
|
|
|
while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
|
2018-10-31 04:39:44 +01:00
|
|
|
lcd_moveto(LCD_PIXEL_WIDTH - (MENU_FONT_WIDTH), row_y2);
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(post_char);
|
|
|
|
lcd_put_wchar(' ');
|
2016-08-21 01:12:57 +02:00
|
|
|
}
|
2015-01-10 03:16:56 +01:00
|
|
|
}
|
2013-03-19 19:59:56 +01:00
|
|
|
|
2016-08-21 01:12:57 +02:00
|
|
|
// Draw a menu item with an editable value
|
2018-11-14 20:13:51 +01:00
|
|
|
void _draw_menu_item_edit(const bool sel, const uint8_t row, PGM_P const pstr, const char* const data, const bool pgm) {
|
|
|
|
if (mark_as_selected(row, sel)) {
|
2018-04-13 03:14:01 +02:00
|
|
|
const uint8_t vallen = (pgm ? utf8_strlen_P(data) : utf8_strlen((char*)data));
|
2018-11-17 04:44:48 +01:00
|
|
|
uint8_t n = (LCD_WIDTH - 2 - vallen) * (MENU_FONT_WIDTH);
|
2018-05-26 06:32:37 +02:00
|
|
|
n -= lcd_put_u8str_max_P(pstr, n);
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(':');
|
2018-11-17 04:44:48 +01:00
|
|
|
while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
|
2018-10-31 04:39:44 +01:00
|
|
|
lcd_moveto(LCD_PIXEL_WIDTH - (MENU_FONT_WIDTH) * vallen, row_y2);
|
2018-05-26 06:32:37 +02:00
|
|
|
if (pgm) lcd_put_u8str_P(data); else lcd_put_u8str((char*)data);
|
2015-02-03 20:48:49 +01:00
|
|
|
}
|
2016-08-21 01:12:57 +02:00
|
|
|
}
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void draw_edit_screen(PGM_P const pstr, const char* const value/*=NULL*/) {
|
2018-10-31 04:39:44 +01:00
|
|
|
const uint8_t labellen = utf8_strlen_P(pstr), vallen = utf8_strlen(value);
|
2016-12-05 14:14:11 +01:00
|
|
|
|
2018-10-31 04:39:44 +01:00
|
|
|
bool extra_row = labellen > LCD_WIDTH - 2 - vallen;
|
2016-08-21 01:12:57 +02:00
|
|
|
|
|
|
|
#if ENABLED(USE_BIG_EDIT_FONT)
|
2018-10-31 04:39:44 +01:00
|
|
|
// Use the menu font if the label won't fit on a single line
|
|
|
|
constexpr uint8_t lcd_edit_width = (LCD_PIXEL_WIDTH) / (EDIT_FONT_WIDTH);
|
|
|
|
uint8_t lcd_chr_fit, one_chr_width;
|
|
|
|
if (labellen <= lcd_edit_width - 1) {
|
|
|
|
if (labellen + vallen + 1 > lcd_edit_width) extra_row = true;
|
|
|
|
lcd_chr_fit = lcd_edit_width + 1;
|
|
|
|
one_chr_width = EDIT_FONT_WIDTH;
|
2018-11-11 19:16:24 +01:00
|
|
|
ui.set_font(FONT_EDIT);
|
2016-08-21 01:12:57 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-10-31 04:39:44 +01:00
|
|
|
lcd_chr_fit = LCD_WIDTH;
|
|
|
|
one_chr_width = MENU_FONT_WIDTH;
|
2018-11-11 19:16:24 +01:00
|
|
|
ui.set_font(FONT_MENU);
|
2016-08-21 01:12:57 +02:00
|
|
|
}
|
2016-11-24 01:28:25 +01:00
|
|
|
#else
|
2018-10-31 04:39:44 +01:00
|
|
|
constexpr uint8_t lcd_chr_fit = LCD_WIDTH,
|
|
|
|
one_chr_width = MENU_FONT_WIDTH;
|
2016-08-21 01:12:57 +02:00
|
|
|
#endif
|
2015-02-03 20:48:49 +01:00
|
|
|
|
2018-10-31 04:39:44 +01:00
|
|
|
// Center the label and value lines on the middle line
|
2018-11-27 22:50:44 +01:00
|
|
|
uint8_t baseline = extra_row ? (LCD_PIXEL_HEIGHT) / 2 - 1
|
2018-10-31 04:39:44 +01:00
|
|
|
: (LCD_PIXEL_HEIGHT + EDIT_FONT_ASCENT) / 2;
|
2015-02-03 20:15:16 +01:00
|
|
|
|
2018-10-31 04:39:44 +01:00
|
|
|
// Assume the label is alpha-numeric (with a descender)
|
|
|
|
bool onpage = PAGE_CONTAINS(baseline - (EDIT_FONT_ASCENT - 1), baseline + EDIT_FONT_DESCENT);
|
2017-06-20 04:53:06 +02:00
|
|
|
if (onpage) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, baseline);
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_put_u8str_P(pstr);
|
2016-11-24 01:28:25 +01:00
|
|
|
}
|
2015-02-03 20:15:16 +01:00
|
|
|
|
2018-10-31 04:39:44 +01:00
|
|
|
// If a value is included, print a colon, then print the value right-justified
|
2016-08-21 01:12:57 +02:00
|
|
|
if (value != NULL) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(':');
|
2018-10-31 04:39:44 +01:00
|
|
|
if (extra_row) {
|
|
|
|
// Assume the value is numeric (with no descender)
|
2018-11-27 22:50:44 +01:00
|
|
|
baseline += EDIT_FONT_ASCENT + 2;
|
2018-10-31 04:39:44 +01:00
|
|
|
onpage = PAGE_CONTAINS(baseline - (EDIT_FONT_ASCENT - 1), baseline);
|
2017-06-20 04:53:06 +02:00
|
|
|
}
|
|
|
|
if (onpage) {
|
2018-10-31 04:39:44 +01:00
|
|
|
lcd_moveto(((lcd_chr_fit - 1) - (vallen + 1)) * one_chr_width, baseline); // Right-justified, leaving padded by spaces
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(' '); // overwrite char if value gets shorter
|
|
|
|
lcd_put_u8str(value);
|
2016-11-24 01:28:25 +01:00
|
|
|
}
|
2016-08-21 01:12:57 +02:00
|
|
|
}
|
2016-04-01 23:10:04 +02:00
|
|
|
}
|
2013-03-19 19:59:56 +01:00
|
|
|
|
2016-08-21 01:12:57 +02:00
|
|
|
#if ENABLED(SDSUPPORT)
|
2013-03-19 19:59:56 +01:00
|
|
|
|
2018-11-14 20:13:51 +01:00
|
|
|
void draw_sd_menu_item(const bool sel, const uint8_t row, PGM_P const pstr, CardReader &theCard, const bool isDir) {
|
2016-08-21 01:12:57 +02:00
|
|
|
UNUSED(pstr);
|
2013-03-19 19:59:56 +01:00
|
|
|
|
2018-11-17 04:44:48 +01:00
|
|
|
if (mark_as_selected(row, sel)) {
|
|
|
|
if (isDir) lcd_put_wchar(LCD_STR_FOLDER[0]);
|
|
|
|
constexpr uint8_t maxlen = LCD_WIDTH - 1;
|
|
|
|
const uint8_t pixw = maxlen * (MENU_FONT_WIDTH);
|
|
|
|
uint8_t n = pixw - lcd_put_u8str_max(ui.scrolled_filename(theCard, maxlen, row, sel), pixw);
|
|
|
|
while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
|
2016-08-21 01:12:57 +02:00
|
|
|
}
|
2015-09-11 11:18:42 +02:00
|
|
|
}
|
2013-03-19 19:59:56 +01:00
|
|
|
|
2016-08-21 01:12:57 +02:00
|
|
|
#endif // SDSUPPORT
|
2015-03-16 06:02:33 +01:00
|
|
|
|
2017-06-21 22:26:59 +02:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UBL LCD "radar" map data
|
|
|
|
*/
|
2017-06-28 05:19:32 +02:00
|
|
|
#define MAP_UPPER_LEFT_CORNER_X 35 // These probably should be moved to the .h file But for now,
|
|
|
|
#define MAP_UPPER_LEFT_CORNER_Y 8 // it is easier to play with things having them here
|
|
|
|
#define MAP_MAX_PIXELS_X 53
|
|
|
|
#define MAP_MAX_PIXELS_Y 49
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::ubl_plot(const uint8_t x_plot, const uint8_t y_plot) {
|
2017-06-28 05:19:32 +02:00
|
|
|
// Scale the box pixels appropriately
|
|
|
|
uint8_t x_map_pixels = ((MAP_MAX_PIXELS_X - 4) / (GRID_MAX_POINTS_X)) * (GRID_MAX_POINTS_X),
|
|
|
|
y_map_pixels = ((MAP_MAX_PIXELS_Y - 4) / (GRID_MAX_POINTS_Y)) * (GRID_MAX_POINTS_Y),
|
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
pixels_per_x_mesh_pnt = x_map_pixels / (GRID_MAX_POINTS_X),
|
|
|
|
pixels_per_y_mesh_pnt = y_map_pixels / (GRID_MAX_POINTS_Y),
|
2017-06-28 05:19:32 +02:00
|
|
|
|
|
|
|
x_offset = MAP_UPPER_LEFT_CORNER_X + 1 + (MAP_MAX_PIXELS_X - x_map_pixels - 2) / 2,
|
|
|
|
y_offset = MAP_UPPER_LEFT_CORNER_Y + 1 + (MAP_MAX_PIXELS_Y - y_map_pixels - 2) / 2;
|
|
|
|
|
|
|
|
// Clear the Mesh Map
|
|
|
|
|
|
|
|
if (PAGE_CONTAINS(y_offset - 2, y_offset + y_map_pixels + 4)) {
|
|
|
|
u8g.setColorIndex(1); // First draw the bigger box in White so we have a border around the mesh map box
|
|
|
|
u8g.drawBox(x_offset - 2, y_offset - 2, x_map_pixels + 4, y_map_pixels + 4);
|
|
|
|
if (PAGE_CONTAINS(y_offset, y_offset + y_map_pixels)) {
|
|
|
|
u8g.setColorIndex(0); // Now actually clear the mesh map box
|
|
|
|
u8g.drawBox(x_offset, y_offset, x_map_pixels, y_map_pixels);
|
|
|
|
}
|
|
|
|
}
|
2017-06-21 22:26:59 +02:00
|
|
|
|
2017-06-28 05:19:32 +02:00
|
|
|
// Display Mesh Point Locations
|
2017-06-21 22:26:59 +02:00
|
|
|
|
|
|
|
u8g.setColorIndex(1);
|
2017-07-13 04:39:37 +02:00
|
|
|
const uint8_t sx = x_offset + pixels_per_x_mesh_pnt / 2;
|
|
|
|
uint8_t y = y_offset + pixels_per_y_mesh_pnt / 2;
|
|
|
|
for (uint8_t j = 0; j < GRID_MAX_POINTS_Y; j++, y += pixels_per_y_mesh_pnt)
|
2017-06-28 05:19:32 +02:00
|
|
|
if (PAGE_CONTAINS(y, y))
|
2017-07-13 04:39:37 +02:00
|
|
|
for (uint8_t i = 0, x = sx; i < GRID_MAX_POINTS_X; i++, x += pixels_per_x_mesh_pnt)
|
2017-07-19 05:55:14 +02:00
|
|
|
u8g.drawBox(x, y, 1, 1);
|
2017-06-21 22:26:59 +02:00
|
|
|
|
2017-06-28 05:19:32 +02:00
|
|
|
// Fill in the Specified Mesh Point
|
2017-06-21 22:26:59 +02:00
|
|
|
|
2017-06-28 05:19:32 +02:00
|
|
|
uint8_t inverted_y = GRID_MAX_POINTS_Y - y_plot - 1; // The origin is typically in the lower right corner. We need to
|
|
|
|
// invert the Y to get it to plot in the right location.
|
2017-06-21 22:26:59 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
const uint8_t by = y_offset + inverted_y * pixels_per_y_mesh_pnt;
|
|
|
|
if (PAGE_CONTAINS(by, by + pixels_per_y_mesh_pnt))
|
2017-06-28 05:19:32 +02:00
|
|
|
u8g.drawBox(
|
2017-07-13 04:39:37 +02:00
|
|
|
x_offset + x_plot * pixels_per_x_mesh_pnt, by,
|
|
|
|
pixels_per_x_mesh_pnt, pixels_per_y_mesh_pnt
|
2017-06-28 05:19:32 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// Put Relevant Text on Display
|
2017-06-21 22:26:59 +02:00
|
|
|
|
|
|
|
// Show X and Y positions at top of screen
|
|
|
|
u8g.setColorIndex(1);
|
2017-06-28 05:19:32 +02:00
|
|
|
if (PAGE_UNDER(7)) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(5, 7);
|
|
|
|
lcd_put_u8str("X:");
|
2018-05-01 14:08:47 +02:00
|
|
|
lcd_put_u8str(ftostr52(LOGICAL_X_POSITION(pgm_read_float(&ubl._mesh_index_to_xpos[x_plot]))));
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(74, 7);
|
|
|
|
lcd_put_u8str("Y:");
|
2018-05-01 14:08:47 +02:00
|
|
|
lcd_put_u8str(ftostr52(LOGICAL_Y_POSITION(pgm_read_float(&ubl._mesh_index_to_ypos[y_plot]))));
|
2017-06-28 05:19:32 +02:00
|
|
|
}
|
2017-06-21 22:26:59 +02:00
|
|
|
|
|
|
|
// Print plot position
|
2018-02-01 01:43:33 +01:00
|
|
|
if (PAGE_CONTAINS(LCD_PIXEL_HEIGHT - (INFO_FONT_HEIGHT - 1), LCD_PIXEL_HEIGHT)) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(5, LCD_PIXEL_HEIGHT);
|
|
|
|
lcd_put_wchar('(');
|
2017-06-28 05:19:32 +02:00
|
|
|
u8g.print(x_plot);
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(',');
|
2017-06-28 05:19:32 +02:00
|
|
|
u8g.print(y_plot);
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(')');
|
2017-06-28 05:19:32 +02:00
|
|
|
|
|
|
|
// Show the location value
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(74, LCD_PIXEL_HEIGHT);
|
|
|
|
lcd_put_u8str("Z:");
|
2017-06-28 05:19:32 +02:00
|
|
|
if (!isnan(ubl.z_values[x_plot][y_plot]))
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_u8str(ftostr43sign(ubl.z_values[x_plot][y_plot]));
|
2017-06-28 05:19:32 +02:00
|
|
|
else
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_put_u8str_P(PSTR(" -----"));
|
2017-06-21 22:26:59 +02:00
|
|
|
}
|
2017-06-28 05:19:32 +02:00
|
|
|
|
2017-06-21 22:26:59 +02:00
|
|
|
}
|
2017-06-28 05:19:32 +02:00
|
|
|
|
2017-06-21 22:26:59 +02:00
|
|
|
#endif // AUTO_BED_LEVELING_UBL
|
|
|
|
|
2018-10-23 23:00:34 +02:00
|
|
|
#if ENABLED(BABYSTEP_ZPROBE_GFX_OVERLAY) || ENABLED(MESH_EDIT_GFX_OVERLAY)
|
|
|
|
|
2018-10-28 04:06:25 +01:00
|
|
|
const unsigned char cw_bmp[] PROGMEM = {
|
|
|
|
B00000011,B11111000,B00000000,
|
|
|
|
B00001111,B11111110,B00000000,
|
|
|
|
B00011110,B00001111,B00000000,
|
|
|
|
B00111000,B00000111,B00000000,
|
|
|
|
B00111000,B00000011,B10000000,
|
|
|
|
B01110000,B00000011,B10000000,
|
|
|
|
B01110000,B00001111,B11100000,
|
|
|
|
B01110000,B00000111,B11000000,
|
|
|
|
B01110000,B00000011,B10000000,
|
|
|
|
B01110000,B00000001,B00000000,
|
|
|
|
B01110000,B00000000,B00000000,
|
|
|
|
B00111000,B00000000,B00000000,
|
|
|
|
B00111000,B00000111,B00000000,
|
|
|
|
B00011110,B00001111,B00000000,
|
|
|
|
B00001111,B11111110,B00000000,
|
|
|
|
B00000011,B11111000,B00000000
|
|
|
|
};
|
|
|
|
|
|
|
|
const unsigned char ccw_bmp[] PROGMEM = {
|
|
|
|
B00000000,B11111110,B00000000,
|
|
|
|
B00000011,B11111111,B10000000,
|
|
|
|
B00000111,B10000011,B11000000,
|
|
|
|
B00001110,B00000001,B11000000,
|
|
|
|
B00001110,B00000000,B11100000,
|
|
|
|
B00011100,B00000000,B11100000,
|
|
|
|
B01111111,B00000000,B11100000,
|
|
|
|
B00111110,B00000000,B11100000,
|
|
|
|
B00011100,B00000000,B11100000,
|
|
|
|
B00001000,B00000000,B11100000,
|
|
|
|
B00000000,B00000000,B11100000,
|
|
|
|
B00000000,B00000001,B11000000,
|
|
|
|
B00001110,B00000001,B11000000,
|
|
|
|
B00001111,B00000111,B10000000,
|
|
|
|
B00000111,B11111111,B00000000,
|
|
|
|
B00000001,B11111100,B00000000
|
|
|
|
};
|
|
|
|
|
|
|
|
const unsigned char up_arrow_bmp[] PROGMEM = {
|
|
|
|
B00000100,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00011111,B00000000,
|
|
|
|
B00111111,B10000000,
|
|
|
|
B01111111,B11000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000
|
|
|
|
};
|
|
|
|
|
|
|
|
const unsigned char down_arrow_bmp[] PROGMEM = {
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B01111111,B11000000,
|
|
|
|
B00111111,B10000000,
|
|
|
|
B00011111,B00000000,
|
|
|
|
B00001110,B00000000,
|
|
|
|
B00000100,B00000000
|
|
|
|
};
|
|
|
|
|
|
|
|
const unsigned char offset_bedline_bmp[] PROGMEM = {
|
|
|
|
B11111111,B11111111,B11111111
|
|
|
|
};
|
|
|
|
|
|
|
|
const unsigned char nozzle_bmp[] PROGMEM = {
|
|
|
|
B01111111,B10000000,
|
|
|
|
B11111111,B11000000,
|
|
|
|
B11111111,B11000000,
|
|
|
|
B11111111,B11000000,
|
|
|
|
B01111111,B10000000,
|
|
|
|
B01111111,B10000000,
|
|
|
|
B11111111,B11000000,
|
|
|
|
B11111111,B11000000,
|
|
|
|
B11111111,B11000000,
|
|
|
|
B00111111,B00000000,
|
|
|
|
B00011110,B00000000,
|
|
|
|
B00001100,B00000000
|
|
|
|
};
|
|
|
|
|
2018-10-23 23:00:34 +02:00
|
|
|
void _lcd_zoffset_overlay_gfx(const float zvalue) {
|
|
|
|
// Determine whether the user is raising or lowering the nozzle.
|
|
|
|
static int8_t dir;
|
|
|
|
static float old_zvalue;
|
|
|
|
if (zvalue != old_zvalue) {
|
|
|
|
dir = zvalue ? zvalue < old_zvalue ? -1 : 1 : 0;
|
|
|
|
old_zvalue = zvalue;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLED(OVERLAY_GFX_REVERSE)
|
|
|
|
const unsigned char *rot_up = ccw_bmp, *rot_down = cw_bmp;
|
|
|
|
#else
|
|
|
|
const unsigned char *rot_up = cw_bmp, *rot_down = ccw_bmp;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(USE_BIG_EDIT_FONT)
|
|
|
|
const int left = 0, right = 45, nozzle = 95;
|
|
|
|
#else
|
|
|
|
const int left = 5, right = 90, nozzle = 60;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Draw a representation of the nozzle
|
|
|
|
if (PAGE_CONTAINS(3, 16)) u8g.drawBitmapP(nozzle + 6, 4 - dir, 2, 12, nozzle_bmp);
|
|
|
|
if (PAGE_CONTAINS(20, 20)) u8g.drawBitmapP(nozzle + 0, 20, 3, 1, offset_bedline_bmp);
|
|
|
|
|
|
|
|
// Draw cw/ccw indicator and up/down arrows.
|
|
|
|
if (PAGE_CONTAINS(47, 62)) {
|
|
|
|
u8g.drawBitmapP(left + 0, 47, 3, 16, rot_down);
|
|
|
|
u8g.drawBitmapP(right + 0, 47, 3, 16, rot_up);
|
|
|
|
u8g.drawBitmapP(right + 20, 48 - dir, 2, 13, up_arrow_bmp);
|
|
|
|
u8g.drawBitmapP(left + 20, 49 - dir, 2, 13, down_arrow_bmp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // BABYSTEP_ZPROBE_GFX_OVERLAY || MESH_EDIT_GFX_OVERLAY
|
|
|
|
|
2018-10-30 22:34:45 +01:00
|
|
|
#endif // HAS_LCD_MENU
|
2013-03-19 19:59:56 +01:00
|
|
|
|
2018-10-28 04:06:25 +01:00
|
|
|
#endif // HAS_GRAPHICAL_LCD
|