2016-03-25 07:19:46 +01:00
/**
2016-03-24 19:01:20 +01:00
* Marlin 3 D Printer Firmware
* Copyright ( C ) 2016 MarlinFirmware [ https : //github.com/MarlinFirmware/Marlin]
*
* 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
/**
2016-07-20 00:26:14 +02:00
* ultralcd_impl_DOGM . h
2013-03-19 19:59:56 +01:00
*
2015-01-10 03:16:56 +01:00
* Graphics LCD implementation for 128 x64 pixel LCDs by STB for ErikZalm / Marlin
* 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
*/
2016-07-20 05:10:16 +02:00
# ifndef ULTRALCD_IMPL_DOGM_H
# define ULTRALCD_IMPL_DOGM_H
2013-03-19 19:59:56 +01:00
2017-09-06 13:28:32 +02:00
# include "../inc/MarlinConfig.h"
2016-07-26 08:04:19 +02:00
2017-10-06 21:51:39 +02:00
/**
* Implementation of the LCD display routines for a DOGM128 graphic display .
* These are common LCD 128 x64 pixel graphic displays .
*/
2013-03-19 19:59:56 +01:00
# include "ultralcd.h"
2017-09-06 13:28:32 +02:00
2017-11-03 02:57:08 +01:00
/*
2017-09-06 13:28:32 +02:00
# if ENABLED(U8GLIB_ST7565_64128N)
# include "dogm/ultralcd_st7565_u8glib_VIKI.h"
# elif ENABLED(U8GLIB_ST7920)
# include "dogm/ultralcd_st7920_u8glib_rrd.h"
# endif
2017-11-03 02:57:08 +01:00
*/
2017-09-06 13:28:32 +02:00
# include "dogm/dogm_bitmaps.h"
2017-09-09 07:18:43 +02:00
# if ENABLED(SDSUPPORT)
# include "../libs/duration_t.h"
# endif
2016-07-23 02:42:48 +02:00
2016-07-26 08:04:19 +02:00
# include <U8glib.h>
2018-05-23 09:37:09 +02:00
2018-04-13 03:14:01 +02:00
# include "fontutils.h"
# include "u8g_fontutf8.h"
2017-11-08 22:48:35 +01:00
# include "dogm/HAL_LCD_class_defines.h"
2016-07-26 08:04:19 +02:00
2017-06-13 01:26:49 +02:00
# if ENABLED(AUTO_BED_LEVELING_UBL)
2017-09-08 22:35:25 +02:00
# include "../feature/bedlevel/ubl/ubl.h"
2017-06-13 01:26:49 +02:00
# endif
2016-11-24 01:28:25 +01:00
// Only Western languages support big / small fonts
2016-11-26 13:50:25 +01:00
# if DISABLED(DISPLAY_CHARSET_ISO10646_1)
2015-10-03 08:08:58 +02:00
# undef USE_BIG_EDIT_FONT
2016-11-26 13:50:25 +01:00
# undef USE_SMALL_INFOFONT
2013-03-19 19:59:56 +01:00
# endif
2015-07-31 07:26:53 +02:00
# if ENABLED(USE_SMALL_INFOFONT)
2017-09-06 13:28:32 +02:00
# include "dogm/dogm_font_data_6x9_marlin.h"
2015-03-24 23:40:04 +01:00
# define FONT_STATUSMENU_NAME u8g_font_6x9
2018-04-08 10:20:33 +02:00
# define INFO_FONT_HEIGHT 7
2013-03-19 19:59:56 +01:00
# else
2015-03-24 23:40:04 +01:00
# define FONT_STATUSMENU_NAME FONT_MENU_NAME
2018-04-08 10:20:33 +02:00
# define INFO_FONT_HEIGHT 8
2013-03-19 19:59:56 +01:00
# endif
2018-04-13 03:14:01 +02:00
// The Marlin special symbols is now in the dogm_font_data_ISO10646_1.h
# define FONT_SPECIAL_NAME ISO10646_1_5x7
# include LANGUAGE_DATA_INCL(LCD_LANGUAGE)
# include "dogm/dogm_font_data_ISO10646_1.h"
# define FONT_MENU_NAME ISO10646_1_5x7
2015-03-10 22:34:56 +01:00
2015-03-24 23:40:04 +01:00
//#define FONT_STATUSMENU_NAME FONT_MENU_NAME
2015-03-24 17:01:56 +01:00
# define FONT_STATUSMENU 1
2015-03-10 22:34:56 +01:00
# define FONT_SPECIAL 2
# define FONT_MENU_EDIT 3
2015-03-24 17:01:56 +01:00
# define FONT_MENU 4
2015-02-03 13:10:09 +01:00
2013-03-19 19:59:56 +01:00
// DOGM parameters (size in pixels)
2015-01-10 03:16:56 +01:00
# define DOG_CHAR_WIDTH 6
# define DOG_CHAR_HEIGHT 12
2015-07-31 07:26:53 +02:00
# if ENABLED(USE_BIG_EDIT_FONT)
2015-03-10 22:34:56 +01:00
# define FONT_MENU_EDIT_NAME u8g_font_9x18
2015-02-03 13:10:09 +01:00
# define DOG_CHAR_WIDTH_EDIT 9
2018-02-06 03:15:35 +01:00
# define DOG_CHAR_HEIGHT_EDIT 18
2015-02-03 13:10:09 +01:00
# else
2015-03-10 22:34:56 +01:00
# define FONT_MENU_EDIT_NAME FONT_MENU_NAME
2018-02-06 03:15:35 +01:00
# define DOG_CHAR_WIDTH_EDIT DOG_CHAR_WIDTH
# define DOG_CHAR_HEIGHT_EDIT DOG_CHAR_HEIGHT
2015-02-03 13:10:09 +01:00
# endif
2013-03-19 19:59:56 +01:00
2015-04-27 12:47:11 +02:00
# ifndef TALL_FONT_CORRECTION
# define TALL_FONT_CORRECTION 0
# endif
2016-07-09 21:06:47 +02:00
# define START_COL 0
2013-03-19 19:59:56 +01:00
// LCD selection
2016-06-21 14:39:10 +02:00
# if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
2018-07-02 06:14:23 +02:00
# if DISABLED(SDSUPPORT) && (LCD_PINS_D4 == SCK_PIN) && (LCD_PINS_ENABLE == MOSI_PIN)
2017-11-25 03:38:14 +01:00
U8GLIB_ST7920_128X64_4X u8g ( LCD_PINS_RS ) ; // 2 stripes, HW SPI (shared with SD card)
2018-02-04 02:33:26 +01:00
# else
U8GLIB_ST7920_128X64_4X u8g ( LCD_PINS_D4 , LCD_PINS_ENABLE , LCD_PINS_RS ) ; // Original u8glib device. 2 stripes, SW SPI
2017-11-21 10:13:59 +01:00
# endif
2017-12-20 01:36:16 +01:00
2017-11-10 09:28:53 +01:00
# elif ENABLED(U8GLIB_ST7920)
2017-11-03 02:57:08 +01:00
// RepRap Discount Full Graphics Smart Controller
2018-02-04 02:33:26 +01:00
# if DISABLED(SDSUPPORT) && (LCD_PINS_D4 == SCK_PIN) && (LCD_PINS_ENABLE == MOSI_PIN)
U8GLIB_ST7920_128X64_4X_HAL u8g ( LCD_PINS_RS ) ; // 2 stripes, HW SPI (shared with SD card, on AVR does not use standard LCD adapter)
# else
2017-11-10 09:28:53 +01:00
//U8GLIB_ST7920_128X64_4X u8g(LCD_PINS_D4, LCD_PINS_ENABLE, LCD_PINS_RS); // Original u8glib device. 2 stripes, SW SPI
2017-11-03 02:57:08 +01:00
U8GLIB_ST7920_128X64_RRD u8g ( LCD_PINS_D4 , LCD_PINS_ENABLE , LCD_PINS_RS ) ; // Number of stripes can be adjusted in ultralcd_st7920_u8glib_rrd.h with PAGE_HEIGHT
2017-11-10 09:28:53 +01:00
// AVR version ignores these pin settings
2017-11-03 02:57:08 +01:00
// HAL version uses these pin settings
2018-02-04 02:33:26 +01:00
# endif
2017-12-20 01:36:16 +01:00
2016-07-26 08:23:55 +02:00
# elif ENABLED(CARTESIO_UI)
2016-07-04 17:32:52 +02:00
// The CartesioUI display
2017-11-03 02:57:08 +01:00
//U8GLIB_DOGM128_2X u8g(DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, DOGLCD_A0); // 4 stripes
2016-11-26 19:08:33 +01:00
U8GLIB_DOGM128_2X u8g ( DOGLCD_CS , DOGLCD_A0 ) ; // 4 stripes
2017-11-03 02:57:08 +01:00
2015-07-31 07:26:53 +02:00
# elif ENABLED(U8GLIB_LM6059_AF)
2015-05-18 00:23:17 +02:00
// Based on the Adafruit ST7565 (http://www.adafruit.com/products/250)
2017-11-03 02:57:08 +01:00
//U8GLIB_LM6059 u8g(DOGLCD_CS, DOGLCD_A0); // 8 stripes
U8GLIB_LM6059_2X u8g ( DOGLCD_CS , DOGLCD_A0 ) ; // 4 stripes
2018-01-05 17:10:55 +01:00
2017-08-15 02:34:31 +02:00
# elif ENABLED(U8GLIB_ST7565_64128N)
2018-03-20 21:53:21 +01:00
// The MaKrPanel, Mini Viki, Viki 2.0 & AZSMZ 12864 ST7565 controller
# define SMART_RAMPS (MB(RAMPS_SMART_EFB) || MB(RAMPS_SMART_EEB) || MB(RAMPS_SMART_EFF) || MB(RAMPS_SMART_EEF) || MB(RAMPS_SMART_SF))
# if DOGLCD_SCK == SCK_PIN && DOGLCD_MOSI == MOSI_PIN && !SMART_RAMPS
2018-02-04 02:33:26 +01:00
U8GLIB_64128N_2X_HAL u8g ( DOGLCD_CS , DOGLCD_A0 ) ; // using HW-SPI
# else
2017-11-03 02:57:08 +01:00
U8GLIB_64128N_2X_HAL u8g ( DOGLCD_SCK , DOGLCD_MOSI , DOGLCD_CS , DOGLCD_A0 ) ; // using SW-SPI
2018-02-04 02:33:26 +01:00
# endif
2017-11-03 02:57:08 +01:00
2017-12-17 01:47:04 +01:00
# elif ENABLED(MKS_12864OLED_SSD1306)
// MKS 128x64 (SSD1306) OLED I2C LCD
U8GLIB_SSD1306_128X64 u8g ( DOGLCD_SCK , DOGLCD_MOSI , DOGLCD_CS , DOGLCD_A0 ) ; // 8 stripes
//U8GLIB_SSD1306_128X64_2X u8g(DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, DOGLCD_A0); // 4 stripes
2015-08-03 21:30:37 +02:00
# elif ENABLED(U8GLIB_SSD1306)
2015-05-31 18:53:29 +02:00
// Generic support for SSD1306 OLED I2C LCDs
2017-11-25 03:38:14 +01:00
//U8GLIB_SSD1306_128X64_2X_I2C_2_WIRE u8g(U8G_I2C_OPT_NONE | U8G_I2C_OPT_FAST); // 4 stripes
U8GLIB_SSD1306_128X64_2X u8g ( U8G_I2C_OPT_NONE | U8G_I2C_OPT_FAST ) ; // 4 stripes
2017-11-03 02:57:08 +01:00
2017-10-09 22:58:02 +02:00
# elif ENABLED(MKS_12864OLED)
// MKS 128x64 (SH1106) OLED I2C LCD
2017-11-03 02:57:08 +01:00
U8GLIB_SH1106_128X64 u8g ( DOGLCD_SCK , DOGLCD_MOSI , DOGLCD_CS , DOGLCD_A0 ) ; // 8 stripes
//U8GLIB_SH1106_128X64_2X u8g(DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, DOGLCD_A0); // 4 stripes
2016-05-31 20:47:37 +02:00
# elif ENABLED(U8GLIB_SH1106)
// Generic support for SH1106 OLED I2C LCDs
2017-11-25 03:38:14 +01:00
//U8GLIB_SH1106_128X64_2X_I2C_2_WIRE u8g(U8G_I2C_OPT_NONE | U8G_I2C_OPT_FAST); // 4 stripes
U8GLIB_SH1106_128X64_2X u8g ( U8G_I2C_OPT_NONE | U8G_I2C_OPT_FAST ) ; // 4 stripes
2018-02-06 05:25:49 +01:00
# elif ENABLED(U8GLIB_SSD1309)
// Generic support for SSD1309 OLED I2C LCDs
U8GLIB_SSD1309_128X64 u8g ( U8G_I2C_OPT_NONE | U8G_I2C_OPT_FAST ) ;
2015-08-03 21:30:37 +02:00
# elif ENABLED(MINIPANEL)
2015-07-23 10:12:19 +02:00
// The MINIPanel display
2017-11-03 02:57:08 +01:00
//U8GLIB_MINI12864 u8g(DOGLCD_CS, DOGLCD_A0); // 8 stripes
U8GLIB_MINI12864_2X u8g ( DOGLCD_CS , DOGLCD_A0 ) ; // 4 stripes
2018-07-26 12:52:22 +02:00
# elif ENABLED(U8GLIB_SH1106_EINSTART)
// Connected via motherboard header
2018-08-14 07:55:22 +02:00
U8GLIB_SH1106_128X64 u8g ( DOGLCD_SCK , DOGLCD_MOSI , DOGLCD_CS , LCD_PINS_DC , LCD_PINS_RS ) ;
2013-04-16 14:21:39 +02:00
# else
2015-04-08 07:04:10 +02:00
// for regular DOGM128 display with HW-SPI
2017-11-03 02:57:08 +01:00
//U8GLIB_DOGM128 u8g(DOGLCD_CS, DOGLCD_A0); // HW-SPI Com: CS, A0 // 8 stripes
U8GLIB_DOGM128_2X u8g ( DOGLCD_CS , DOGLCD_A0 ) ; // HW-SPI Com: CS, A0 // 4 stripes
2013-04-16 14:21:39 +02:00
# endif
2013-03-19 19:59:56 +01:00
2018-04-13 03:14:01 +02:00
U8GLIB * pu8g = & u8g ;
2015-04-27 12:15:36 +02:00
# ifndef LCD_PIXEL_WIDTH
# define LCD_PIXEL_WIDTH 128
# endif
# ifndef LCD_PIXEL_HEIGHT
# define LCD_PIXEL_HEIGHT 64
# endif
2018-04-13 03:14:01 +02:00
# include "lcdprint.h"
2015-03-13 14:26:58 +01:00
2018-01-10 06:41:14 +01:00
int16_t lcd_contrast ; // Initialized by settings.load()
2015-03-28 13:14:38 +01:00
static char currentfont = 0 ;
2015-03-10 22:34:56 +01:00
2016-11-24 01:28:25 +01:00
// The current graphical page being rendered
u8g_page_t & page = ( ( u8g_pb_t * ) ( ( u8g . getU8g ( ) ) - > dev - > dev_mem ) ) - > p ;
// For selective rendering within a Y range
# define PAGE_UNDER(yb) (u8g.getU8g()->current_page.y0 <= (yb))
# define PAGE_CONTAINS(ya, yb) (PAGE_UNDER(yb) && u8g.getU8g()->current_page.y1 >= (ya))
2016-11-24 07:54:21 +01:00
static void lcd_setFont ( const char font_nr ) {
switch ( font_nr ) {
2015-03-24 17:01:56 +01:00
case FONT_STATUSMENU : { u8g . setFont ( FONT_STATUSMENU_NAME ) ; currentfont = FONT_STATUSMENU ; } ; break ;
2018-04-13 03:14:01 +02:00
default :
2015-03-10 22:34:56 +01:00
case FONT_MENU : { u8g . setFont ( FONT_MENU_NAME ) ; currentfont = FONT_MENU ; } ; break ;
case FONT_SPECIAL : { u8g . setFont ( FONT_SPECIAL_NAME ) ; currentfont = FONT_SPECIAL ; } ; break ;
case FONT_MENU_EDIT : { u8g . setFont ( FONT_MENU_EDIT_NAME ) ; currentfont = FONT_MENU_EDIT ; } ; break ;
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)
void lcd_custom_bootscreen ( ) {
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-02-01 01:43:33 +01:00
CEILING ( CUSTOM_BOOTSCREEN_BMPWIDTH , 8 ) , CUSTOM_BOOTSCREEN_BMPHEIGHT , custom_start_bmp
) ;
2018-02-21 23:08:52 +01:00
# if ENABLED(CUSTOM_BOOTSCREEN_INVERTED)
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 ) ;
# endif
2017-07-02 07:35:41 +02:00
} while ( u8g . nextPage ( ) ) ;
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
void lcd_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
DOG_CHAR_HEIGHT
# 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 ) ;
2017-11-03 11:58:20 +01:00
lcd_setFont ( FONT_MENU ) ;
# ifndef STRING_SPLASH_LINE2
2018-02-01 01:43:33 +01:00
const uint8_t txt1X = width - ( sizeof ( STRING_SPLASH_LINE1 ) - 1 ) * ( DOG_CHAR_WIDTH ) ;
u8g . drawStr ( txt1X , ( height + DOG_CHAR_HEIGHT ) / 2 , STRING_SPLASH_LINE1 ) ;
2017-07-02 07:35:41 +02:00
# else
2018-02-01 01:43:33 +01:00
const uint8_t txt1X = ( width - ( sizeof ( STRING_SPLASH_LINE1 ) - 1 ) * ( DOG_CHAR_WIDTH ) ) / 2 ,
txt2X = ( width - ( sizeof ( STRING_SPLASH_LINE2 ) - 1 ) * ( DOG_CHAR_WIDTH ) ) / 2 ;
u8g . drawStr ( txt1X , height - ( DOG_CHAR_HEIGHT ) * 3 / 2 , STRING_SPLASH_LINE1 ) ;
u8g . drawStr ( txt2X , height - ( DOG_CHAR_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)
# include "dogm/status_screen_lite_ST7920.h"
# else
# include "dogm/status_screen_DOGM.h"
# endif
2017-04-16 06:45:15 +02:00
// Initialize or re-initialize the LCD
2015-04-08 07:04:10 +02:00
static void lcd_implementation_init ( ) {
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
2015-08-03 21:30:37 +02:00
# if DISABLED(MINIPANEL) // setContrast not working for Mini Panel
2015-10-03 08:08:58 +02:00
u8g . setContrast ( lcd_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
uxg_SetUtf8Fonts ( g_fontinfo , NUM_ARRAY ( 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
2016-07-10 04:50:45 +02:00
void lcd_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 {
lcd_setFont ( FONT_MENU ) ;
2018-04-13 03:14:01 +02:00
lcd_moveto ( 0 , h4 * 1 ) ;
lcd_put_u8str ( lcd_status_message ) ;
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
}
2017-03-18 16:15:54 +01:00
void lcd_implementation_clear ( ) { } // Automatically cleared by Picture Loop
2013-03-19 19:59:56 +01:00
2016-08-21 01:12:57 +02:00
# if ENABLED(ULTIPANEL)
2016-11-24 01:28:25 +01:00
uint8_t row_y1 , row_y2 ;
2017-02-18 06:57:13 +01:00
uint8_t constexpr row_height = DOG_CHAR_HEIGHT + 2 * ( TALL_FONT_CORRECTION ) ;
2017-05-26 20:01:02 +02:00
# if ENABLED(ADVANCED_PAUSE_FEATURE)
2017-02-18 06:57:13 +01:00
2018-01-04 12:06:34 +01:00
static void lcd_implementation_hotend_status ( const uint8_t row , const uint8_t extruder = active_extruder ) {
2017-02-18 06:57:13 +01:00
row_y1 = row * row_height + 1 ;
row_y2 = row_y1 + row_height - 1 ;
if ( ! PAGE_CONTAINS ( row_y1 + 1 , row_y2 + 2 ) ) return ;
2018-04-13 03:14:01 +02:00
lcd_moveto ( LCD_PIXEL_WIDTH - 11 * ( DOG_CHAR_WIDTH ) , row_y2 ) ;
lcd_put_wchar ( ' E ' ) ;
lcd_put_wchar ( ( char ) ( ' 1 ' + extruder ) ) ;
lcd_put_wchar ( ' ' ) ;
lcd_put_u8str ( itostr3 ( thermalManager . degHotend ( extruder ) ) ) ;
lcd_put_wchar ( ' / ' ) ;
2017-05-31 23:26:05 +02:00
2018-01-04 12:06:34 +01:00
if ( lcd_blink ( ) | | ! thermalManager . is_heater_idle ( extruder ) )
2018-04-13 03:14:01 +02:00
lcd_put_u8str ( itostr3 ( 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-04-13 03:14:01 +02:00
static bool lcd_implementation_mark_as_selected ( const uint8_t row , const bool isSelected ) {
2017-02-18 06:57:13 +01:00
row_y1 = row * row_height + 1 ;
row_y2 = row_y1 + row_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
2016-08-21 01:12:57 +02:00
if ( isSelected ) {
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
2017-02-18 06:57:13 +01:00
u8g . drawBox ( 0 , row_y1 + 2 , LCD_PIXEL_WIDTH , row_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 ;
lcd_moveto ( ( START_COL ) * ( DOG_CHAR_WIDTH ) , row_y2 ) ;
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-10-01 06:44:33 +02:00
static void lcd_implementation_drawmenu_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-04-13 03:14:01 +02:00
if ( lcd_implementation_mark_as_selected ( row , invert ) ) {
2016-07-09 03:18:40 +02:00
2018-04-13 03:14:01 +02:00
uint8_t n = LCD_PIXEL_WIDTH - ( DOG_CHAR_WIDTH ) * ( START_COL ) ; // 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-04-13 03:14:01 +02:00
if ( NULL ! = valstr ) {
n - = lcd_put_u8str_max ( valstr , n ) ;
}
2016-07-09 03:18:40 +02:00
2018-04-13 03:14:01 +02:00
while ( n - DOG_CHAR_WIDTH > 0 ) { 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-10-01 06:44:33 +02:00
static void lcd_implementation_drawmenu_generic ( const bool isSelected , const uint8_t row , PGM_P 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-04-13 03:14:01 +02:00
if ( lcd_implementation_mark_as_selected ( row , isSelected ) ) {
uint8_t n = LCD_WIDTH - ( START_COL ) - 2 ;
n * = DOG_CHAR_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
while ( n - DOG_CHAR_WIDTH > 0 ) { n - = lcd_put_wchar ( ' ' ) ; }
lcd_moveto ( LCD_PIXEL_WIDTH - ( DOG_CHAR_WIDTH ) , row_y2 ) ;
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
// Macros for specific types of menu items
2016-10-13 17:44:35 +02:00
# define lcd_implementation_drawmenu_back(sel, row, pstr, dummy) lcd_implementation_drawmenu_generic(sel, row, pstr, LCD_STR_UPLEVEL[0], LCD_STR_UPLEVEL[0])
2016-08-21 01:12:57 +02:00
# define lcd_implementation_drawmenu_submenu(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', LCD_STR_ARROW_RIGHT[0])
# define lcd_implementation_drawmenu_gcode(sel, row, pstr, gcode) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
# define lcd_implementation_drawmenu_function(sel, row, pstr, data) lcd_implementation_drawmenu_generic(sel, row, pstr, '>', ' ')
2015-01-10 03:16:56 +01:00
2016-08-21 01:12:57 +02:00
// Draw a menu item with an editable value
2018-10-01 06:44:33 +02:00
static void _drawmenu_setting_edit_generic ( const bool isSelected , const uint8_t row , PGM_P pstr , const char * const data , const bool pgm ) {
2018-04-13 03:14:01 +02:00
if ( lcd_implementation_mark_as_selected ( row , isSelected ) ) {
const uint8_t vallen = ( pgm ? utf8_strlen_P ( data ) : utf8_strlen ( ( char * ) data ) ) ;
uint8_t n = LCD_WIDTH - ( START_COL ) - 2 - vallen ;
n * = DOG_CHAR_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 ( ' : ' ) ;
while ( n - DOG_CHAR_WIDTH > 0 ) { n - = lcd_put_wchar ( ' ' ) ; }
lcd_moveto ( LCD_PIXEL_WIDTH - ( DOG_CHAR_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
}
// Macros for edit items
# define lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, data) _drawmenu_setting_edit_generic(sel, row, pstr, data, false)
# define lcd_implementation_drawmenu_setting_edit_generic_P(sel, row, pstr, data) _drawmenu_setting_edit_generic(sel, row, pstr, data, true)
2017-09-24 02:24:43 +02:00
# define DRAWMENU_SETTING_EDIT_GENERIC(_src) lcd_implementation_drawmenu_setting_edit_generic(sel, row, pstr, _src)
# define DRAW_BOOL_SETTING(sel, row, pstr, data) lcd_implementation_drawmenu_setting_edit_generic_P(sel, row, pstr, (*(data))?PSTR(MSG_ON):PSTR(MSG_OFF))
2016-08-21 01:12:57 +02:00
2018-10-01 06:44:33 +02:00
void lcd_implementation_drawedit ( PGM_P const pstr , const char * const value = NULL ) {
2018-04-13 03:14:01 +02:00
const uint8_t labellen = utf8_strlen_P ( pstr ) ,
vallen = utf8_strlen ( value ) ;
2016-12-05 14:14:11 +01:00
uint8_t rows = ( labellen > LCD_WIDTH - 2 - vallen ) ? 2 : 1 ;
2016-08-21 01:12:57 +02:00
# if ENABLED(USE_BIG_EDIT_FONT)
2018-02-20 13:45:11 +01:00
constexpr uint8_t lcd_width_edit = ( LCD_PIXEL_WIDTH ) / ( DOG_CHAR_WIDTH_EDIT ) ;
2018-02-09 00:59:03 +01:00
2016-12-05 04:09:12 +01:00
uint8_t lcd_width , char_width ;
2018-02-06 03:15:35 +01:00
if ( labellen < = lcd_width_edit - 1 ) {
if ( labellen + vallen + 2 > = lcd_width_edit ) rows = 2 ;
lcd_width = lcd_width_edit + 1 ;
2016-08-21 01:12:57 +02:00
char_width = DOG_CHAR_WIDTH_EDIT ;
2016-11-24 01:28:25 +01:00
lcd_setFont ( FONT_MENU_EDIT ) ;
2016-08-21 01:12:57 +02:00
}
else {
2016-11-24 01:28:25 +01:00
lcd_width = LCD_WIDTH - ( START_COL ) ;
char_width = DOG_CHAR_WIDTH ;
2016-08-21 01:12:57 +02:00
lcd_setFont ( FONT_MENU ) ;
}
2016-11-24 01:28:25 +01:00
# else
2016-12-05 04:09:12 +01:00
constexpr uint8_t lcd_width = LCD_WIDTH - ( START_COL ) ,
char_width = DOG_CHAR_WIDTH ;
2016-08-21 01:12:57 +02:00
# endif
2015-02-03 20:48:49 +01:00
2016-11-24 01:28:25 +01:00
// Center either one or two rows
2016-11-24 07:54:21 +01:00
const uint8_t segmentHeight = u8g . getHeight ( ) / ( rows + 1 ) ; // 1 / (rows+1) = 1/2 or 1/3
uint8_t baseline = segmentHeight + ( DOG_CHAR_HEIGHT_EDIT + 1 ) / 2 ;
2015-02-03 20:15:16 +01:00
2017-06-20 04:53:06 +02:00
bool onpage = PAGE_CONTAINS ( baseline + 1 - ( DOG_CHAR_HEIGHT_EDIT ) , baseline ) ;
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
2016-08-21 01:12:57 +02:00
if ( value ! = NULL ) {
2018-04-13 03:14:01 +02:00
lcd_put_wchar ( ' : ' ) ;
2017-06-20 04:53:06 +02:00
if ( rows = = 2 ) {
baseline + = segmentHeight ;
onpage = PAGE_CONTAINS ( baseline + 1 - ( DOG_CHAR_HEIGHT_EDIT ) , baseline ) ;
}
if ( onpage ) {
2018-04-13 03:14:01 +02:00
lcd_moveto ( ( ( lcd_width - 1 ) - ( vallen + 1 ) ) * char_width , baseline ) ; // Right-justified, leaving padded by spaces
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-10-01 06:44:33 +02:00
static void _drawmenu_sd ( const bool isSelected , 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
2016-11-24 01:28:25 +01:00
lcd_implementation_mark_as_selected ( row , isSelected ) ;
if ( ! PAGE_CONTAINS ( row_y1 , row_y2 ) ) return ;
2017-10-19 05:15:33 +02:00
constexpr uint8_t maxlen = LCD_WIDTH - ( START_COL ) - 1 ;
2018-07-13 08:44:27 +02:00
const char * outstr = theCard . longest_filename ( ) ;
if ( theCard . longFilename [ 0 ] ) {
2017-10-19 05:15:33 +02:00
# if ENABLED(SCROLL_LONG_FILENAMES)
if ( isSelected ) {
uint8_t name_hash = row ;
for ( uint8_t l = FILENAME_LENGTH ; l - - ; )
2018-07-13 08:44:27 +02:00
name_hash = ( ( name_hash < < 1 ) | ( name_hash > > 7 ) ) ^ theCard . filename [ l ] ; // rotate, xor
2017-10-19 05:15:33 +02:00
if ( filename_scroll_hash ! = name_hash ) { // If the hash changed...
filename_scroll_hash = name_hash ; // Save the new hash
2018-07-13 08:44:27 +02:00
filename_scroll_max = MAX ( 0 , utf8_strlen ( theCard . longFilename ) - maxlen ) ; // Update the scroll limit
2017-10-19 05:15:33 +02:00
filename_scroll_pos = 0 ; // Reset scroll to the start
lcd_status_update_delay = 8 ; // Don't scroll right away
}
outstr + = filename_scroll_pos ;
}
# else
2018-07-13 08:44:27 +02:00
theCard . longFilename [ maxlen ] = ' \0 ' ; // cutoff at screen edge
2017-10-19 05:15:33 +02:00
# endif
2016-08-21 01:12:57 +02:00
}
2013-03-19 19:59:56 +01:00
2018-04-13 03:14:01 +02:00
if ( isDir ) lcd_put_wchar ( LCD_STR_FOLDER [ 0 ] ) ;
2016-11-24 01:28:25 +01:00
2018-04-13 03:14:01 +02:00
int n ;
n = lcd_put_u8str_max ( outstr , maxlen * ( DOG_CHAR_WIDTH ) ) ;
n = maxlen * ( DOG_CHAR_WIDTH ) - n ;
while ( n - DOG_CHAR_WIDTH > 0 ) { n - = lcd_put_wchar ( ' ' ) ; }
2015-09-11 11:18:42 +02:00
}
2013-03-19 19:59:56 +01:00
2018-07-13 08:44:27 +02:00
# define lcd_implementation_drawmenu_sdfile(sel, row, pstr, theCard) _drawmenu_sd(sel, row, pstr, theCard, false)
# define lcd_implementation_drawmenu_sddirectory(sel, row, pstr, theCard) _drawmenu_sd(sel, row, pstr, theCard, true)
2015-09-11 11:18:42 +02: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
void lcd_implementation_ubl_plot ( const uint8_t x_plot , const uint8_t y_plot ) {
// 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
2016-08-21 01:12:57 +02:00
# endif // ULTIPANEL
2013-03-19 19:59:56 +01:00
2017-05-09 19:35:43 +02:00
# endif // __ULTRALCD_IMPL_DOGM_H