2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-03-24 18:01:20 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-03-24 18:01:20 +00:00
|
|
|
*
|
|
|
|
* 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 18:59:56 +00:00
|
|
|
/**
|
2019-09-25 23:41:04 +00:00
|
|
|
* lcd/dogm/ultralcd_DOGM.h
|
2018-10-24 07:27:19 +00: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 18:59:56 +00:00
|
|
|
*
|
2015-01-10 02:16:56 +00:00
|
|
|
* Demonstrator: http://www.reprap.org/wiki/STB_Electronics
|
|
|
|
* License: http://opensource.org/licenses/BSD-3-Clause
|
2013-03-19 18:59:56 +00:00
|
|
|
*
|
2015-01-10 02:16:56 +00:00
|
|
|
* With the use of:
|
2019-09-25 23:41:04 +00:00
|
|
|
* u8glib by Oliver Kraus
|
|
|
|
* https://github.com/olikraus/U8glib_Arduino
|
|
|
|
* License: http://opensource.org/licenses/BSD-3-Clause
|
2013-03-19 18:59:56 +00:00
|
|
|
*/
|
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#include "../../inc/MarlinConfigPre.h"
|
2013-03-19 18:59:56 +00:00
|
|
|
|
2018-10-28 03:06:25 +00:00
|
|
|
#if HAS_GRAPHICAL_LCD
|
2016-07-26 06:04:19 +00:00
|
|
|
|
2018-11-13 07:47:45 +00:00
|
|
|
#include "ultralcd_DOGM.h"
|
2018-04-13 01:14:01 +00:00
|
|
|
#include "u8g_fontutf8.h"
|
2019-03-08 00:35:06 +00:00
|
|
|
|
|
|
|
#if ENABLED(SHOW_BOOTSCREEN)
|
|
|
|
#include "dogm_Bootscreen.h"
|
|
|
|
#endif
|
2018-11-13 07:47:45 +00:00
|
|
|
|
2018-10-28 03:06:25 +00:00
|
|
|
#include "../lcdprint.h"
|
|
|
|
#include "../fontutils.h"
|
2019-06-11 10:58:43 +00:00
|
|
|
#include "../../libs/numtostr.h"
|
2018-11-13 07:47:45 +00:00
|
|
|
#include "../ultralcd.h"
|
2018-04-13 01:14:01 +00:00
|
|
|
|
2018-10-24 07:27:19 +00: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 06:04:19 +00:00
|
|
|
|
2017-06-12 23:26:49 +00:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
2019-09-17 23:16:28 +00:00
|
|
|
#include "../../feature/bedlevel/bedlevel.h"
|
2017-06-12 23:26:49 +00:00
|
|
|
#endif
|
|
|
|
|
2018-12-08 01:08:31 +00:00
|
|
|
/**
|
|
|
|
* Include all needed font files
|
|
|
|
* (See http://marlinfw.org/docs/development/fonts.html)
|
|
|
|
*/
|
2018-10-28 03:06:25 +00:00
|
|
|
#include "fontdata/fontdata_ISO10646_1.h"
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(USE_SMALL_INFOFONT)
|
2018-10-24 08:38:13 +00:00
|
|
|
#include "fontdata/fontdata_6x9_marlin.h"
|
2015-03-24 22:40:04 +00:00
|
|
|
#define FONT_STATUSMENU_NAME u8g_font_6x9
|
2013-03-19 18:59:56 +00:00
|
|
|
#else
|
2018-10-31 03:39:44 +00:00
|
|
|
#define FONT_STATUSMENU_NAME MENU_FONT_NAME
|
2015-02-03 12:10:09 +00:00
|
|
|
#endif
|
2013-03-19 18:59:56 +00:00
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
U8G_CLASS u8g(U8G_PARAM);
|
2018-04-13 01:14:01 +00:00
|
|
|
|
2018-10-28 03:06:25 +00:00
|
|
|
#include LANGUAGE_DATA_INCL(LCD_LANGUAGE)
|
2015-03-13 13:26:58 +00:00
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#if HAS_LCD_CONTRAST
|
|
|
|
|
2019-09-04 23:29:06 +00:00
|
|
|
int16_t MarlinUI::contrast = DEFAULT_LCD_CONTRAST;
|
2018-10-24 07:27:19 +00:00
|
|
|
|
2018-11-11 18:16:24 +00:00
|
|
|
void MarlinUI::set_contrast(const int16_t value) {
|
|
|
|
contrast = constrain(value, LCD_CONTRAST_MIN, LCD_CONTRAST_MAX);
|
|
|
|
u8g.setContrast(contrast);
|
2018-10-24 07:27:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2015-03-10 21:34:56 +00:00
|
|
|
|
2018-11-11 18:16:24 +00:00
|
|
|
void MarlinUI::set_font(const MarlinFont font_nr) {
|
2018-10-24 07:27:19 +00: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 03:39:44 +00:00
|
|
|
case FONT_EDIT : u8g.setFont(EDIT_FONT_NAME); break;
|
2018-10-24 07:27:19 +00:00
|
|
|
default:
|
2018-10-31 03:39:44 +00:00
|
|
|
case FONT_MENU : u8g.setFont(MENU_FONT_NAME); break;
|
2018-10-24 07:27:19 +00:00
|
|
|
}
|
2016-09-02 09:09:34 +00:00
|
|
|
}
|
2015-03-10 21:34:56 +00:00
|
|
|
}
|
|
|
|
|
2019-08-20 07:01:37 +00:00
|
|
|
bool MarlinUI::detected() { return true; }
|
|
|
|
|
2017-07-02 05:35:41 +00:00
|
|
|
#if ENABLED(SHOW_BOOTSCREEN)
|
|
|
|
|
|
|
|
#if ENABLED(SHOW_CUSTOM_BOOTSCREEN)
|
2019-07-29 03:47:20 +00:00
|
|
|
// Draws a slice of a particular frame of the custom bootscreen, without the u8g loop
|
|
|
|
void MarlinUI::draw_custom_bootscreen(const uint8_t frame/*=0*/) {
|
2019-07-18 00:47:14 +00:00
|
|
|
constexpr u8g_uint_t left = u8g_uint_t((LCD_PIXEL_WIDTH - (CUSTOM_BOOTSCREEN_BMPWIDTH)) / 2),
|
2019-08-18 00:58:38 +00:00
|
|
|
top = u8g_uint_t((LCD_PIXEL_HEIGHT - (CUSTOM_BOOTSCREEN_BMPHEIGHT)) / 2);
|
2018-02-25 10:37:31 +00:00
|
|
|
#if ENABLED(CUSTOM_BOOTSCREEN_INVERTED)
|
|
|
|
constexpr u8g_uint_t right = left + CUSTOM_BOOTSCREEN_BMPWIDTH,
|
|
|
|
bottom = top + CUSTOM_BOOTSCREEN_BMPHEIGHT;
|
|
|
|
#endif
|
2019-07-29 03:47:20 +00:00
|
|
|
|
|
|
|
const u8g_pgm_uint8_t * const bmp =
|
2019-08-17 23:40:01 +00:00
|
|
|
#if ENABLED(CUSTOM_BOOTSCREEN_ANIMATED)
|
2019-07-29 03:47:20 +00:00
|
|
|
(u8g_pgm_uint8_t*)pgm_read_ptr(&custom_bootscreen_animation[frame])
|
2018-10-13 03:11:20 +00:00
|
|
|
#else
|
2019-07-29 03:47:20 +00:00
|
|
|
custom_start_bmp
|
2018-02-21 22:08:52 +00:00
|
|
|
#endif
|
2019-07-29 03:47:20 +00:00
|
|
|
;
|
|
|
|
|
2019-08-17 23:40:01 +00:00
|
|
|
u8g.drawBitmapP(left, top, CUSTOM_BOOTSCREEN_BMP_BYTEWIDTH, CUSTOM_BOOTSCREEN_BMPHEIGHT, bmp);
|
2018-10-13 03:11:20 +00:00
|
|
|
|
2019-07-29 03:47:20 +00:00
|
|
|
#if ENABLED(CUSTOM_BOOTSCREEN_INVERTED)
|
|
|
|
if (frame == 0) {
|
|
|
|
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);
|
2018-10-13 03:11:20 +00:00
|
|
|
}
|
2019-07-29 03:47:20 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shows the custom bootscreen, with the u8g loop, animations and delays
|
|
|
|
void MarlinUI::show_custom_bootscreen() {
|
2019-08-17 23:40:01 +00:00
|
|
|
#if DISABLED(CUSTOM_BOOTSCREEN_ANIMATED)
|
2019-07-29 03:47:20 +00:00
|
|
|
constexpr millis_t d = 0;
|
|
|
|
constexpr uint8_t f = 0;
|
2018-10-13 03:11:20 +00:00
|
|
|
#else
|
2019-07-29 03:47:20 +00:00
|
|
|
constexpr millis_t d = CUSTOM_BOOTSCREEN_FRAME_TIME;
|
|
|
|
LOOP_L_N(f, COUNT(custom_bootscreen_animation))
|
2018-10-13 03:11:20 +00:00
|
|
|
#endif
|
2019-07-29 03:47:20 +00:00
|
|
|
{
|
|
|
|
u8g.firstPage();
|
|
|
|
do { draw_custom_bootscreen(f); } while (u8g.nextPage());
|
|
|
|
if (d) safe_delay(d);
|
|
|
|
}
|
|
|
|
|
2019-03-08 00:35:06 +00:00
|
|
|
#ifndef CUSTOM_BOOTSCREEN_TIMEOUT
|
|
|
|
#define CUSTOM_BOOTSCREEN_TIMEOUT 2500
|
|
|
|
#endif
|
2017-11-03 10:58:20 +00:00
|
|
|
safe_delay(CUSTOM_BOOTSCREEN_TIMEOUT);
|
2017-07-02 05:35:41 +00:00
|
|
|
}
|
|
|
|
#endif // SHOW_CUSTOM_BOOTSCREEN
|
|
|
|
|
2019-09-04 19:34:27 +00:00
|
|
|
// Two-part needed to display all info
|
|
|
|
constexpr bool two_part = ((LCD_PIXEL_HEIGHT) - (START_BMPHEIGHT)) < ((MENU_FONT_ASCENT) * 2);
|
|
|
|
|
2019-08-28 12:40:18 +00:00
|
|
|
// Draw the static Marlin bootscreen from a u8g loop
|
|
|
|
// or the animated boot screen within its own u8g loop
|
|
|
|
void MarlinUI::draw_marlin_bootscreen(const bool line2/*=false*/) {
|
2019-09-04 19:34:27 +00:00
|
|
|
|
2019-04-10 22:14:57 +00:00
|
|
|
// Determine text space needed
|
2019-08-28 12:40:18 +00:00
|
|
|
constexpr u8g_uint_t text_width_1 = u8g_uint_t((sizeof(SHORT_BUILD_VERSION) - 1) * (MENU_FONT_WIDTH)),
|
|
|
|
text_width_2 = u8g_uint_t((sizeof(MARLIN_WEBSITE_URL) - 1) * (MENU_FONT_WIDTH)),
|
2019-08-22 23:01:10 +00:00
|
|
|
text_max_width = _MAX(text_width_1, text_width_2),
|
2019-08-28 12:40:18 +00:00
|
|
|
text_total_height = (MENU_FONT_HEIGHT) * 2,
|
|
|
|
width = LCD_PIXEL_WIDTH, height = LCD_PIXEL_HEIGHT,
|
2019-08-18 00:58:38 +00:00
|
|
|
rspace = width - (START_BMPWIDTH);
|
2019-04-10 22:14:57 +00:00
|
|
|
|
2019-08-18 00:58:38 +00:00
|
|
|
u8g_int_t offx, offy, txt_base, txt_offx_1, txt_offx_2;
|
2019-04-10 22:14:57 +00:00
|
|
|
|
|
|
|
// Can the text fit to the right of the bitmap?
|
|
|
|
if (text_max_width < rspace) {
|
2019-04-18 18:18:49 +00:00
|
|
|
constexpr int8_t inter = (width - text_max_width - (START_BMPWIDTH)) / 3; // Evenly distribute horizontal space
|
2019-04-10 22:14:57 +00:00
|
|
|
offx = inter; // First the boot logo...
|
|
|
|
offy = (height - (START_BMPHEIGHT)) / 2; // ...V-aligned in the full height
|
|
|
|
txt_offx_1 = txt_offx_2 = inter + (START_BMPWIDTH) + inter; // Text right of the bitmap
|
|
|
|
txt_base = (height + MENU_FONT_ASCENT + text_total_height - (MENU_FONT_HEIGHT)) / 2; // Text vertical center
|
|
|
|
}
|
|
|
|
else {
|
2019-04-18 18:18:49 +00:00
|
|
|
constexpr int8_t inter = (height - text_total_height - (START_BMPHEIGHT)) / 3; // Evenly distribute vertical space
|
2019-04-10 22:14:57 +00:00
|
|
|
offx = rspace / 2; // Center the boot logo in the whole space
|
2019-08-28 12:40:18 +00:00
|
|
|
offy = inter; // V-align boot logo proportionally
|
2019-04-10 22:14:57 +00:00
|
|
|
txt_offx_1 = (width - text_width_1) / 2; // Text 1 centered
|
|
|
|
txt_offx_2 = (width - text_width_2) / 2; // Text 2 centered
|
|
|
|
txt_base = offy + START_BMPHEIGHT + offy + text_total_height - (MENU_FONT_DESCENT); // Even spacing looks best
|
|
|
|
}
|
|
|
|
NOLESS(offx, 0);
|
|
|
|
NOLESS(offy, 0);
|
2017-07-02 05:35:41 +00:00
|
|
|
|
2019-09-04 19:34:27 +00:00
|
|
|
auto _draw_bootscreen_bmp = [&](const uint8_t *bitmap) {
|
2019-08-17 23:40:01 +00:00
|
|
|
u8g.drawBitmapP(offx, offy, START_BMP_BYTEWIDTH, START_BMPHEIGHT, bitmap);
|
|
|
|
set_font(FONT_MENU);
|
2019-08-28 12:40:18 +00:00
|
|
|
if (!two_part || !line2) lcd_put_u8str_P(txt_offx_1, txt_base - (MENU_FONT_HEIGHT), PSTR(SHORT_BUILD_VERSION));
|
|
|
|
if (!two_part || line2) lcd_put_u8str_P(txt_offx_2, txt_base, PSTR(MARLIN_WEBSITE_URL));
|
2019-08-17 23:40:01 +00:00
|
|
|
};
|
|
|
|
|
2019-09-04 19:34:27 +00:00
|
|
|
auto draw_bootscreen_bmp = [&](const uint8_t *bitmap) {
|
|
|
|
u8g.firstPage(); do { _draw_bootscreen_bmp(bitmap); } while (u8g.nextPage());
|
|
|
|
};
|
|
|
|
|
2019-08-17 23:40:01 +00:00
|
|
|
#if DISABLED(BOOT_MARLIN_LOGO_ANIMATED)
|
|
|
|
draw_bootscreen_bmp(start_bmp);
|
2019-07-29 03:47:20 +00:00
|
|
|
#else
|
2019-08-17 23:40:01 +00:00
|
|
|
constexpr millis_t d = MARLIN_BOOTSCREEN_FRAME_TIME;
|
|
|
|
LOOP_L_N(f, COUNT(marlin_bootscreen_animation)) {
|
2019-09-04 19:47:00 +00:00
|
|
|
draw_bootscreen_bmp((uint8_t*)pgm_read_ptr(&marlin_bootscreen_animation[f]));
|
2019-08-17 23:40:01 +00:00
|
|
|
if (d) safe_delay(d);
|
|
|
|
}
|
2019-07-29 03:47:20 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-09-04 19:34:27 +00:00
|
|
|
// Show the Marlin bootscreen, with the u8g loop and delays
|
2019-07-29 03:47:20 +00:00
|
|
|
void MarlinUI::show_marlin_bootscreen() {
|
2019-03-08 00:35:06 +00:00
|
|
|
#ifndef BOOTSCREEN_TIMEOUT
|
|
|
|
#define BOOTSCREEN_TIMEOUT 2500
|
|
|
|
#endif
|
2019-09-04 19:34:27 +00:00
|
|
|
constexpr uint8_t pages = two_part ? 2 : 1;
|
|
|
|
for (uint8_t q = pages; q--;) {
|
|
|
|
draw_marlin_bootscreen(q == 0);
|
|
|
|
safe_delay((BOOTSCREEN_TIMEOUT) / pages);
|
2019-08-28 12:40:18 +00:00
|
|
|
}
|
2017-07-02 05:35:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-29 03:47:20 +00:00
|
|
|
void MarlinUI::show_bootscreen() {
|
|
|
|
#if ENABLED(SHOW_CUSTOM_BOOTSCREEN)
|
|
|
|
show_custom_bootscreen();
|
|
|
|
#endif
|
|
|
|
show_marlin_bootscreen();
|
|
|
|
}
|
|
|
|
|
2017-07-02 05:35:41 +00:00
|
|
|
#endif // SHOW_BOOTSCREEN
|
|
|
|
|
2018-02-14 21:43:54 +00:00
|
|
|
#if ENABLED(LIGHTWEIGHT_UI)
|
2018-11-13 07:47:45 +00:00
|
|
|
#include "status_screen_lite_ST7920.h"
|
2018-02-14 21:43:54 +00:00
|
|
|
#endif
|
|
|
|
|
2017-04-16 04:45:15 +00:00
|
|
|
// Initialize or re-initialize the LCD
|
2018-11-11 18:16:24 +00:00
|
|
|
void MarlinUI::init_lcd() {
|
2015-04-08 05:04:10 +00:00
|
|
|
|
2019-07-15 22:36:16 +00:00
|
|
|
#if PIN_EXISTS(LCD_BACKLIGHT)
|
|
|
|
OUT_WRITE(LCD_BACKLIGHT_PIN, (
|
|
|
|
#if ENABLED(DELAYED_BACKLIGHT_INIT)
|
|
|
|
LOW // Illuminate after reset
|
|
|
|
#else
|
|
|
|
HIGH // Illuminate right away
|
|
|
|
#endif
|
|
|
|
));
|
2018-03-13 09:54:23 +00:00
|
|
|
#endif
|
|
|
|
|
2019-03-17 04:43:06 +00:00
|
|
|
#if EITHER(MKS_12864OLED, MKS_12864OLED_SSD1306)
|
2018-03-12 13:53:41 +00:00
|
|
|
SET_OUTPUT(LCD_PINS_DC);
|
2019-07-15 22:36:16 +00:00
|
|
|
#ifndef LCD_RESET_PIN
|
2018-07-31 04:05:36 +00:00
|
|
|
#define LCD_RESET_PIN LCD_PINS_RS
|
|
|
|
#endif
|
2018-03-12 13:53:41 +00:00
|
|
|
#endif
|
|
|
|
|
2016-09-24 21:36:12 +00:00
|
|
|
#if PIN_EXISTS(LCD_RESET)
|
2019-07-15 22:36:16 +00:00
|
|
|
// Perform a clean hardware reset with needed delays
|
|
|
|
OUT_WRITE(LCD_RESET_PIN, LOW);
|
|
|
|
_delay_ms(5);
|
|
|
|
WRITE(LCD_RESET_PIN, HIGH);
|
2017-04-16 04:45:15 +00:00
|
|
|
_delay_ms(5);
|
2019-07-15 22:36:16 +00:00
|
|
|
u8g.begin();
|
2018-03-13 09:54:23 +00:00
|
|
|
#endif
|
|
|
|
|
2019-07-15 22:36:16 +00:00
|
|
|
#if PIN_EXISTS(LCD_BACKLIGHT) && ENABLED(DELAYED_BACKLIGHT_INIT)
|
|
|
|
WRITE(LCD_BACKLIGHT_PIN, HIGH);
|
2015-07-04 04:29:31 +00:00
|
|
|
#endif
|
2015-10-13 10:51:34 +00:00
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#if HAS_LCD_CONTRAST
|
2018-11-11 18:16:24 +00:00
|
|
|
refresh_contrast();
|
2015-07-23 08:12:19 +00:00
|
|
|
#endif
|
2015-10-13 10:51:34 +00:00
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(LCD_SCREEN_ROT_90)
|
2019-07-15 22:36:16 +00:00
|
|
|
u8g.setRot90();
|
2015-07-31 05:26:53 +00:00
|
|
|
#elif ENABLED(LCD_SCREEN_ROT_180)
|
2019-07-15 22:36:16 +00:00
|
|
|
u8g.setRot180();
|
2015-07-31 05:26:53 +00:00
|
|
|
#elif ENABLED(LCD_SCREEN_ROT_270)
|
2019-07-15 22:36:16 +00:00
|
|
|
u8g.setRot270();
|
2015-02-03 08:52:29 +00:00
|
|
|
#endif
|
2018-04-13 01:14:01 +00:00
|
|
|
|
2018-11-24 06:26:04 +00:00
|
|
|
uxg_SetUtf8Fonts(g_fontinfo, COUNT(g_fontinfo));
|
2013-03-19 18:59:56 +00:00
|
|
|
}
|
|
|
|
|
2016-08-20 23:13:24 +00:00
|
|
|
// The kill screen is displayed for unrecoverable conditions
|
2018-11-11 18:16:24 +00:00
|
|
|
void MarlinUI::draw_kill_screen() {
|
2018-02-14 21:43:54 +00:00
|
|
|
#if ENABLED(LIGHTWEIGHT_UI)
|
|
|
|
ST7920_Lite_Status_Screen::clear_text_buffer();
|
|
|
|
#endif
|
2019-08-18 00:58:38 +00:00
|
|
|
const u8g_uint_t h4 = u8g.getHeight() / 4;
|
2017-11-03 10:58:20 +00:00
|
|
|
u8g.firstPage();
|
|
|
|
do {
|
2018-11-11 18:16:24 +00:00
|
|
|
set_font(FONT_MENU);
|
2019-08-23 00:36:18 +00:00
|
|
|
lcd_put_u8str(0, h4 * 1, status_message);
|
2019-10-10 00:46:10 +00:00
|
|
|
lcd_put_u8str_P(0, h4 * 2, GET_TEXT(MSG_HALTED));
|
|
|
|
lcd_put_u8str_P(0, h4 * 3, GET_TEXT(MSG_PLEASE_RESET));
|
2017-11-03 10:58:20 +00:00
|
|
|
} while (u8g.nextPage());
|
2016-07-10 02:50:45 +00:00
|
|
|
}
|
|
|
|
|
2018-11-11 18:16:24 +00:00
|
|
|
void MarlinUI::clear_lcd() { } // Automatically cleared by Picture Loop
|
2013-03-19 18:59:56 +00:00
|
|
|
|
2018-10-30 21:34:45 +00:00
|
|
|
#if HAS_LCD_MENU
|
2016-08-20 23:12:57 +00:00
|
|
|
|
2019-09-27 08:06:23 +00:00
|
|
|
#include "../menu/menu.h"
|
|
|
|
|
2019-08-18 00:58:38 +00:00
|
|
|
u8g_uint_t row_y1, row_y2;
|
2017-02-18 05:57:13 +00:00
|
|
|
|
2017-05-26 18:01:02 +00:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE)
|
2017-02-18 05:57:13 +00:00
|
|
|
|
2018-11-11 18:16:24 +00:00
|
|
|
void MarlinUI::draw_hotend_status(const uint8_t row, const uint8_t extruder) {
|
2018-10-31 03:39:44 +00:00
|
|
|
row_y1 = row * (MENU_FONT_HEIGHT) + 1;
|
|
|
|
row_y2 = row_y1 + MENU_FONT_HEIGHT - 1;
|
2017-02-18 05:57:13 +00:00
|
|
|
|
|
|
|
if (!PAGE_CONTAINS(row_y1 + 1, row_y2 + 2)) return;
|
|
|
|
|
2019-08-23 00:36:18 +00:00
|
|
|
lcd_put_wchar(LCD_PIXEL_WIDTH - 11 * (MENU_FONT_WIDTH), row_y2, 'E');
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_put_wchar((char)('1' + extruder));
|
|
|
|
lcd_put_wchar(' ');
|
2019-01-12 22:01:04 +00:00
|
|
|
lcd_put_u8str(i16tostr3(thermalManager.degHotend(extruder)));
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_put_wchar('/');
|
2017-05-31 21:26:05 +00:00
|
|
|
|
2019-03-07 08:09:39 +00:00
|
|
|
if (get_blink() || !thermalManager.hotend_idle[extruder].timed_out)
|
2019-01-12 22:01:04 +00:00
|
|
|
lcd_put_u8str(i16tostr3(thermalManager.degTargetHotend(extruder)));
|
2017-02-18 05:57:13 +00:00
|
|
|
}
|
|
|
|
|
2017-05-26 18:01:02 +00:00
|
|
|
#endif // ADVANCED_PAUSE_FEATURE
|
2016-11-24 00:28:25 +00:00
|
|
|
|
2016-08-20 23:12:57 +00:00
|
|
|
// Set the colors for a menu item based on whether it is selected
|
2018-11-14 19:13:51 +00:00
|
|
|
static bool mark_as_selected(const uint8_t row, const bool sel) {
|
2018-10-31 03:39:44 +00:00
|
|
|
row_y1 = row * (MENU_FONT_HEIGHT) + 1;
|
|
|
|
row_y2 = row_y1 + MENU_FONT_HEIGHT - 1;
|
2016-11-24 00:28:25 +00:00
|
|
|
|
2018-04-13 01:14:01 +00:00
|
|
|
if (!PAGE_CONTAINS(row_y1 + 1, row_y2 + 2)) return false;
|
2016-11-24 00:28:25 +00:00
|
|
|
|
2018-11-14 19:13:51 +00:00
|
|
|
if (sel) {
|
2016-11-26 19:55:55 +00:00
|
|
|
#if ENABLED(MENU_HOLLOW_FRAME)
|
|
|
|
u8g.drawHLine(0, row_y1 + 1, LCD_PIXEL_WIDTH);
|
2017-02-18 05:57:13 +00:00
|
|
|
u8g.drawHLine(0, row_y2 + 2, LCD_PIXEL_WIDTH);
|
2016-11-26 19:55:55 +00:00
|
|
|
#else
|
|
|
|
u8g.setColorIndex(1); // black on white
|
2018-10-31 03:39:44 +00:00
|
|
|
u8g.drawBox(0, row_y1 + 2, LCD_PIXEL_WIDTH, MENU_FONT_HEIGHT - 1);
|
2016-11-26 19:55:55 +00:00
|
|
|
u8g.setColorIndex(0); // white on black
|
|
|
|
#endif
|
2016-08-20 23:12:57 +00:00
|
|
|
}
|
2016-11-26 19:55:55 +00:00
|
|
|
#if DISABLED(MENU_HOLLOW_FRAME)
|
|
|
|
else {
|
|
|
|
u8g.setColorIndex(1); // unmarked text is black on white
|
|
|
|
}
|
|
|
|
#endif
|
2018-04-13 01:14:01 +00:00
|
|
|
|
|
|
|
if (!PAGE_CONTAINS(row_y1, row_y2)) return false;
|
|
|
|
|
2018-10-31 03:39:44 +00:00
|
|
|
lcd_moveto(0, row_y2);
|
2018-04-13 01:14:01 +00:00
|
|
|
return true;
|
2015-01-10 02:16:56 +00:00
|
|
|
}
|
2015-02-03 22:35:33 +00:00
|
|
|
|
2016-12-13 05:56:05 +00:00
|
|
|
// Draw a static line of text in the same idiom as a menu item
|
2019-11-02 12:28:20 +00:00
|
|
|
void MenuItem_static::draw(const uint8_t row, PGM_P const pstr, const uint8_t style/*=SS_DEFAULT*/, const char * const valstr/*=nullptr*/) {
|
2016-07-02 20:57:24 +00:00
|
|
|
|
2019-10-10 00:46:10 +00:00
|
|
|
if (mark_as_selected(row, style & SS_INVERT)) {
|
2016-07-09 01:18:40 +00:00
|
|
|
|
2019-08-18 00:58:38 +00:00
|
|
|
u8g_uint_t n = LCD_PIXEL_WIDTH; // pixel width of string allowed
|
2016-11-24 00:28:25 +00:00
|
|
|
|
2019-09-27 08:06:23 +00:00
|
|
|
if ((style & SS_CENTER) && !valstr) {
|
2018-04-13 01:14:01 +00:00
|
|
|
int8_t pad = (LCD_WIDTH - utf8_strlen_P(pstr)) / 2;
|
|
|
|
while (--pad >= 0) { lcd_put_wchar(' '); n--; }
|
|
|
|
}
|
2019-11-15 02:30:30 +00:00
|
|
|
n = lcd_put_u8str_ind_P(pstr, itemIndex, LCD_WIDTH) * (MENU_FONT_WIDTH);
|
2018-11-17 03:44:48 +00:00
|
|
|
if (valstr) n -= lcd_put_u8str_max(valstr, n);
|
|
|
|
while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
|
2016-12-13 05:56:05 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-30 09:24:29 +00:00
|
|
|
|
2016-08-20 23:12:57 +00:00
|
|
|
// Draw a generic menu item
|
2019-11-02 12:28:20 +00:00
|
|
|
void MenuItemBase::_draw(const bool sel, const uint8_t row, PGM_P const pstr, const char, const char post_char) {
|
2018-11-14 19:13:51 +00:00
|
|
|
if (mark_as_selected(row, sel)) {
|
2019-11-15 02:30:30 +00:00
|
|
|
u8g_uint_t n = lcd_put_u8str_ind_P(pstr, itemIndex, LCD_WIDTH - 2) * (MENU_FONT_WIDTH);
|
2018-11-17 03:44:48 +00:00
|
|
|
while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
|
2019-08-23 00:36:18 +00:00
|
|
|
lcd_put_wchar(LCD_PIXEL_WIDTH - (MENU_FONT_WIDTH), row_y2, post_char);
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_put_wchar(' ');
|
2016-08-20 23:12:57 +00:00
|
|
|
}
|
2015-01-10 02:16:56 +00:00
|
|
|
}
|
2013-03-19 18:59:56 +00:00
|
|
|
|
2016-08-20 23:12:57 +00:00
|
|
|
// Draw a menu item with an editable value
|
2019-11-02 12:28:20 +00:00
|
|
|
void MenuEditItemBase::draw(const bool sel, const uint8_t row, PGM_P const pstr, const char* const data, const bool pgm) {
|
2018-11-14 19:13:51 +00:00
|
|
|
if (mark_as_selected(row, sel)) {
|
2018-04-13 01:14:01 +00:00
|
|
|
const uint8_t vallen = (pgm ? utf8_strlen_P(data) : utf8_strlen((char*)data));
|
2019-11-15 02:30:30 +00:00
|
|
|
u8g_uint_t n = lcd_put_u8str_ind_P(pstr, itemIndex, LCD_WIDTH - 2 - vallen) * (MENU_FONT_WIDTH);
|
|
|
|
if (vallen) {
|
|
|
|
lcd_put_wchar(':');
|
|
|
|
while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
|
|
|
|
lcd_moveto(LCD_PIXEL_WIDTH - (MENU_FONT_WIDTH) * vallen, row_y2);
|
|
|
|
if (pgm) lcd_put_u8str_P(data); else lcd_put_u8str((char*)data);
|
|
|
|
}
|
2015-02-03 19:48:49 +00:00
|
|
|
}
|
2016-08-20 23:12:57 +00:00
|
|
|
}
|
|
|
|
|
2019-11-15 02:30:30 +00:00
|
|
|
void MenuEditItemBase::draw_edit_screen(PGM_P const pstr, const char* const value/*=nullptr*/) {
|
2019-07-29 05:02:42 +00:00
|
|
|
ui.encoder_direction_normal();
|
2016-12-05 13:14:11 +00:00
|
|
|
|
2019-08-18 00:58:38 +00:00
|
|
|
const u8g_uint_t labellen = utf8_strlen_P(pstr), vallen = utf8_strlen(value);
|
2018-10-31 03:39:44 +00:00
|
|
|
bool extra_row = labellen > LCD_WIDTH - 2 - vallen;
|
2016-08-20 23:12:57 +00:00
|
|
|
|
|
|
|
#if ENABLED(USE_BIG_EDIT_FONT)
|
2018-10-31 03:39:44 +00:00
|
|
|
// Use the menu font if the label won't fit on a single line
|
2019-08-18 00:58:38 +00:00
|
|
|
constexpr u8g_uint_t lcd_edit_width = (LCD_PIXEL_WIDTH) / (EDIT_FONT_WIDTH);
|
|
|
|
u8g_uint_t lcd_chr_fit, one_chr_width;
|
2018-10-31 03:39:44 +00:00
|
|
|
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 18:16:24 +00:00
|
|
|
ui.set_font(FONT_EDIT);
|
2016-08-20 23:12:57 +00:00
|
|
|
}
|
|
|
|
else {
|
2018-10-31 03:39:44 +00:00
|
|
|
lcd_chr_fit = LCD_WIDTH;
|
|
|
|
one_chr_width = MENU_FONT_WIDTH;
|
2018-11-11 18:16:24 +00:00
|
|
|
ui.set_font(FONT_MENU);
|
2016-08-20 23:12:57 +00:00
|
|
|
}
|
2016-11-24 00:28:25 +00:00
|
|
|
#else
|
2019-08-18 00:58:38 +00:00
|
|
|
constexpr u8g_uint_t lcd_chr_fit = LCD_WIDTH,
|
|
|
|
one_chr_width = MENU_FONT_WIDTH;
|
2016-08-20 23:12:57 +00:00
|
|
|
#endif
|
2015-02-03 19:48:49 +00:00
|
|
|
|
2018-10-31 03:39:44 +00:00
|
|
|
// Center the label and value lines on the middle line
|
2019-08-18 00:58:38 +00:00
|
|
|
u8g_uint_t baseline = extra_row ? (LCD_PIXEL_HEIGHT) / 2 - 1
|
|
|
|
: (LCD_PIXEL_HEIGHT + EDIT_FONT_ASCENT) / 2;
|
2015-02-03 19:15:16 +00:00
|
|
|
|
2018-10-31 03:39:44 +00:00
|
|
|
// Assume the label is alpha-numeric (with a descender)
|
|
|
|
bool onpage = PAGE_CONTAINS(baseline - (EDIT_FONT_ASCENT - 1), baseline + EDIT_FONT_DESCENT);
|
2019-11-15 02:30:30 +00:00
|
|
|
if (onpage) lcd_put_u8str_ind_P(0, baseline, pstr, itemIndex);
|
2015-02-03 19:15:16 +00:00
|
|
|
|
2018-10-31 03:39:44 +00:00
|
|
|
// If a value is included, print a colon, then print the value right-justified
|
2019-05-09 16:45:55 +00:00
|
|
|
if (value != nullptr) {
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_put_wchar(':');
|
2018-10-31 03:39:44 +00:00
|
|
|
if (extra_row) {
|
2019-04-06 23:04:34 +00:00
|
|
|
// Assume that value is numeric (with no descender)
|
2018-11-27 21:50:44 +00:00
|
|
|
baseline += EDIT_FONT_ASCENT + 2;
|
2018-10-31 03:39:44 +00:00
|
|
|
onpage = PAGE_CONTAINS(baseline - (EDIT_FONT_ASCENT - 1), baseline);
|
2017-06-20 02:53:06 +00:00
|
|
|
}
|
|
|
|
if (onpage) {
|
2019-08-23 00:36:18 +00:00
|
|
|
lcd_put_wchar(((lcd_chr_fit - 1) - (vallen + 1)) * one_chr_width, baseline, ' '); // Right-justified, padded, add a leading space
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_put_u8str(value);
|
2016-11-24 00:28:25 +00:00
|
|
|
}
|
2016-08-20 23:12:57 +00:00
|
|
|
}
|
2016-04-01 21:10:04 +00:00
|
|
|
}
|
2013-03-19 18:59:56 +00:00
|
|
|
|
2019-08-18 00:58:38 +00:00
|
|
|
inline void draw_boxed_string(const u8g_uint_t x, const u8g_uint_t y, PGM_P const pstr, const bool inv) {
|
|
|
|
const u8g_uint_t len = utf8_strlen_P(pstr), bw = len * (MENU_FONT_WIDTH),
|
|
|
|
bx = x * (MENU_FONT_WIDTH), by = (y + 1) * (MENU_FONT_HEIGHT);
|
2019-04-08 18:44:35 +00:00
|
|
|
if (inv) {
|
|
|
|
u8g.setColorIndex(1);
|
|
|
|
u8g.drawBox(bx - 1, by - (MENU_FONT_ASCENT) + 1, bw + 2, MENU_FONT_HEIGHT - 1);
|
|
|
|
u8g.setColorIndex(0);
|
|
|
|
}
|
2019-08-23 00:36:18 +00:00
|
|
|
lcd_put_u8str_P(bx, by, pstr);
|
2019-04-08 18:44:35 +00:00
|
|
|
if (inv) u8g.setColorIndex(1);
|
|
|
|
}
|
|
|
|
|
2019-11-02 12:28:20 +00:00
|
|
|
void MenuItem_confirm::draw_select_screen(PGM_P const yes, PGM_P const no, const bool yesno, PGM_P const pref, const char * const string/*=nullptr*/, PGM_P const suff/*=nullptr*/) {
|
2019-04-24 15:13:44 +00:00
|
|
|
ui.draw_select_screen_prompt(pref, string, suff);
|
2019-04-08 18:44:35 +00:00
|
|
|
draw_boxed_string(1, LCD_HEIGHT - 1, no, !yesno);
|
|
|
|
draw_boxed_string(LCD_WIDTH - (utf8_strlen_P(yes) + 1), LCD_HEIGHT - 1, yes, yesno);
|
|
|
|
}
|
|
|
|
|
2016-08-20 23:12:57 +00:00
|
|
|
#if ENABLED(SDSUPPORT)
|
2013-03-19 18:59:56 +00:00
|
|
|
|
2019-11-02 12:28:20 +00:00
|
|
|
void MenuItem_sdbase::draw(const bool sel, const uint8_t row, PGM_P const, CardReader &theCard, const bool isDir) {
|
2018-11-17 03:44:48 +00:00
|
|
|
if (mark_as_selected(row, sel)) {
|
|
|
|
if (isDir) lcd_put_wchar(LCD_STR_FOLDER[0]);
|
|
|
|
constexpr uint8_t maxlen = LCD_WIDTH - 1;
|
2019-08-18 00:58:38 +00:00
|
|
|
const u8g_uint_t pixw = maxlen * (MENU_FONT_WIDTH);
|
|
|
|
u8g_uint_t n = pixw - lcd_put_u8str_max(ui.scrolled_filename(theCard, maxlen, row, sel), pixw);
|
2018-11-17 03:44:48 +00:00
|
|
|
while (n > MENU_FONT_WIDTH) n -= lcd_put_wchar(' ');
|
2016-08-20 23:12:57 +00:00
|
|
|
}
|
2015-09-11 09:18:42 +00:00
|
|
|
}
|
2013-03-19 18:59:56 +00:00
|
|
|
|
2016-08-20 23:12:57 +00:00
|
|
|
#endif // SDSUPPORT
|
2015-03-16 05:02:33 +00:00
|
|
|
|
2017-06-21 20:26:59 +00:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UBL LCD "radar" map data
|
|
|
|
*/
|
2017-06-28 03:19:32 +00: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 18:16:24 +00:00
|
|
|
void MarlinUI::ubl_plot(const uint8_t x_plot, const uint8_t y_plot) {
|
2017-06-28 03:19:32 +00:00
|
|
|
// Scale the box pixels appropriately
|
2019-08-18 00:58:38 +00:00
|
|
|
u8g_uint_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-06-28 03:19:32 +00:00
|
|
|
|
2017-07-13 02:39:37 +00: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 03:19:32 +00: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 20:26:59 +00:00
|
|
|
|
2017-06-28 03:19:32 +00:00
|
|
|
// Display Mesh Point Locations
|
2017-06-21 20:26:59 +00:00
|
|
|
|
|
|
|
u8g.setColorIndex(1);
|
2019-08-18 00:58:38 +00:00
|
|
|
const u8g_uint_t sx = x_offset + pixels_per_x_mesh_pnt / 2;
|
|
|
|
u8g_uint_t y = y_offset + pixels_per_y_mesh_pnt / 2;
|
2017-07-13 02:39:37 +00:00
|
|
|
for (uint8_t j = 0; j < GRID_MAX_POINTS_Y; j++, y += pixels_per_y_mesh_pnt)
|
2017-06-28 03:19:32 +00:00
|
|
|
if (PAGE_CONTAINS(y, y))
|
2017-07-13 02:39:37 +00:00
|
|
|
for (uint8_t i = 0, x = sx; i < GRID_MAX_POINTS_X; i++, x += pixels_per_x_mesh_pnt)
|
2017-07-19 03:55:14 +00:00
|
|
|
u8g.drawBox(x, y, 1, 1);
|
2017-06-21 20:26:59 +00:00
|
|
|
|
2017-06-28 03:19:32 +00:00
|
|
|
// Fill in the Specified Mesh Point
|
2017-06-21 20:26:59 +00:00
|
|
|
|
2019-08-18 00:58:38 +00:00
|
|
|
const uint8_t y_plot_inv = (GRID_MAX_POINTS_Y - 1) - y_plot; // 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 20:26:59 +00:00
|
|
|
|
2019-08-18 00:58:38 +00:00
|
|
|
const u8g_uint_t by = y_offset + y_plot_inv * pixels_per_y_mesh_pnt;
|
2017-07-13 02:39:37 +00:00
|
|
|
if (PAGE_CONTAINS(by, by + pixels_per_y_mesh_pnt))
|
2017-06-28 03:19:32 +00:00
|
|
|
u8g.drawBox(
|
2017-07-13 02:39:37 +00:00
|
|
|
x_offset + x_plot * pixels_per_x_mesh_pnt, by,
|
|
|
|
pixels_per_x_mesh_pnt, pixels_per_y_mesh_pnt
|
2017-06-28 03:19:32 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// Put Relevant Text on Display
|
2017-06-21 20:26:59 +00:00
|
|
|
|
|
|
|
// Show X and Y positions at top of screen
|
|
|
|
u8g.setColorIndex(1);
|
2017-06-28 03:19:32 +00:00
|
|
|
if (PAGE_UNDER(7)) {
|
2019-09-29 09:25:39 +00:00
|
|
|
const xy_pos_t pos = { ubl.mesh_index_to_xpos(x_plot), ubl.mesh_index_to_ypos(y_plot) },
|
|
|
|
lpos = pos.asLogical();
|
2019-08-23 00:36:18 +00:00
|
|
|
lcd_put_u8str(5, 7, "X:");
|
2019-09-29 09:25:39 +00:00
|
|
|
lcd_put_u8str(ftostr52(lpos.x));
|
2019-08-23 00:36:18 +00:00
|
|
|
lcd_put_u8str(74, 7, "Y:");
|
2019-09-29 09:25:39 +00:00
|
|
|
lcd_put_u8str(ftostr52(lpos.y));
|
2017-06-28 03:19:32 +00:00
|
|
|
}
|
2017-06-21 20:26:59 +00:00
|
|
|
|
|
|
|
// Print plot position
|
2018-02-01 00:43:33 +00:00
|
|
|
if (PAGE_CONTAINS(LCD_PIXEL_HEIGHT - (INFO_FONT_HEIGHT - 1), LCD_PIXEL_HEIGHT)) {
|
2019-08-23 00:36:18 +00:00
|
|
|
lcd_put_wchar(5, LCD_PIXEL_HEIGHT, '(');
|
2017-06-28 03:19:32 +00:00
|
|
|
u8g.print(x_plot);
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_put_wchar(',');
|
2017-06-28 03:19:32 +00:00
|
|
|
u8g.print(y_plot);
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_put_wchar(')');
|
2017-06-28 03:19:32 +00:00
|
|
|
|
|
|
|
// Show the location value
|
2019-08-23 00:36:18 +00:00
|
|
|
lcd_put_u8str(74, LCD_PIXEL_HEIGHT, "Z:");
|
2017-06-28 03:19:32 +00:00
|
|
|
if (!isnan(ubl.z_values[x_plot][y_plot]))
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_put_u8str(ftostr43sign(ubl.z_values[x_plot][y_plot]));
|
2017-06-28 03:19:32 +00:00
|
|
|
else
|
2018-05-26 04:32:37 +00:00
|
|
|
lcd_put_u8str_P(PSTR(" -----"));
|
2017-06-21 20:26:59 +00:00
|
|
|
}
|
2017-06-28 03:19:32 +00:00
|
|
|
|
2017-06-21 20:26:59 +00:00
|
|
|
}
|
2017-06-28 03:19:32 +00:00
|
|
|
|
2017-06-21 20:26:59 +00:00
|
|
|
#endif // AUTO_BED_LEVELING_UBL
|
|
|
|
|
2019-03-17 04:43:06 +00:00
|
|
|
#if EITHER(BABYSTEP_ZPROBE_GFX_OVERLAY, MESH_EDIT_GFX_OVERLAY)
|
2018-10-23 21:00:34 +00:00
|
|
|
|
2018-10-28 03:06:25 +00:00
|
|
|
const unsigned char cw_bmp[] PROGMEM = {
|
2019-10-29 21:38:17 +00:00
|
|
|
B00000000,B11111110,B00000000,
|
|
|
|
B00000011,B11111111,B10000000,
|
|
|
|
B00000111,B11000111,B11000000,
|
|
|
|
B00000111,B00000001,B11100000,
|
2019-04-12 20:43:29 +00:00
|
|
|
B00000000,B00000000,B11100000,
|
2019-10-29 21:38:17 +00:00
|
|
|
B00000000,B00000000,B11110000,
|
|
|
|
B00000000,B00000000,B01110000,
|
|
|
|
B00000100,B00000000,B01110000,
|
|
|
|
B00001110,B00000000,B01110000,
|
|
|
|
B00011111,B00000000,B01110000,
|
|
|
|
B00111111,B10000000,B11110000,
|
2019-04-12 20:43:29 +00:00
|
|
|
B00001110,B00000000,B11100000,
|
2019-10-29 21:38:17 +00:00
|
|
|
B00001111,B00000001,B11100000,
|
|
|
|
B00000111,B11000111,B11000000,
|
2019-04-12 20:43:29 +00:00
|
|
|
B00000011,B11111111,B10000000,
|
|
|
|
B00000000,B11111110,B00000000
|
2018-10-28 03:06:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const unsigned char ccw_bmp[] PROGMEM = {
|
|
|
|
B00000000,B11111110,B00000000,
|
|
|
|
B00000011,B11111111,B10000000,
|
2019-10-29 21:38:17 +00:00
|
|
|
B00000111,B11000111,B11000000,
|
|
|
|
B00001111,B00000001,B11100000,
|
2018-10-28 03:06:25 +00:00
|
|
|
B00001110,B00000000,B11100000,
|
2019-10-29 21:38:17 +00:00
|
|
|
B00111111,B10000000,B11110000,
|
|
|
|
B00011111,B00000000,B01110000,
|
|
|
|
B00001110,B00000000,B01110000,
|
|
|
|
B00000100,B00000000,B01110000,
|
|
|
|
B00000000,B00000000,B01110000,
|
|
|
|
B00000000,B00000000,B11110000,
|
2018-10-28 03:06:25 +00:00
|
|
|
B00000000,B00000000,B11100000,
|
2019-10-29 21:38:17 +00:00
|
|
|
B00000111,B00000001,B11100000,
|
|
|
|
B00000111,B11000111,B11000000,
|
|
|
|
B00000011,B11111111,B10000000,
|
|
|
|
B00000000,B11111110,B00000000
|
2018-10-28 03:06:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 21:00:34 +00: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)) {
|
2019-04-12 20:43:29 +00:00
|
|
|
u8g.drawBitmapP(right + 0, 48 - dir, 2, 13, up_arrow_bmp);
|
|
|
|
u8g.drawBitmapP(left + 0, 49 - dir, 2, 13, down_arrow_bmp);
|
|
|
|
u8g.drawBitmapP(left + 13, 47, 3, 16, rot_down);
|
|
|
|
u8g.drawBitmapP(right + 13, 47, 3, 16, rot_up);
|
2018-10-23 21:00:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // BABYSTEP_ZPROBE_GFX_OVERLAY || MESH_EDIT_GFX_OVERLAY
|
|
|
|
|
2018-10-30 21:34:45 +00:00
|
|
|
#endif // HAS_LCD_MENU
|
2013-03-19 18:59:56 +00:00
|
|
|
|
2018-10-28 03:06:25 +00:00
|
|
|
#endif // HAS_GRAPHICAL_LCD
|