2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-10-24 09:27:19 +02:00
|
|
|
#include "../../inc/MarlinConfigPre.h"
|
|
|
|
|
2018-10-30 22:34:45 +01:00
|
|
|
#if HAS_CHARACTER_LCD
|
2013-10-20 12:12:35 +02:00
|
|
|
|
|
|
|
/**
|
2018-11-19 03:39:49 +01:00
|
|
|
* ultralcd_HD44780.cpp
|
2018-10-24 09:27:19 +02:00
|
|
|
*
|
2018-11-09 07:07:16 +01:00
|
|
|
* LCD display implementations for Hitachi HD44780.
|
2016-08-21 01:05:54 +02:00
|
|
|
* These are the most common LCD character displays.
|
|
|
|
*/
|
2013-10-20 12:12:35 +02:00
|
|
|
|
2018-11-13 08:47:45 +01:00
|
|
|
#include "ultralcd_HD44780.h"
|
2018-10-24 09:27:19 +02:00
|
|
|
#include "../ultralcd.h"
|
|
|
|
|
|
|
|
#include "../../sd/cardreader.h"
|
|
|
|
#include "../../module/temperature.h"
|
|
|
|
#include "../../module/printcounter.h"
|
|
|
|
#include "../../module/planner.h"
|
|
|
|
#include "../../module/motion.h"
|
2013-10-20 12:12:35 +02:00
|
|
|
|
2018-11-19 02:58:02 +01:00
|
|
|
#if DISABLED(LCD_PROGRESS_BAR) && ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
|
|
|
|
#include "../../feature/filwidth.h"
|
|
|
|
#include "../../gcode/parser.h"
|
|
|
|
#endif
|
|
|
|
|
2018-10-30 22:34:45 +01:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
|
|
|
#include "../../feature/bedlevel/ubl/ubl.h"
|
|
|
|
#endif
|
|
|
|
|
2018-11-09 07:07:16 +01:00
|
|
|
//
|
|
|
|
// Create LCD instance and chipset-specific information
|
|
|
|
//
|
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#if ENABLED(LCD_I2C_TYPE_PCF8575)
|
2018-11-09 07:07:16 +01:00
|
|
|
|
2015-10-03 08:08:58 +02:00
|
|
|
LCD_CLASS lcd(LCD_I2C_ADDRESS, LCD_I2C_PIN_EN, LCD_I2C_PIN_RW, LCD_I2C_PIN_RS, LCD_I2C_PIN_D4, LCD_I2C_PIN_D5, LCD_I2C_PIN_D6, LCD_I2C_PIN_D7);
|
2015-05-13 11:02:19 +02:00
|
|
|
|
2018-11-09 07:07:16 +01:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_MCP23017) || ENABLED(LCD_I2C_TYPE_MCP23008)
|
2015-05-13 11:02:19 +02:00
|
|
|
|
2018-11-09 07:07:16 +01:00
|
|
|
LCD_CLASS lcd(LCD_I2C_ADDRESS
|
|
|
|
#ifdef DETECT_DEVICE
|
|
|
|
, 1
|
|
|
|
#endif
|
|
|
|
);
|
2013-10-20 12:12:35 +02:00
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_PCA8574)
|
2018-11-09 07:07:16 +01:00
|
|
|
|
2015-10-03 08:08:58 +02:00
|
|
|
LCD_CLASS lcd(LCD_I2C_ADDRESS, LCD_WIDTH, LCD_HEIGHT);
|
2015-05-13 11:02:19 +02:00
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#elif ENABLED(SR_LCD_2W_NL)
|
2018-11-09 07:07:16 +01:00
|
|
|
|
|
|
|
// 2 wire Non-latching LCD SR from:
|
|
|
|
// https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/schematics#!shiftregister-connection
|
|
|
|
|
|
|
|
LCD_CLASS lcd(SR_DATA_PIN, SR_CLK_PIN
|
|
|
|
#if PIN_EXISTS(SR_STROBE)
|
|
|
|
, SR_STROBE_PIN
|
|
|
|
#endif
|
|
|
|
);
|
2018-04-13 03:14:01 +02:00
|
|
|
|
2016-03-19 23:25:51 +01:00
|
|
|
#elif ENABLED(LCM1602)
|
2018-11-09 07:07:16 +01:00
|
|
|
|
2016-03-19 23:25:51 +01:00
|
|
|
LCD_CLASS lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
|
2018-04-13 03:14:01 +02:00
|
|
|
|
2013-10-20 12:12:35 +02:00
|
|
|
#else
|
2018-11-09 07:07:16 +01:00
|
|
|
|
|
|
|
// Standard direct-connected LCD implementations
|
|
|
|
LCD_CLASS lcd(LCD_PINS_RS, LCD_PINS_ENABLE, LCD_PINS_D4, LCD_PINS_D5, LCD_PINS_D6, LCD_PINS_D7);
|
|
|
|
|
2013-10-20 12:12:35 +02:00
|
|
|
#endif
|
|
|
|
|
2017-06-06 00:41:38 +02:00
|
|
|
static void createChar_P(const char c, const byte * const ptr) {
|
2017-06-06 00:02:00 +02:00
|
|
|
byte temp[8];
|
2017-06-06 00:41:38 +02:00
|
|
|
for (uint8_t i = 0; i < 8; i++)
|
2017-06-06 00:02:00 +02:00
|
|
|
temp[i] = pgm_read_byte(&ptr[i]);
|
|
|
|
lcd.createChar(c, temp);
|
|
|
|
}
|
|
|
|
|
2018-10-30 22:34:45 +01:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
|
|
|
#define LCD_STR_PROGRESS "\x03\x04\x05"
|
|
|
|
#endif
|
|
|
|
|
2018-11-19 02:58:02 +01:00
|
|
|
void MarlinUI::set_custom_characters(const HD44780CharSet screen_charset/*=CHARSET_INFO*/) {
|
|
|
|
#if DISABLED(LCD_PROGRESS_BAR) && DISABLED(SHOW_BOOTSCREEN)
|
|
|
|
UNUSED(screen_charset);
|
2017-06-06 00:41:38 +02:00
|
|
|
#endif
|
2018-11-19 02:58:02 +01:00
|
|
|
|
2017-11-23 01:22:55 +01:00
|
|
|
// CHARSET_BOOT
|
|
|
|
#if ENABLED(SHOW_BOOTSCREEN)
|
|
|
|
const static PROGMEM byte corner[4][8] = { {
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00001,
|
|
|
|
B00010,
|
|
|
|
B00100,
|
|
|
|
B00100
|
|
|
|
}, {
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B11100,
|
|
|
|
B11100,
|
|
|
|
B01100,
|
|
|
|
B00100,
|
|
|
|
B00100
|
|
|
|
}, {
|
|
|
|
B00100,
|
|
|
|
B00010,
|
|
|
|
B00001,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000
|
|
|
|
}, {
|
|
|
|
B00100,
|
|
|
|
B01000,
|
|
|
|
B10000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000
|
|
|
|
} };
|
|
|
|
#endif // SHOW_BOOTSCREEN
|
|
|
|
|
|
|
|
// CHARSET_INFO
|
2017-06-06 00:41:38 +02:00
|
|
|
const static PROGMEM byte bedTemp[8] = {
|
2014-12-28 07:26:14 +01:00
|
|
|
B00000,
|
|
|
|
B11111,
|
|
|
|
B10101,
|
|
|
|
B10001,
|
|
|
|
B10101,
|
|
|
|
B11111,
|
|
|
|
B00000,
|
|
|
|
B00000
|
2017-06-06 00:41:38 +02:00
|
|
|
};
|
2017-06-06 00:02:00 +02:00
|
|
|
|
2017-06-06 00:41:38 +02:00
|
|
|
const static PROGMEM byte degree[8] = {
|
2014-12-28 07:26:14 +01:00
|
|
|
B01100,
|
|
|
|
B10010,
|
|
|
|
B10010,
|
|
|
|
B01100,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000
|
|
|
|
};
|
2017-06-06 00:02:00 +02:00
|
|
|
|
2017-06-06 00:41:38 +02:00
|
|
|
const static PROGMEM byte thermometer[8] = {
|
2014-12-28 07:26:14 +01:00
|
|
|
B00100,
|
|
|
|
B01010,
|
|
|
|
B01010,
|
|
|
|
B01010,
|
|
|
|
B01010,
|
|
|
|
B10001,
|
|
|
|
B10001,
|
|
|
|
B01110
|
|
|
|
};
|
2017-06-06 00:02:00 +02:00
|
|
|
|
2017-06-06 00:41:38 +02:00
|
|
|
const static PROGMEM byte uplevel[8] = {
|
2016-10-15 04:30:41 +02:00
|
|
|
B00100,
|
|
|
|
B01110,
|
|
|
|
B11111,
|
|
|
|
B00100,
|
|
|
|
B11100,
|
|
|
|
B00000,
|
|
|
|
B00000,
|
|
|
|
B00000
|
2017-06-06 00:41:38 +02:00
|
|
|
};
|
2017-06-06 00:02:00 +02:00
|
|
|
|
2017-06-06 00:41:38 +02:00
|
|
|
const static PROGMEM byte feedrate[8] = {
|
2018-10-18 18:34:52 +02:00
|
|
|
#if LCD_INFO_SCREEN_STYLE == 1
|
|
|
|
B00000,
|
|
|
|
B00100,
|
|
|
|
B10010,
|
|
|
|
B01001,
|
|
|
|
B10010,
|
|
|
|
B00100,
|
|
|
|
B00000,
|
|
|
|
B00000
|
|
|
|
#else
|
|
|
|
B11100,
|
|
|
|
B10000,
|
|
|
|
B11000,
|
|
|
|
B10111,
|
|
|
|
B00101,
|
|
|
|
B00110,
|
|
|
|
B00101,
|
|
|
|
B00000
|
|
|
|
#endif
|
2017-06-06 00:41:38 +02:00
|
|
|
};
|
2017-06-06 00:02:00 +02:00
|
|
|
|
2017-06-06 00:41:38 +02:00
|
|
|
const static PROGMEM byte clock[8] = {
|
2014-12-28 07:26:14 +01:00
|
|
|
B00000,
|
|
|
|
B01110,
|
|
|
|
B10011,
|
|
|
|
B10101,
|
|
|
|
B10001,
|
|
|
|
B01110,
|
|
|
|
B00000,
|
|
|
|
B00000
|
2017-06-06 00:41:38 +02:00
|
|
|
};
|
2014-12-28 07:26:14 +01:00
|
|
|
|
2018-02-24 01:53:04 +01:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
|
|
|
|
|
|
|
// CHARSET_INFO
|
|
|
|
const static PROGMEM byte progress[3][8] = { {
|
|
|
|
B00000,
|
|
|
|
B10000,
|
|
|
|
B10000,
|
|
|
|
B10000,
|
|
|
|
B10000,
|
|
|
|
B10000,
|
|
|
|
B10000,
|
|
|
|
B00000
|
|
|
|
}, {
|
|
|
|
B00000,
|
|
|
|
B10100,
|
|
|
|
B10100,
|
|
|
|
B10100,
|
|
|
|
B10100,
|
|
|
|
B10100,
|
|
|
|
B10100,
|
|
|
|
B00000
|
|
|
|
}, {
|
|
|
|
B00000,
|
|
|
|
B10101,
|
|
|
|
B10101,
|
|
|
|
B10101,
|
|
|
|
B10101,
|
|
|
|
B10101,
|
|
|
|
B10101,
|
|
|
|
B00000
|
|
|
|
} };
|
|
|
|
|
|
|
|
#endif // LCD_PROGRESS_BAR
|
|
|
|
|
2017-06-06 00:41:38 +02:00
|
|
|
#if ENABLED(SDSUPPORT)
|
2017-11-23 01:22:55 +01:00
|
|
|
|
|
|
|
// CHARSET_MENU
|
2017-06-06 00:41:38 +02:00
|
|
|
const static PROGMEM byte refresh[8] = {
|
2016-08-07 01:05:41 +02:00
|
|
|
B00000,
|
|
|
|
B00110,
|
|
|
|
B11001,
|
|
|
|
B11000,
|
|
|
|
B00011,
|
|
|
|
B10011,
|
|
|
|
B01100,
|
|
|
|
B00000,
|
2017-06-06 00:41:38 +02:00
|
|
|
};
|
|
|
|
const static PROGMEM byte folder[8] = {
|
2016-08-07 01:05:41 +02:00
|
|
|
B00000,
|
|
|
|
B11100,
|
|
|
|
B11111,
|
|
|
|
B10001,
|
|
|
|
B10001,
|
|
|
|
B11111,
|
2014-12-28 07:26:14 +01:00
|
|
|
B00000,
|
|
|
|
B00000
|
2017-06-06 00:41:38 +02:00
|
|
|
};
|
2016-08-07 01:05:41 +02:00
|
|
|
|
2017-11-23 01:22:55 +01:00
|
|
|
#endif // SDSUPPORT
|
2016-08-07 01:05:41 +02:00
|
|
|
|
2018-03-07 23:40:59 +01:00
|
|
|
#if ENABLED(SHOW_BOOTSCREEN)
|
|
|
|
// Set boot screen corner characters
|
|
|
|
if (screen_charset == CHARSET_BOOT) {
|
|
|
|
for (uint8_t i = 4; i--;)
|
|
|
|
createChar_P(i, corner[i]);
|
|
|
|
}
|
|
|
|
else
|
2014-12-28 07:26:14 +01:00
|
|
|
#endif
|
2018-03-07 23:40:59 +01:00
|
|
|
{ // Info Screen uses 5 special characters
|
2018-11-14 20:13:51 +01:00
|
|
|
createChar_P(LCD_STR_BEDTEMP[0], bedTemp);
|
|
|
|
createChar_P(LCD_STR_DEGREE[0], degree);
|
2018-03-07 23:40:59 +01:00
|
|
|
createChar_P(LCD_STR_THERMOMETER[0], thermometer);
|
2018-11-14 20:13:51 +01:00
|
|
|
createChar_P(LCD_STR_FEEDRATE[0], feedrate);
|
|
|
|
createChar_P(LCD_STR_CLOCK[0], clock);
|
2018-03-07 23:40:59 +01:00
|
|
|
|
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
|
|
|
if (screen_charset == CHARSET_INFO) { // 3 Progress bar characters for info screen
|
|
|
|
for (int16_t i = 3; i--;)
|
|
|
|
createChar_P(LCD_STR_PROGRESS[i], progress[i]);
|
2017-11-23 01:22:55 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2018-03-07 23:40:59 +01:00
|
|
|
{
|
2018-11-14 20:13:51 +01:00
|
|
|
createChar_P(LCD_STR_UPLEVEL[0], uplevel);
|
2018-03-07 23:40:59 +01:00
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
// SD Card sub-menu special characters
|
|
|
|
createChar_P(LCD_STR_REFRESH[0], refresh);
|
|
|
|
createChar_P(LCD_STR_FOLDER[0], folder);
|
2018-02-17 15:01:36 +01:00
|
|
|
#endif
|
2017-11-23 01:22:55 +01:00
|
|
|
}
|
2018-03-07 23:40:59 +01:00
|
|
|
}
|
|
|
|
|
2014-12-28 07:26:14 +01:00
|
|
|
}
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::init_lcd() {
|
2013-10-20 12:12:35 +02:00
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#if ENABLED(LCD_I2C_TYPE_PCF8575)
|
2013-10-20 12:12:35 +02:00
|
|
|
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
2015-05-13 11:02:19 +02:00
|
|
|
#ifdef LCD_I2C_PIN_BL
|
|
|
|
lcd.setBacklightPin(LCD_I2C_PIN_BL, POSITIVE);
|
2016-03-25 14:49:55 +01:00
|
|
|
lcd.setBacklight(HIGH);
|
2015-05-13 11:02:19 +02:00
|
|
|
#endif
|
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_MCP23017)
|
2013-10-20 12:12:35 +02:00
|
|
|
lcd.setMCPType(LTI_TYPE_MCP23017);
|
|
|
|
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
2018-11-11 19:16:24 +01:00
|
|
|
update_indicators();
|
2015-05-13 11:02:19 +02:00
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_MCP23008)
|
2013-10-20 12:12:35 +02:00
|
|
|
lcd.setMCPType(LTI_TYPE_MCP23008);
|
|
|
|
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#elif ENABLED(LCD_I2C_TYPE_PCA8574)
|
2015-05-13 11:02:19 +02:00
|
|
|
lcd.init();
|
|
|
|
lcd.backlight();
|
|
|
|
|
|
|
|
#else
|
2013-10-20 12:12:35 +02:00
|
|
|
lcd.begin(LCD_WIDTH, LCD_HEIGHT);
|
2015-05-13 11:02:19 +02:00
|
|
|
#endif
|
2013-10-20 12:12:35 +02:00
|
|
|
|
2018-11-19 02:58:02 +01:00
|
|
|
set_custom_characters(on_status_screen() ? CHARSET_INFO : CHARSET_MENU);
|
2014-12-28 07:26:14 +01:00
|
|
|
|
2015-05-13 11:02:19 +02:00
|
|
|
lcd.clear();
|
2013-10-20 12:12:35 +02:00
|
|
|
}
|
2015-03-10 18:30:09 +01:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::clear_lcd() { lcd.clear(); }
|
2015-05-13 11:02:19 +02:00
|
|
|
|
2015-07-31 16:24:20 +02:00
|
|
|
#if ENABLED(SHOW_BOOTSCREEN)
|
2016-02-06 23:38:11 +01:00
|
|
|
|
2017-06-20 05:39:23 +02:00
|
|
|
void lcd_erase_line(const int16_t line) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, line);
|
2016-11-24 07:54:21 +01:00
|
|
|
for (uint8_t i = LCD_WIDTH + 1; --i;)
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(' ');
|
2015-07-31 23:29:52 +02:00
|
|
|
}
|
|
|
|
|
2015-10-03 08:08:58 +02:00
|
|
|
// Scroll the PSTR 'text' in a 'len' wide field for 'time' milliseconds at position col,line
|
2018-10-01 06:44:33 +02:00
|
|
|
void lcd_scroll(const uint8_t col, const uint8_t line, PGM_P const text, const uint8_t len, const int16_t time) {
|
2018-05-26 06:32:37 +02:00
|
|
|
uint8_t slen = utf8_strlen_P(text);
|
|
|
|
if (slen < len) {
|
|
|
|
// Fits into,
|
|
|
|
lcd_moveto(col, line);
|
|
|
|
lcd_put_u8str_max_P(text, len);
|
2018-11-17 04:44:48 +01:00
|
|
|
for (; slen < len; ++slen) lcd_put_wchar(' ');
|
2018-05-26 06:32:37 +02:00
|
|
|
safe_delay(time);
|
|
|
|
}
|
|
|
|
else {
|
2018-10-01 06:44:33 +02:00
|
|
|
PGM_P p = text;
|
2018-05-26 06:32:37 +02:00
|
|
|
int dly = time / MAX(slen, 1);
|
|
|
|
for (uint8_t i = 0; i <= slen; i++) {
|
|
|
|
|
|
|
|
// Go to the correct place
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(col, line);
|
2018-05-26 06:32:37 +02:00
|
|
|
|
|
|
|
// Print the text
|
|
|
|
lcd_put_u8str_max_P(p, len);
|
|
|
|
|
|
|
|
// Fill with spaces
|
2018-11-17 04:44:48 +01:00
|
|
|
for (uint8_t ix = slen - i; ix < len; ++ix) lcd_put_wchar(' ');
|
2018-05-26 06:32:37 +02:00
|
|
|
|
|
|
|
// Delay
|
|
|
|
safe_delay(dly);
|
|
|
|
|
|
|
|
// Advance to the next UTF8 valid position
|
|
|
|
p++;
|
|
|
|
while (!START_OF_UTF8_CHAR(pgm_read_byte(p))) p++;
|
2018-04-13 03:14:01 +02:00
|
|
|
}
|
2018-05-26 06:32:37 +02:00
|
|
|
}
|
2015-07-31 23:29:52 +02:00
|
|
|
}
|
|
|
|
|
2018-10-01 06:44:33 +02:00
|
|
|
static void logo_lines(PGM_P const extra) {
|
2018-04-13 03:14:01 +02:00
|
|
|
int16_t indent = (LCD_WIDTH - 8 - utf8_strlen_P(extra)) / 2;
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_moveto(indent, 0); lcd_put_wchar('\x00'); lcd_put_u8str_P(PSTR( "------" )); lcd_put_wchar('\x01');
|
|
|
|
lcd_moveto(indent, 1); lcd_put_u8str_P(PSTR("|Marlin|")); lcd_put_u8str_P(extra);
|
|
|
|
lcd_moveto(indent, 2); lcd_put_wchar('\x02'); lcd_put_u8str_P(PSTR( "------" )); lcd_put_wchar('\x03');
|
2016-02-06 22:57:12 +01:00
|
|
|
}
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::show_bootscreen() {
|
2018-11-19 02:58:02 +01:00
|
|
|
set_custom_characters(CHARSET_BOOT);
|
2015-07-31 16:24:20 +02:00
|
|
|
lcd.clear();
|
2015-07-31 23:29:52 +02:00
|
|
|
|
2016-02-06 22:57:12 +01:00
|
|
|
#define LCD_EXTRA_SPACE (LCD_WIDTH-8)
|
2015-07-31 16:24:20 +02:00
|
|
|
|
2016-04-17 08:50:36 +02:00
|
|
|
#define CENTER_OR_SCROLL(STRING,DELAY) \
|
|
|
|
lcd_erase_line(3); \
|
2018-04-13 03:14:01 +02:00
|
|
|
if (utf8_strlen(STRING) <= LCD_WIDTH) { \
|
|
|
|
lcd_moveto((LCD_WIDTH - utf8_strlen_P(PSTR(STRING))) / 2, 3); \
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_put_u8str_P(PSTR(STRING)); \
|
2016-06-15 18:11:55 +02:00
|
|
|
safe_delay(DELAY); \
|
2016-04-17 08:50:36 +02:00
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
lcd_scroll(0, 3, PSTR(STRING), LCD_WIDTH, DELAY); \
|
|
|
|
}
|
|
|
|
|
2015-08-03 11:23:42 +02:00
|
|
|
#ifdef STRING_SPLASH_LINE1
|
2016-04-17 08:50:36 +02:00
|
|
|
//
|
|
|
|
// Show the Marlin logo with splash line 1
|
|
|
|
//
|
2018-04-13 03:14:01 +02:00
|
|
|
if (LCD_EXTRA_SPACE >= utf8_strlen(STRING_SPLASH_LINE1) + 1) {
|
2016-04-17 08:50:36 +02:00
|
|
|
//
|
|
|
|
// Show the Marlin logo, splash line1, and splash line 2
|
|
|
|
//
|
2016-02-06 22:57:12 +01:00
|
|
|
logo_lines(PSTR(" " STRING_SPLASH_LINE1));
|
|
|
|
#ifdef STRING_SPLASH_LINE2
|
2016-04-17 08:50:36 +02:00
|
|
|
CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 2000);
|
2016-02-06 22:57:12 +01:00
|
|
|
#else
|
2016-06-15 18:11:55 +02:00
|
|
|
safe_delay(2000);
|
2016-02-06 22:57:12 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else {
|
2016-04-17 08:50:36 +02:00
|
|
|
//
|
|
|
|
// Show the Marlin logo with splash line 1
|
|
|
|
// After a delay show splash line 2, if it exists
|
|
|
|
//
|
|
|
|
#ifdef STRING_SPLASH_LINE2
|
|
|
|
#define _SPLASH_WAIT_1 1500
|
|
|
|
#else
|
|
|
|
#define _SPLASH_WAIT_1 2000
|
|
|
|
#endif
|
2016-02-06 22:57:12 +01:00
|
|
|
logo_lines(PSTR(""));
|
2016-04-17 08:50:36 +02:00
|
|
|
CENTER_OR_SCROLL(STRING_SPLASH_LINE1, _SPLASH_WAIT_1);
|
2016-02-06 22:57:12 +01:00
|
|
|
#ifdef STRING_SPLASH_LINE2
|
2016-04-17 08:50:36 +02:00
|
|
|
CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 1500);
|
2018-11-11 19:16:24 +01:00
|
|
|
#ifdef STRING_SPLASH_LINE3
|
|
|
|
CENTER_OR_SCROLL(STRING_SPLASH_LINE3, 1500);
|
|
|
|
#endif
|
2016-02-06 22:57:12 +01:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#elif defined(STRING_SPLASH_LINE2)
|
2016-04-17 08:50:36 +02:00
|
|
|
//
|
|
|
|
// Show splash line 2 only, alongside the logo if possible
|
|
|
|
//
|
2018-04-13 03:14:01 +02:00
|
|
|
if (LCD_EXTRA_SPACE >= utf8_strlen(STRING_SPLASH_LINE2) + 1) {
|
2016-02-06 22:57:12 +01:00
|
|
|
logo_lines(PSTR(" " STRING_SPLASH_LINE2));
|
2016-06-15 18:11:55 +02:00
|
|
|
safe_delay(2000);
|
2016-02-06 22:57:12 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
logo_lines(PSTR(""));
|
2016-04-17 08:50:36 +02:00
|
|
|
CENTER_OR_SCROLL(STRING_SPLASH_LINE2, 2000);
|
2016-02-06 22:57:12 +01:00
|
|
|
}
|
|
|
|
#else
|
2016-04-17 08:50:36 +02:00
|
|
|
//
|
|
|
|
// Show only the Marlin logo
|
|
|
|
//
|
2016-02-06 22:57:12 +01:00
|
|
|
logo_lines(PSTR(""));
|
2016-06-15 18:11:55 +02:00
|
|
|
safe_delay(2000);
|
2015-07-31 16:24:20 +02:00
|
|
|
#endif
|
2016-08-07 01:05:41 +02:00
|
|
|
|
2016-12-20 06:35:25 +01:00
|
|
|
lcd.clear();
|
2017-04-26 06:37:28 +02:00
|
|
|
safe_delay(100);
|
2018-11-19 02:58:02 +01:00
|
|
|
set_custom_characters(CHARSET_INFO);
|
2017-11-27 03:07:17 +01:00
|
|
|
lcd.clear();
|
2015-07-31 16:24:20 +02:00
|
|
|
}
|
2016-02-06 23:38:11 +01:00
|
|
|
|
2015-07-31 16:24:20 +02:00
|
|
|
#endif // SHOW_BOOTSCREEN
|
2016-02-06 23:38:11 +01:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::draw_kill_screen() {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, 0);
|
2018-11-11 19:16:24 +01:00
|
|
|
lcd_put_u8str(status_message);
|
2016-07-10 04:50:45 +02:00
|
|
|
#if LCD_HEIGHT < 4
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, 2);
|
2016-07-10 04:50:45 +02:00
|
|
|
#else
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, 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, 3);
|
2016-07-10 04:50:45 +02:00
|
|
|
#endif
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_put_u8str_P(PSTR(MSG_PLEASE_RESET));
|
2016-07-10 04:50:45 +02:00
|
|
|
}
|
|
|
|
|
2018-05-10 08:19:20 +02:00
|
|
|
//
|
|
|
|
// Before homing, blink '123' <-> '???'.
|
|
|
|
// Homed but unknown... '123' <-> ' '.
|
|
|
|
// Homed and known, display constantly.
|
|
|
|
//
|
|
|
|
FORCE_INLINE void _draw_axis_value(const AxisEnum axis, const char *value, const bool blink) {
|
|
|
|
lcd_put_wchar('X' + uint8_t(axis));
|
2016-04-19 04:45:55 +02:00
|
|
|
if (blink)
|
2018-05-10 08:19:20 +02:00
|
|
|
lcd_put_u8str(value);
|
2016-04-19 04:45:55 +02:00
|
|
|
else {
|
2018-06-12 04:29:31 +02:00
|
|
|
if (!TEST(axis_homed, axis))
|
2018-05-10 08:19:20 +02:00
|
|
|
while (const char c = *value++) lcd_put_wchar(c <= '.' ? c : '?');
|
2016-04-19 04:45:55 +02:00
|
|
|
else {
|
2017-10-07 22:02:55 +02:00
|
|
|
#if DISABLED(HOME_AFTER_DEACTIVATE) && DISABLED(DISABLE_REDUCED_ACCURACY_WARNING)
|
2018-06-12 04:29:31 +02:00
|
|
|
if (!TEST(axis_known_position, axis))
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_put_u8str_P(axis == Z_AXIS ? PSTR(" ") : PSTR(" "));
|
2016-04-19 04:45:55 +02:00
|
|
|
else
|
|
|
|
#endif
|
2018-05-10 08:19:20 +02:00
|
|
|
lcd_put_u8str(value);
|
2016-04-19 04:45:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-26 20:01:02 +02:00
|
|
|
FORCE_INLINE void _draw_heater_status(const int8_t heater, const char prefix, const bool blink) {
|
2018-04-24 00:13:01 +02:00
|
|
|
#if HAS_HEATED_BED
|
2017-12-29 03:17:12 +01:00
|
|
|
const bool isBed = heater < 0;
|
2018-04-24 00:13:01 +02:00
|
|
|
const float t1 = (isBed ? thermalManager.degBed() : thermalManager.degHotend(heater)),
|
|
|
|
t2 = (isBed ? thermalManager.degTargetBed() : thermalManager.degTargetHotend(heater));
|
2017-12-29 03:17:12 +01:00
|
|
|
#else
|
2018-04-24 00:13:01 +02:00
|
|
|
const float t1 = thermalManager.degHotend(heater), t2 = thermalManager.degTargetHotend(heater);
|
2017-12-29 03:17:12 +01:00
|
|
|
#endif
|
2017-05-26 20:01:02 +02:00
|
|
|
|
2018-04-13 03:14:01 +02:00
|
|
|
if (prefix >= 0) lcd_put_wchar(prefix);
|
2017-05-26 20:01:02 +02:00
|
|
|
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_u8str(itostr3(t1 + 0.5));
|
|
|
|
lcd_put_wchar('/');
|
2017-05-26 20:01:02 +02:00
|
|
|
|
2017-11-03 05:59:42 +01:00
|
|
|
#if !HEATER_IDLE_HANDLER
|
|
|
|
UNUSED(blink);
|
|
|
|
#else
|
2018-04-24 00:13:01 +02:00
|
|
|
const bool is_idle = (
|
|
|
|
#if HAS_HEATED_BED
|
|
|
|
isBed ? thermalManager.is_bed_idle() :
|
2017-05-30 10:20:10 +02:00
|
|
|
#endif
|
2018-04-24 00:13:01 +02:00
|
|
|
thermalManager.is_heater_idle(heater)
|
2017-05-26 20:01:02 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
if (!blink && is_idle) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(' ');
|
|
|
|
if (t2 >= 10) lcd_put_wchar(' ');
|
|
|
|
if (t2 >= 100) lcd_put_wchar(' ');
|
2017-05-26 20:01:02 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_u8str(itostr3left(t2 + 0.5));
|
2017-05-26 20:01:02 +02:00
|
|
|
|
|
|
|
if (prefix >= 0) {
|
2018-11-14 20:13:51 +01:00
|
|
|
lcd_put_wchar(LCD_STR_DEGREE[0]);
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(' ');
|
|
|
|
if (t2 < 10) lcd_put_wchar(' ');
|
2017-05-26 20:01:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-18 18:34:52 +02:00
|
|
|
FORCE_INLINE void _draw_bed_status(const bool blink) {
|
|
|
|
_draw_heater_status(-1, (
|
|
|
|
#if HAS_LEVELING
|
|
|
|
planner.leveling_active && blink ? '_' :
|
|
|
|
#endif
|
2018-11-14 20:13:51 +01:00
|
|
|
LCD_STR_BEDTEMP[0]
|
2018-10-18 18:34:52 +02:00
|
|
|
), blink);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAS_PRINT_PROGRESS
|
|
|
|
|
|
|
|
FORCE_INLINE void _draw_print_progress() {
|
2018-11-11 19:16:24 +01:00
|
|
|
const uint8_t progress = ui.get_progress();
|
2018-10-18 18:34:52 +02:00
|
|
|
lcd_put_u8str_P(PSTR(
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
"SD"
|
|
|
|
#elif ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
|
|
|
"P:"
|
|
|
|
#endif
|
|
|
|
));
|
2018-11-11 19:16:24 +01:00
|
|
|
if (progress)
|
|
|
|
lcd_put_u8str(itostr3(progress));
|
2018-10-18 18:34:52 +02:00
|
|
|
else
|
|
|
|
lcd_put_u8str_P(PSTR("---"));
|
|
|
|
lcd_put_wchar('%');
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-12-20 06:36:06 +01:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
|
|
|
|
2018-11-19 02:58:02 +01:00
|
|
|
void MarlinUI::draw_progress_bar(const uint8_t percent) {
|
2017-06-20 05:39:23 +02:00
|
|
|
const int16_t tix = (int16_t)(percent * (LCD_WIDTH) * 3) / 100,
|
2017-06-06 00:41:38 +02:00
|
|
|
cel = tix / 3,
|
|
|
|
rem = tix % 3;
|
|
|
|
uint8_t i = LCD_WIDTH;
|
2016-12-20 06:36:06 +01:00
|
|
|
char msg[LCD_WIDTH + 1], b = ' ';
|
2017-06-06 00:41:38 +02:00
|
|
|
msg[LCD_WIDTH] = '\0';
|
2016-12-20 06:36:06 +01:00
|
|
|
while (i--) {
|
|
|
|
if (i == cel - 1)
|
|
|
|
b = LCD_STR_PROGRESS[2];
|
|
|
|
else if (i == cel && rem != 0)
|
|
|
|
b = LCD_STR_PROGRESS[rem - 1];
|
|
|
|
msg[i] = b;
|
|
|
|
}
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_u8str(msg);
|
2016-12-20 06:36:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LCD_PROGRESS_BAR
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::draw_status_message(const bool blink) {
|
2018-10-18 18:34:52 +02:00
|
|
|
|
|
|
|
lcd_moveto(0, LCD_HEIGHT - 1);
|
|
|
|
|
|
|
|
#if ENABLED(LCD_PROGRESS_BAR)
|
|
|
|
|
|
|
|
// Draw the progress bar if the message has shown long enough
|
|
|
|
// or if there is no message set.
|
2018-11-11 19:16:24 +01:00
|
|
|
if (ELAPSED(millis(), progress_bar_ms + PROGRESS_BAR_MSG_TIME) || !has_status()) {
|
|
|
|
const uint8_t progress = get_progress();
|
2018-11-19 02:58:02 +01:00
|
|
|
if (progress > 2) return draw_progress_bar(progress);
|
2018-11-11 19:16:24 +01:00
|
|
|
}
|
2018-10-18 18:34:52 +02:00
|
|
|
|
|
|
|
#elif ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
// Alternate Status message and Filament display
|
|
|
|
if (ELAPSED(millis(), next_filament_display)) {
|
2018-10-18 18:34:52 +02:00
|
|
|
lcd_put_u8str_P(PSTR("Dia "));
|
|
|
|
lcd_put_u8str(ftostr12ns(filament_width_meas));
|
|
|
|
lcd_put_u8str_P(PSTR(" V"));
|
|
|
|
lcd_put_u8str(itostr3(100.0 * (
|
|
|
|
parser.volumetric_enabled
|
|
|
|
? planner.volumetric_area_nominal / planner.volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]
|
|
|
|
: planner.volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]
|
|
|
|
)
|
|
|
|
));
|
|
|
|
lcd_put_wchar('%');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // FILAMENT_LCD_DISPLAY && SDSUPPORT
|
|
|
|
|
|
|
|
#if ENABLED(STATUS_MESSAGE_SCROLLING)
|
|
|
|
static bool last_blink = false;
|
|
|
|
|
|
|
|
// Get the UTF8 character count of the string
|
2018-11-11 19:16:24 +01:00
|
|
|
uint8_t slen = utf8_strlen(status_message);
|
2018-10-18 18:34:52 +02:00
|
|
|
|
|
|
|
// If the string fits into the LCD, just print it and do not scroll it
|
|
|
|
if (slen <= LCD_WIDTH) {
|
|
|
|
|
|
|
|
// The string isn't scrolling and may not fill the screen
|
2018-11-11 19:16:24 +01:00
|
|
|
lcd_put_u8str(status_message);
|
2018-10-18 18:34:52 +02:00
|
|
|
|
|
|
|
// Fill the rest with spaces
|
|
|
|
while (slen < LCD_WIDTH) {
|
|
|
|
lcd_put_wchar(' ');
|
|
|
|
++slen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// String is larger than the available space in screen.
|
|
|
|
|
|
|
|
// Get a pointer to the next valid UTF8 character
|
2018-11-11 19:16:24 +01:00
|
|
|
const char *stat = status_message + status_scroll_offset;
|
2018-10-18 18:34:52 +02:00
|
|
|
|
|
|
|
// Get the string remaining length
|
|
|
|
const uint8_t rlen = utf8_strlen(stat);
|
|
|
|
|
|
|
|
// If we have enough characters to display
|
|
|
|
if (rlen >= LCD_WIDTH) {
|
|
|
|
// The remaining string fills the screen - Print it
|
|
|
|
lcd_put_u8str_max(stat, LCD_WIDTH);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
|
|
|
// The remaining string does not completely fill the screen
|
|
|
|
lcd_put_u8str_max(stat, LCD_WIDTH); // The string leaves space
|
|
|
|
uint8_t chars = LCD_WIDTH - rlen; // Amount of space left in characters
|
|
|
|
|
|
|
|
lcd_put_wchar('.'); // Always at 1+ spaces left, draw a dot
|
|
|
|
if (--chars) { // Draw a second dot if there's space
|
|
|
|
lcd_put_wchar('.');
|
|
|
|
if (--chars)
|
2018-11-11 19:16:24 +01:00
|
|
|
lcd_put_u8str_max(status_message, chars); // Print a second copy of the message
|
2018-10-18 18:34:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (last_blink != blink) {
|
|
|
|
last_blink = blink;
|
|
|
|
|
|
|
|
// Adjust by complete UTF8 characters
|
|
|
|
if (status_scroll_offset < slen) {
|
|
|
|
status_scroll_offset++;
|
2018-11-11 19:16:24 +01:00
|
|
|
while (!START_OF_UTF8_CHAR(status_message[status_scroll_offset]))
|
2018-10-18 18:34:52 +02:00
|
|
|
status_scroll_offset++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
status_scroll_offset = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
UNUSED(blink);
|
|
|
|
|
|
|
|
// Get the UTF8 character count of the string
|
2018-11-11 19:16:24 +01:00
|
|
|
uint8_t slen = utf8_strlen(status_message);
|
2018-10-18 18:34:52 +02:00
|
|
|
|
|
|
|
// Just print the string to the LCD
|
2018-11-11 19:16:24 +01:00
|
|
|
lcd_put_u8str_max(status_message, LCD_WIDTH);
|
2018-10-18 18:34:52 +02:00
|
|
|
|
|
|
|
// Fill the rest with spaces if there are missing spaces
|
|
|
|
while (slen < LCD_WIDTH) {
|
|
|
|
lcd_put_wchar(' ');
|
|
|
|
++slen;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
/**
|
|
|
|
* LCD_INFO_SCREEN_STYLE 0 : Classic Status Screen
|
|
|
|
*
|
|
|
|
* 16x2 |000/000 B000/000|
|
|
|
|
* |0123456789012345|
|
|
|
|
*
|
|
|
|
* 16x4 |000/000 B000/000|
|
|
|
|
* |SD---% Z 000.00|
|
|
|
|
* |F---% T--:--|
|
|
|
|
* |0123456789012345|
|
|
|
|
*
|
|
|
|
* 20x2 |T000/000° B000/000° |
|
|
|
|
* |01234567890123456789|
|
|
|
|
*
|
|
|
|
* 20x4 |T000/000° B000/000° |
|
|
|
|
* |X 000 Y 000 Z000.000|
|
|
|
|
* |F---% SD---% T--:--|
|
|
|
|
* |01234567890123456789|
|
|
|
|
*
|
|
|
|
* LCD_INFO_SCREEN_STYLE 1 : Prusa-style Status Screen
|
|
|
|
*
|
|
|
|
* |T000/000° Z 000.00 |
|
|
|
|
* |B000/000° F---% |
|
|
|
|
* |SD---% T--:-- |
|
|
|
|
* |01234567890123456789|
|
|
|
|
*
|
|
|
|
* |T000/000° Z 000.00 |
|
|
|
|
* |T000/000° F---% |
|
|
|
|
* |B000/000° SD---% |
|
|
|
|
* |01234567890123456789|
|
|
|
|
*/
|
|
|
|
|
|
|
|
void MarlinUI::draw_status_screen() {
|
2018-10-18 22:32:09 +02:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
const bool blink = get_blink();
|
|
|
|
lcd_moveto(0, 0);
|
|
|
|
|
|
|
|
#if LCD_INFO_SCREEN_STYLE == 0
|
2018-10-18 22:32:09 +02:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
// ========== Line 1 ==========
|
2015-05-14 07:45:58 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#if LCD_WIDTH < 20
|
2015-05-14 07:45:58 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
//
|
|
|
|
// Hotend 0 Temperature
|
|
|
|
//
|
|
|
|
_draw_heater_status(0, -1, blink);
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
//
|
|
|
|
// Hotend 1 or Bed Temperature
|
|
|
|
//
|
|
|
|
#if HOTENDS > 1
|
|
|
|
lcd_moveto(8, 0);
|
2018-11-14 20:13:51 +01:00
|
|
|
lcd_put_wchar(LCD_STR_THERMOMETER[0]);
|
2018-10-18 22:32:09 +02:00
|
|
|
_draw_heater_status(1, -1, blink);
|
|
|
|
#elif HAS_HEATED_BED
|
|
|
|
lcd_moveto(8, 0);
|
2018-11-14 20:13:51 +01:00
|
|
|
lcd_put_wchar(LCD_STR_BEDTEMP[0]);
|
2018-10-18 22:32:09 +02:00
|
|
|
_draw_heater_status(-1, -1, blink);
|
|
|
|
#endif
|
2013-10-20 12:12:35 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#else // LCD_WIDTH >= 20
|
2013-10-20 12:12:35 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
//
|
|
|
|
// Hotend 0 Temperature
|
|
|
|
//
|
|
|
|
_draw_heater_status(0, LCD_STR_THERMOMETER[0], blink);
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
//
|
|
|
|
// Hotend 1 or Bed Temperature
|
|
|
|
//
|
|
|
|
#if HOTENDS > 1
|
|
|
|
lcd_moveto(10, 0);
|
|
|
|
_draw_heater_status(1, LCD_STR_THERMOMETER[0], blink);
|
|
|
|
#elif HAS_HEATED_BED
|
|
|
|
lcd_moveto(10, 0);
|
|
|
|
_draw_bed_status(blink);
|
|
|
|
#endif
|
2013-10-20 12:12:35 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#endif // LCD_WIDTH >= 20
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
// ========== Line 2 ==========
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#if LCD_HEIGHT > 2
|
2015-05-14 07:45:58 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#if LCD_WIDTH < 20
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#if HAS_PRINT_PROGRESS
|
|
|
|
lcd_moveto(0, 2);
|
|
|
|
_draw_print_progress();
|
|
|
|
#endif
|
2015-05-14 07:45:58 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#else // LCD_WIDTH >= 20
|
2015-05-14 07:45:58 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
lcd_moveto(0, 1);
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
// If the first line has two extruder temps,
|
|
|
|
// show more temperatures on the next line
|
2015-05-14 07:45:58 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#if HOTENDS > 2 || (HOTENDS > 1 && HAS_HEATED_BED)
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#if HOTENDS > 2
|
|
|
|
_draw_heater_status(2, LCD_STR_THERMOMETER[0], blink);
|
|
|
|
lcd_moveto(10, 1);
|
|
|
|
#endif
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
_draw_bed_status(blink);
|
2015-05-14 07:45:58 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#else // HOTENDS <= 2 && (HOTENDS <= 1 || !HAS_HEATED_BED)
|
2017-12-29 03:17:12 +01:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
_draw_axis_value(X_AXIS, ftostr4sign(LOGICAL_X_POSITION(current_position[X_AXIS])), blink);
|
2017-12-29 03:17:12 +01:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
lcd_put_wchar(' ');
|
2016-02-28 23:13:24 +01:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
_draw_axis_value(Y_AXIS, ftostr4sign(LOGICAL_Y_POSITION(current_position[Y_AXIS])), blink);
|
2016-02-28 23:13:24 +01:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#endif // HOTENDS <= 2 && (HOTENDS <= 1 || !HAS_HEATED_BED)
|
2016-04-19 04:45:55 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#endif // LCD_WIDTH >= 20
|
2015-05-14 07:45:58 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
lcd_moveto(LCD_WIDTH - 8, 1);
|
|
|
|
_draw_axis_value(Z_AXIS, ftostr52sp(LOGICAL_Z_POSITION(current_position[Z_AXIS])), blink);
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#if HAS_LEVELING && !HAS_HEATED_BED
|
|
|
|
lcd_put_wchar(planner.leveling_active || blink ? '_' : ' ');
|
|
|
|
#endif
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#endif // LCD_HEIGHT > 2
|
2013-10-20 12:12:35 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
// ========== Line 3 ==========
|
2017-09-27 19:21:15 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#if LCD_HEIGHT > 3
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
lcd_moveto(0, 2);
|
2018-11-14 20:13:51 +01:00
|
|
|
lcd_put_wchar(LCD_STR_FEEDRATE[0]);
|
2018-10-18 22:32:09 +02:00
|
|
|
lcd_put_u8str(itostr3(feedrate_percentage));
|
|
|
|
lcd_put_wchar('%');
|
2015-05-14 07:45:58 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
char buffer[14];
|
|
|
|
duration_t elapsed = print_job_timer.duration();
|
2018-11-01 21:56:12 +01:00
|
|
|
const uint8_t len = elapsed.toDigital(buffer),
|
|
|
|
timepos = LCD_WIDTH - len - 1;
|
|
|
|
lcd_moveto(timepos, 2);
|
2018-11-14 20:13:51 +01:00
|
|
|
lcd_put_wchar(LCD_STR_CLOCK[0]);
|
2018-10-18 22:32:09 +02:00
|
|
|
lcd_put_u8str(buffer);
|
2015-04-08 07:04:10 +02:00
|
|
|
|
2018-11-01 21:56:12 +01:00
|
|
|
#if LCD_WIDTH >= 20
|
|
|
|
lcd_moveto(timepos - 7, 2);
|
|
|
|
#if HAS_PRINT_PROGRESS
|
|
|
|
_draw_print_progress();
|
|
|
|
#else
|
2018-11-02 07:32:13 +01:00
|
|
|
char c;
|
|
|
|
int per;
|
2018-11-01 21:56:12 +01:00
|
|
|
#if HAS_FAN0
|
|
|
|
if (blink) {
|
|
|
|
c = 'F';
|
|
|
|
per = ((int(fan_speed[0]) + 1) * 100) / 256;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
c = 'E';
|
|
|
|
per = planner.flow_percentage[0];
|
|
|
|
}
|
|
|
|
lcd_put_wchar(c);
|
|
|
|
lcd_put_u8str(itostr3(per));
|
|
|
|
lcd_put_wchar('%');
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#endif // LCD_HEIGHT > 3
|
2016-12-05 04:09:12 +01:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
#elif LCD_INFO_SCREEN_STYLE == 1
|
2018-05-26 06:32:37 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
// ========== Line 1 ==========
|
2018-05-26 06:32:37 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
//
|
|
|
|
// Hotend 0 Temperature
|
|
|
|
//
|
|
|
|
_draw_heater_status(0, LCD_STR_THERMOMETER[0], blink);
|
2018-05-26 06:32:37 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
//
|
|
|
|
// Z Coordinate
|
|
|
|
//
|
|
|
|
lcd_moveto(LCD_WIDTH - 9, 0);
|
|
|
|
_draw_axis_value(Z_AXIS, ftostr52sp(LOGICAL_Z_POSITION(current_position[Z_AXIS])), blink);
|
2018-05-26 06:32:37 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
#if HAS_LEVELING && (HOTENDS > 1 || !HAS_HEATED_BED)
|
|
|
|
lcd_moveto(LCD_WIDTH - 1, 0);
|
|
|
|
lcd_put_wchar(planner.leveling_active || blink ? '_' : ' ');
|
|
|
|
#endif
|
2018-05-26 06:32:37 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
// ========== Line 2 ==========
|
2018-05-26 06:32:37 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
//
|
|
|
|
// Hotend 1 or Bed Temperature
|
|
|
|
//
|
|
|
|
lcd_moveto(0, 1);
|
|
|
|
#if HOTENDS > 1
|
|
|
|
_draw_heater_status(1, LCD_STR_THERMOMETER[0], blink);
|
|
|
|
#elif HAS_HEATED_BED
|
|
|
|
_draw_bed_status(blink);
|
|
|
|
#endif
|
2018-05-26 06:32:37 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
lcd_moveto(LCD_WIDTH - 9, 1);
|
2018-11-14 20:13:51 +01:00
|
|
|
lcd_put_wchar(LCD_STR_FEEDRATE[0]);
|
2018-10-18 22:32:09 +02:00
|
|
|
lcd_put_u8str(itostr3(feedrate_percentage));
|
|
|
|
lcd_put_wchar('%');
|
2018-05-26 06:32:37 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
// ========== Line 3 ==========
|
2018-05-26 06:32:37 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
//
|
|
|
|
// SD Percent, Hotend 2, or Bed
|
|
|
|
//
|
|
|
|
lcd_moveto(0, 2);
|
|
|
|
#if HOTENDS > 2
|
|
|
|
_draw_heater_status(2, LCD_STR_THERMOMETER[0], blink);
|
|
|
|
#elif HOTENDS > 1 && HAS_HEATED_BED
|
|
|
|
_draw_bed_status(blink);
|
|
|
|
#elif HAS_PRINT_PROGRESS
|
|
|
|
#define DREW_PRINT_PROGRESS
|
|
|
|
_draw_print_progress();
|
|
|
|
#endif
|
2018-05-26 06:32:37 +02:00
|
|
|
|
2018-10-18 22:32:09 +02:00
|
|
|
//
|
|
|
|
// Elapsed Time or SD Percent
|
|
|
|
//
|
|
|
|
lcd_moveto(LCD_WIDTH - 9, 2);
|
|
|
|
#if HAS_PRINT_PROGRESS && !defined(DREW_PRINT_PROGRESS)
|
|
|
|
_draw_print_progress();
|
|
|
|
#else
|
|
|
|
duration_t elapsed = print_job_timer.duration();
|
|
|
|
char buffer[14];
|
|
|
|
(void)elapsed.toDigital(buffer);
|
2018-11-14 20:13:51 +01:00
|
|
|
lcd_put_wchar(LCD_STR_CLOCK[0]);
|
2018-10-18 22:32:09 +02:00
|
|
|
lcd_put_u8str(buffer);
|
|
|
|
#endif
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
#endif // LCD_INFO_SCREEN_STYLE 1
|
2018-10-18 22:32:09 +02:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
// ========= Last Line ========
|
2018-10-18 22:32:09 +02:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
//
|
|
|
|
// Status Message (which may be a Progress Bar or Filament display)
|
|
|
|
//
|
|
|
|
draw_status_message(blink);
|
|
|
|
}
|
2015-03-16 06:02:33 +01:00
|
|
|
|
2018-10-30 22:34:45 +01:00
|
|
|
#if HAS_LCD_MENU
|
2016-08-21 01:12:57 +02: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) {
|
2017-02-18 06:57:13 +01:00
|
|
|
if (row < LCD_HEIGHT) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(LCD_WIDTH - 9, row);
|
2018-11-11 19:16:24 +01:00
|
|
|
_draw_heater_status(extruder, LCD_STR_THERMOMETER[0], ui.get_blink());
|
2017-02-18 06:57:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-26 20:01:02 +02:00
|
|
|
#endif // ADVANCED_PAUSE_FEATURE
|
2017-02-18 06:57:13 +01:00
|
|
|
|
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-12-13 06:56:05 +01:00
|
|
|
UNUSED(invert);
|
|
|
|
int8_t n = LCD_WIDTH;
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, row);
|
2016-12-13 06:56:05 +01:00
|
|
|
if (center && !valstr) {
|
2018-04-13 03:14:01 +02:00
|
|
|
int8_t pad = (LCD_WIDTH - utf8_strlen_P(pstr)) / 2;
|
|
|
|
while (--pad >= 0) { lcd_put_wchar(' '); n--; }
|
2016-08-21 01:12:57 +02:00
|
|
|
}
|
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 (valstr) n -= lcd_put_u8str_max(valstr, n);
|
|
|
|
for (; n > 0; --n) lcd_put_wchar(' ');
|
2016-12-13 06:56:05 +01:00
|
|
|
}
|
2016-08-21 01:12:57 +02:00
|
|
|
|
2018-11-14 20:13:51 +01:00
|
|
|
void draw_menu_item(const bool sel, const uint8_t row, PGM_P pstr, const char pre_char, const char post_char) {
|
2016-08-21 01:12:57 +02:00
|
|
|
uint8_t n = LCD_WIDTH - 2;
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, row);
|
2018-11-14 20:13:51 +01:00
|
|
|
lcd_put_wchar(sel ? pre_char : ' ');
|
2018-05-26 06:32:37 +02:00
|
|
|
n -= lcd_put_u8str_max_P(pstr, n);
|
2018-11-17 04:44:48 +01:00
|
|
|
for (; n; --n) lcd_put_wchar(' ');
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(post_char);
|
2015-03-16 06:02:33 +01:00
|
|
|
}
|
2015-03-20 13:08:18 +01:00
|
|
|
|
2018-11-14 20:13:51 +01:00
|
|
|
void _draw_menu_item_edit(const bool sel, const uint8_t row, PGM_P pstr, const char* const data, const bool pgm) {
|
|
|
|
uint8_t n = LCD_WIDTH - 2 - (pgm ? utf8_strlen_P(data) : utf8_strlen(data));
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, row);
|
2018-11-14 20:13:51 +01:00
|
|
|
lcd_put_wchar(sel ? LCD_STR_ARROW_RIGHT[0] : ' ');
|
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
|
|
|
for (; n; --n) lcd_put_wchar(' ');
|
2018-11-14 20:13:51 +01:00
|
|
|
if (pgm) lcd_put_u8str_P(data); else lcd_put_u8str(data);
|
2015-03-16 06:02:33 +01:00
|
|
|
}
|
2015-09-11 11:18:42 +02:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void draw_edit_screen(PGM_P const pstr, const char* const value/*=NULL*/) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(1, 1);
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_put_u8str_P(pstr);
|
2016-08-21 01:12:57 +02:00
|
|
|
if (value != NULL) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(':');
|
|
|
|
int len = utf8_strlen(value);
|
2018-11-04 11:25:03 +01:00
|
|
|
const uint8_t valrow = (utf8_strlen_P(pstr) + 1 + len + 1) > (LCD_WIDTH - 2) ? 2 : 1; // Value on the next row if it won't fit
|
|
|
|
lcd_moveto((LCD_WIDTH - 1) - (len + 1), valrow); // Right-justified, padded by spaces
|
|
|
|
lcd_put_wchar(' '); // Overwrite char if value gets shorter
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_u8str(value);
|
2016-08-21 01:12:57 +02:00
|
|
|
}
|
2015-03-16 06:02:33 +01:00
|
|
|
}
|
|
|
|
|
2016-08-21 01:12:57 +02:00
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
|
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);
|
2017-10-19 05:15:33 +02:00
|
|
|
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, row);
|
2018-11-17 04:44:48 +01:00
|
|
|
lcd_put_wchar(sel ? LCD_STR_ARROW_RIGHT[0] : ' ');
|
|
|
|
constexpr uint8_t maxlen = LCD_WIDTH - 2;
|
|
|
|
uint8_t n = maxlen - lcd_put_u8str_max(ui.scrolled_filename(theCard, maxlen, row, sel), maxlen);
|
2018-11-11 19:16:24 +01:00
|
|
|
for (; n; --n) lcd_put_wchar(' ');
|
2018-11-17 04:44:48 +01:00
|
|
|
lcd_put_wchar(isDir ? LCD_STR_FOLDER[0] : ' ');
|
2016-08-21 01:12:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SDSUPPORT
|
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
#if ENABLED(LCD_HAS_STATUS_INDICATORS)
|
2015-04-13 03:07:08 +02:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
static void MarlinUI::update_indicators() {
|
2017-07-13 04:39:37 +02:00
|
|
|
// Set the LEDS - referred to as backlights by the LiquidTWI2 library
|
|
|
|
static uint8_t ledsprev = 0;
|
|
|
|
uint8_t leds = 0;
|
2016-03-06 03:27:45 +01:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
if (thermalManager.degTargetBed() > 0) leds |= LED_A;
|
2016-03-06 03:27:45 +01:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
if (thermalManager.degTargetHotend(0) > 0) leds |= LED_B;
|
2016-03-06 03:27:45 +01:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
#if FAN_COUNT > 0
|
|
|
|
if (0
|
|
|
|
#if HAS_FAN0
|
2018-10-07 22:34:41 +02:00
|
|
|
|| fan_speed[0]
|
2017-07-13 04:39:37 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_FAN1
|
2018-10-07 22:34:41 +02:00
|
|
|
|| fan_speed[1]
|
2017-07-13 04:39:37 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_FAN2
|
2018-10-07 22:34:41 +02:00
|
|
|
|| fan_speed[2]
|
2017-07-13 04:39:37 +02:00
|
|
|
#endif
|
|
|
|
) leds |= LED_C;
|
|
|
|
#endif // FAN_COUNT > 0
|
2016-03-06 03:27:45 +01:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
#if HOTENDS > 1
|
|
|
|
if (thermalManager.degTargetHotend(1) > 0) leds |= LED_C;
|
|
|
|
#endif
|
2016-03-06 03:27:45 +01:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
if (leds != ledsprev) {
|
|
|
|
lcd.setBacklight(leds);
|
|
|
|
ledsprev = leds;
|
|
|
|
}
|
2015-11-13 14:04:48 +01:00
|
|
|
}
|
2015-04-13 03:07:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
#endif // LCD_HAS_STATUS_INDICATORS
|
2013-10-20 12:12:35 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
2017-06-21 22:26:59 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
#define HD44780_CHAR_WIDTH 5
|
|
|
|
#define HD44780_CHAR_HEIGHT 8
|
|
|
|
#define MESH_MAP_COLS 7
|
|
|
|
#define MESH_MAP_ROWS 4
|
|
|
|
|
|
|
|
#define CHAR_LINE_TOP 0
|
|
|
|
#define CHAR_LINE_BOT 1
|
|
|
|
#define CHAR_EDGE_L 2
|
|
|
|
#define CHAR_EDGE_R 3
|
|
|
|
#define CHAR_UL_UL 4
|
|
|
|
#define CHAR_LR_UL 5
|
|
|
|
#define CHAR_UL_LR 6
|
|
|
|
#define CHAR_LR_LR 7
|
|
|
|
|
|
|
|
#define TOP_LEFT _BV(0)
|
|
|
|
#define TOP_RIGHT _BV(1)
|
|
|
|
#define LOWER_LEFT _BV(2)
|
|
|
|
#define LOWER_RIGHT _BV(3)
|
2017-07-02 01:37:33 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
/**
|
|
|
|
* Possible map screens:
|
|
|
|
*
|
|
|
|
* 16x2 |X000.00 Y000.00|
|
|
|
|
* |(00,00) Z00.000|
|
|
|
|
*
|
|
|
|
* 20x2 | X:000.00 Y:000.00 |
|
|
|
|
* | (00,00) Z:00.000 |
|
|
|
|
*
|
|
|
|
* 16x4 |+-------+(00,00)|
|
|
|
|
* || |X000.00|
|
|
|
|
* || |Y000.00|
|
|
|
|
* |+-------+Z00.000|
|
|
|
|
*
|
|
|
|
* 20x4 | +-------+ (00,00) |
|
|
|
|
* | | | X:000.00|
|
|
|
|
* | | | Y:000.00|
|
|
|
|
* | +-------+ Z:00.000|
|
|
|
|
*/
|
2017-07-02 01:37:33 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
typedef struct {
|
2018-11-04 11:25:03 +01:00
|
|
|
uint8_t custom_char_bits[HD44780_CHAR_HEIGHT];
|
2017-07-13 04:39:37 +02:00
|
|
|
} custom_char;
|
|
|
|
|
|
|
|
typedef struct {
|
2018-11-04 11:25:03 +01:00
|
|
|
uint8_t column, row,
|
|
|
|
x_pixel_offset, y_pixel_offset,
|
|
|
|
x_pixel_mask;
|
2017-07-13 04:39:37 +02:00
|
|
|
} coordinate;
|
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
void add_edges_to_custom_char(custom_char &custom, const coordinate &ul, const coordinate &lr, const coordinate &brc, const uint8_t cell_location);
|
2017-07-13 04:39:37 +02:00
|
|
|
FORCE_INLINE static void clear_custom_char(custom_char * const cc) { ZERO(cc->custom_char_bits); }
|
|
|
|
|
|
|
|
coordinate pixel_location(int16_t x, int16_t y) {
|
|
|
|
coordinate ret_val;
|
|
|
|
int16_t xp, yp, r, c;
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
x++; y++; // +1 because lines on the left and top
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
c = x / (HD44780_CHAR_WIDTH);
|
|
|
|
r = y / (HD44780_CHAR_HEIGHT);
|
2017-06-28 05:19:32 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
ret_val.column = c;
|
|
|
|
ret_val.row = r;
|
2017-06-28 05:19:32 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
xp = x - c * (HD44780_CHAR_WIDTH); // Get the pixel offsets into the character cell
|
|
|
|
xp = HD44780_CHAR_WIDTH - 1 - xp; // Column within relevant character cell (0 on the right)
|
|
|
|
yp = y - r * (HD44780_CHAR_HEIGHT);
|
2017-06-28 05:19:32 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
ret_val.x_pixel_mask = _BV(xp);
|
|
|
|
ret_val.x_pixel_offset = xp;
|
|
|
|
ret_val.y_pixel_offset = yp;
|
|
|
|
return ret_val;
|
|
|
|
}
|
2017-06-28 05:19:32 +02:00
|
|
|
|
2017-11-03 05:59:42 +01:00
|
|
|
inline coordinate pixel_location(const uint8_t x, const uint8_t y) { return pixel_location((int16_t)x, (int16_t)y); }
|
2017-06-28 05:19:32 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
void prep_and_put_map_char(custom_char &chrdata, const coordinate &ul, const coordinate &lr, const coordinate &brc, const uint8_t cl, const char c, const uint8_t x, const uint8_t y) {
|
|
|
|
add_edges_to_custom_char(chrdata, ul, lr, brc, cl);
|
|
|
|
lcd.createChar(c, (uint8_t*)&chrdata);
|
|
|
|
lcd_moveto(x, y);
|
|
|
|
lcd_put_wchar(c);
|
|
|
|
}
|
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
void MarlinUI::ubl_plot(const uint8_t x, const uint8_t inverted_y) {
|
2017-06-28 05:19:32 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
#if LCD_WIDTH >= 20
|
|
|
|
#define _LCD_W_POS 12
|
|
|
|
#define _PLOT_X 1
|
|
|
|
#define _MAP_X 3
|
2018-04-13 03:14:01 +02:00
|
|
|
#define _LABEL(C,X,Y) lcd_moveto(X, Y); lcd_put_u8str(C)
|
2017-07-13 04:39:37 +02:00
|
|
|
#define _XLABEL(X,Y) _LABEL("X:",X,Y)
|
|
|
|
#define _YLABEL(X,Y) _LABEL("Y:",X,Y)
|
|
|
|
#define _ZLABEL(X,Y) _LABEL("Z:",X,Y)
|
|
|
|
#else
|
|
|
|
#define _LCD_W_POS 8
|
|
|
|
#define _PLOT_X 0
|
|
|
|
#define _MAP_X 1
|
2018-04-13 03:14:01 +02:00
|
|
|
#define _LABEL(X,Y,C) lcd_moveto(X, Y); lcd_put_wchar(C)
|
2017-07-13 04:39:37 +02:00
|
|
|
#define _XLABEL(X,Y) _LABEL('X',X,Y)
|
|
|
|
#define _YLABEL(X,Y) _LABEL('Y',X,Y)
|
|
|
|
#define _ZLABEL(X,Y) _LABEL('Z',X,Y)
|
|
|
|
#endif
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
#if LCD_HEIGHT <= 3 // 16x2 or 20x2 display
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
/**
|
|
|
|
* Show X and Y positions
|
|
|
|
*/
|
|
|
|
_XLABEL(_PLOT_X, 0);
|
2018-05-01 14:08:47 +02:00
|
|
|
lcd_put_u8str(ftostr52(LOGICAL_X_POSITION(pgm_read_float(&ubl._mesh_index_to_xpos[x]))));
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
_YLABEL(_LCD_W_POS, 0);
|
2018-05-01 14:08:47 +02:00
|
|
|
lcd_put_u8str(ftostr52(LOGICAL_Y_POSITION(pgm_read_float(&ubl._mesh_index_to_ypos[inverted_y]))));
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(_PLOT_X, 0);
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
#else // 16x4 or 20x4 display
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
coordinate upper_left, lower_right, bottom_right_corner;
|
|
|
|
custom_char new_char;
|
|
|
|
uint8_t i, j, k, l, m, n, n_rows, n_cols, y,
|
|
|
|
bottom_line, right_edge,
|
|
|
|
x_map_pixels, y_map_pixels,
|
|
|
|
pixels_per_x_mesh_pnt, pixels_per_y_mesh_pnt,
|
|
|
|
suppress_x_offset = 0, suppress_y_offset = 0;
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
y = GRID_MAX_POINTS_Y - inverted_y - 1;
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
upper_left.column = 0;
|
|
|
|
upper_left.row = 0;
|
|
|
|
lower_right.column = 0;
|
|
|
|
lower_right.row = 0;
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2018-11-11 19:16:24 +01:00
|
|
|
clear_lcd();
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
x_map_pixels = (HD44780_CHAR_WIDTH) * (MESH_MAP_COLS) - 2; // Minus 2 because we are drawing a box around the map
|
|
|
|
y_map_pixels = (HD44780_CHAR_HEIGHT) * (MESH_MAP_ROWS) - 2;
|
2017-07-07 18:05:08 +02:00
|
|
|
|
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-07-07 18:05:08 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
if (pixels_per_x_mesh_pnt >= HD44780_CHAR_WIDTH) { // There are only 2 custom characters available, so the X
|
|
|
|
pixels_per_x_mesh_pnt = HD44780_CHAR_WIDTH; // Size of the mesh point needs to fit within them independent
|
|
|
|
suppress_x_offset = 1; // Of where the starting pixel is located.
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
if (pixels_per_y_mesh_pnt >= HD44780_CHAR_HEIGHT) { // There are only 2 custom characters available, so the Y
|
|
|
|
pixels_per_y_mesh_pnt = HD44780_CHAR_HEIGHT; // Size of the mesh point needs to fit within them independent
|
|
|
|
suppress_y_offset = 1; // Of where the starting pixel is located.
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
x_map_pixels = pixels_per_x_mesh_pnt * (GRID_MAX_POINTS_X); // Now we have the right number of pixels to make both
|
|
|
|
y_map_pixels = pixels_per_y_mesh_pnt * (GRID_MAX_POINTS_Y); // Directions fit nicely
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
right_edge = pixels_per_x_mesh_pnt * (GRID_MAX_POINTS_X) + 1; // Find location of right edge within the character cell
|
|
|
|
bottom_line = pixels_per_y_mesh_pnt * (GRID_MAX_POINTS_Y) + 1; // Find location of bottome line within the character cell
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
n_rows = bottom_line / (HD44780_CHAR_HEIGHT) + 1;
|
|
|
|
n_cols = right_edge / (HD44780_CHAR_WIDTH) + 1;
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
for (i = 0; i < n_cols; i++) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(i, 0);
|
2018-11-04 11:25:03 +01:00
|
|
|
lcd_put_wchar(CHAR_LINE_TOP); // Box Top line
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(i, n_rows - 1);
|
2018-11-04 11:25:03 +01:00
|
|
|
lcd_put_wchar(CHAR_LINE_BOT); // Box Bottom line
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
for (j = 0; j < n_rows; j++) {
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(0, j);
|
2018-11-04 11:25:03 +01:00
|
|
|
lcd_put_wchar(CHAR_EDGE_L); // Box Left edge
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(n_cols - 1, j);
|
2018-11-04 11:25:03 +01:00
|
|
|
lcd_put_wchar(CHAR_EDGE_R); // Box Right edge
|
2017-07-07 18:05:08 +02:00
|
|
|
}
|
2017-06-22 17:42:50 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
/**
|
|
|
|
* If the entire 4th row is not in use, do not put vertical bars all the way down to the bottom of the display
|
|
|
|
*/
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
k = pixels_per_y_mesh_pnt * (GRID_MAX_POINTS_Y) + 2;
|
2018-11-04 11:25:03 +01:00
|
|
|
l = (HD44780_CHAR_HEIGHT) * n_rows;
|
|
|
|
if (l > k && l - k >= (HD44780_CHAR_HEIGHT) / 2) {
|
|
|
|
lcd_moveto(0, n_rows - 1); // Box Left edge
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(' ');
|
2018-11-04 11:25:03 +01:00
|
|
|
lcd_moveto(n_cols - 1, n_rows - 1); // Box Right edge
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_wchar(' ');
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
clear_custom_char(&new_char);
|
2018-11-04 11:25:03 +01:00
|
|
|
new_char.custom_char_bits[0] = 0b11111U; // Char #0 is used for the box top line
|
|
|
|
lcd.createChar(CHAR_LINE_TOP, (uint8_t*)&new_char);
|
2017-07-13 04:39:37 +02:00
|
|
|
|
|
|
|
clear_custom_char(&new_char);
|
2018-11-04 11:25:03 +01:00
|
|
|
k = (GRID_MAX_POINTS_Y) * pixels_per_y_mesh_pnt + 1; // Row of pixels for the bottom box line
|
|
|
|
l = k % (HD44780_CHAR_HEIGHT); // Row within relevant character cell
|
|
|
|
new_char.custom_char_bits[l] = 0b11111U; // Char #1 is used for the box bottom line
|
|
|
|
lcd.createChar(CHAR_LINE_BOT, (uint8_t*)&new_char);
|
2017-07-13 04:39:37 +02:00
|
|
|
|
|
|
|
clear_custom_char(&new_char);
|
2018-11-04 11:25:03 +01:00
|
|
|
for (j = 0; j < HD44780_CHAR_HEIGHT; j++)
|
|
|
|
new_char.custom_char_bits[j] = 0b10000U; // Char #2 is used for the box left edge
|
|
|
|
lcd.createChar(CHAR_EDGE_L, (uint8_t*)&new_char);
|
2017-07-13 04:39:37 +02:00
|
|
|
|
|
|
|
clear_custom_char(&new_char);
|
2018-11-04 11:25:03 +01:00
|
|
|
m = (GRID_MAX_POINTS_X) * pixels_per_x_mesh_pnt + 1; // Column of pixels for the right box line
|
|
|
|
n = m % (HD44780_CHAR_WIDTH); // Column within relevant character cell
|
|
|
|
i = HD44780_CHAR_WIDTH - 1 - n; // Column within relevant character cell (0 on the right)
|
|
|
|
for (j = 0; j < HD44780_CHAR_HEIGHT; j++)
|
|
|
|
new_char.custom_char_bits[j] = (uint8_t)_BV(i); // Char #3 is used for the box right edge
|
|
|
|
lcd.createChar(CHAR_EDGE_R, (uint8_t*)&new_char);
|
2017-07-13 04:39:37 +02:00
|
|
|
|
|
|
|
i = x * pixels_per_x_mesh_pnt - suppress_x_offset;
|
|
|
|
j = y * pixels_per_y_mesh_pnt - suppress_y_offset;
|
|
|
|
upper_left = pixel_location(i, j);
|
|
|
|
|
|
|
|
k = (x + 1) * pixels_per_x_mesh_pnt - 1 - suppress_x_offset;
|
|
|
|
l = (y + 1) * pixels_per_y_mesh_pnt - 1 - suppress_y_offset;
|
|
|
|
lower_right = pixel_location(k, l);
|
|
|
|
|
|
|
|
bottom_right_corner = pixel_location(x_map_pixels, y_map_pixels);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* First, handle the simple case where everything is within a single character cell.
|
|
|
|
* If part of the Mesh Plot is outside of this character cell, we will follow up
|
|
|
|
* and deal with that next.
|
|
|
|
*/
|
|
|
|
|
|
|
|
clear_custom_char(&new_char);
|
2018-11-04 11:25:03 +01:00
|
|
|
const uint8_t ypix = MIN(upper_left.y_pixel_offset + pixels_per_y_mesh_pnt, HD44780_CHAR_HEIGHT);
|
2017-07-13 04:39:37 +02:00
|
|
|
for (j = upper_left.y_pixel_offset; j < ypix; j++) {
|
|
|
|
i = upper_left.x_pixel_mask;
|
|
|
|
for (k = 0; k < pixels_per_x_mesh_pnt; k++) {
|
2017-07-07 18:05:08 +02:00
|
|
|
new_char.custom_char_bits[j] |= i;
|
2017-07-13 04:39:37 +02:00
|
|
|
i >>= 1;
|
2017-07-07 18:05:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
prep_and_put_map_char(new_char, upper_left, lower_right, bottom_right_corner, TOP_LEFT, CHAR_UL_UL, upper_left.column, upper_left.row);
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
/**
|
|
|
|
* Next, check for two side by side character cells being used to display the Mesh Point
|
|
|
|
* If found... do the right hand character cell next.
|
|
|
|
*/
|
|
|
|
if (upper_left.column == lower_right.column - 1) {
|
|
|
|
l = upper_left.x_pixel_offset;
|
|
|
|
clear_custom_char(&new_char);
|
|
|
|
for (j = upper_left.y_pixel_offset; j < ypix; j++) {
|
2018-11-04 11:25:03 +01:00
|
|
|
i = _BV(HD44780_CHAR_WIDTH - 1); // Fill in the left side of the right character cell
|
2017-07-13 04:39:37 +02:00
|
|
|
for (k = 0; k < pixels_per_x_mesh_pnt - 1 - l; k++) {
|
|
|
|
new_char.custom_char_bits[j] |= i;
|
|
|
|
i >>= 1;
|
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
}
|
2018-11-04 11:25:03 +01:00
|
|
|
prep_and_put_map_char(new_char, upper_left, lower_right, bottom_right_corner, TOP_RIGHT, CHAR_LR_UL, lower_right.column, upper_left.row);
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
/**
|
|
|
|
* Next, check for two character cells stacked on top of each other being used to display the Mesh Point
|
|
|
|
*/
|
|
|
|
if (upper_left.row == lower_right.row - 1) {
|
2018-11-04 11:25:03 +01:00
|
|
|
l = HD44780_CHAR_HEIGHT - upper_left.y_pixel_offset; // Number of pixel rows in top character cell
|
|
|
|
k = pixels_per_y_mesh_pnt - l; // Number of pixel rows in bottom character cell
|
2017-07-13 04:39:37 +02:00
|
|
|
clear_custom_char(&new_char);
|
|
|
|
for (j = 0; j < k; j++) {
|
|
|
|
i = upper_left.x_pixel_mask;
|
2018-11-04 11:25:03 +01:00
|
|
|
for (m = 0; m < pixels_per_x_mesh_pnt; m++) { // Fill in the top side of the bottom character cell
|
2017-07-13 04:39:37 +02:00
|
|
|
new_char.custom_char_bits[j] |= i;
|
|
|
|
if (!(i >>= 1)) break;
|
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
}
|
2018-11-04 11:25:03 +01:00
|
|
|
prep_and_put_map_char(new_char, upper_left, lower_right, bottom_right_corner, LOWER_LEFT, CHAR_UL_LR, upper_left.column, lower_right.row);
|
2017-07-07 18:05:08 +02:00
|
|
|
}
|
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
/**
|
|
|
|
* Next, check for four character cells being used to display the Mesh Point. If that is
|
|
|
|
* what is here, we work to fill in the character cell that is down one and to the right one
|
|
|
|
* from the upper_left character cell.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (upper_left.column == lower_right.column - 1 && upper_left.row == lower_right.row - 1) {
|
2018-11-04 11:25:03 +01:00
|
|
|
l = HD44780_CHAR_HEIGHT - upper_left.y_pixel_offset; // Number of pixel rows in top character cell
|
|
|
|
k = pixels_per_y_mesh_pnt - l; // Number of pixel rows in bottom character cell
|
2017-07-13 04:39:37 +02:00
|
|
|
clear_custom_char(&new_char);
|
|
|
|
for (j = 0; j < k; j++) {
|
|
|
|
l = upper_left.x_pixel_offset;
|
2018-11-04 11:25:03 +01:00
|
|
|
i = _BV(HD44780_CHAR_WIDTH - 1); // Fill in the left side of the right character cell
|
|
|
|
for (m = 0; m < pixels_per_x_mesh_pnt - 1 - l; m++) { // Fill in the top side of the bottom character cell
|
2017-07-13 04:39:37 +02:00
|
|
|
new_char.custom_char_bits[j] |= i;
|
|
|
|
i >>= 1;
|
|
|
|
}
|
|
|
|
}
|
2018-11-04 11:25:03 +01:00
|
|
|
prep_and_put_map_char(new_char, upper_left, lower_right, bottom_right_corner, LOWER_RIGHT, CHAR_LR_LR, lower_right.column, lower_right.row);
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2017-06-22 17:42:50 +02:00
|
|
|
|
2017-07-07 18:05:08 +02:00
|
|
|
/**
|
|
|
|
* Print plot position
|
|
|
|
*/
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_moveto(_LCD_W_POS, 0);
|
|
|
|
lcd_put_wchar('(');
|
|
|
|
lcd_put_u8str(itostr3(x));
|
|
|
|
lcd_put_wchar(',');
|
|
|
|
lcd_put_u8str(itostr3(inverted_y));
|
|
|
|
lcd_put_wchar(')');
|
2017-07-02 01:37:33 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
#if LCD_HEIGHT <= 3 // 16x2 or 20x2 display
|
2017-06-22 17:42:50 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
/**
|
|
|
|
* Print Z values
|
|
|
|
*/
|
|
|
|
_ZLABEL(_LCD_W_POS, 1);
|
|
|
|
if (!isnan(ubl.z_values[x][inverted_y]))
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_u8str(ftostr43sign(ubl.z_values[x][inverted_y]));
|
2017-07-13 04:39:37 +02:00
|
|
|
else
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_put_u8str_P(PSTR(" -----"));
|
2017-07-13 04:39:37 +02:00
|
|
|
|
|
|
|
#else // 16x4 or 20x4 display
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show all values at right of screen
|
|
|
|
*/
|
|
|
|
_XLABEL(_LCD_W_POS, 1);
|
2018-05-01 14:08:47 +02:00
|
|
|
lcd_put_u8str(ftostr52(LOGICAL_X_POSITION(pgm_read_float(&ubl._mesh_index_to_xpos[x]))));
|
2017-07-13 04:39:37 +02:00
|
|
|
_YLABEL(_LCD_W_POS, 2);
|
2018-05-01 14:08:47 +02:00
|
|
|
lcd_put_u8str(ftostr52(LOGICAL_Y_POSITION(pgm_read_float(&ubl._mesh_index_to_ypos[inverted_y]))));
|
2017-07-13 04:39:37 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the location value
|
|
|
|
*/
|
|
|
|
_ZLABEL(_LCD_W_POS, 3);
|
|
|
|
if (!isnan(ubl.z_values[x][inverted_y]))
|
2018-04-13 03:14:01 +02:00
|
|
|
lcd_put_u8str(ftostr43sign(ubl.z_values[x][inverted_y]));
|
2017-07-13 04:39:37 +02:00
|
|
|
else
|
2018-05-26 06:32:37 +02:00
|
|
|
lcd_put_u8str_P(PSTR(" -----"));
|
2017-07-13 04:39:37 +02:00
|
|
|
|
|
|
|
#endif // LCD_HEIGHT > 3
|
|
|
|
}
|
2017-06-22 17:42:50 +02:00
|
|
|
|
2018-11-04 11:25:03 +01:00
|
|
|
void add_edges_to_custom_char(custom_char &custom, const coordinate &ul, const coordinate &lr, const coordinate &brc, const uint8_t cell_location) {
|
2017-07-13 04:39:37 +02:00
|
|
|
uint8_t i, k;
|
2018-11-04 11:25:03 +01:00
|
|
|
int16_t n_rows = lr.row - ul.row + 1,
|
|
|
|
n_cols = lr.column - ul.column + 1;
|
2017-07-02 01:37:33 +02:00
|
|
|
|
|
|
|
/**
|
2017-07-13 04:39:37 +02:00
|
|
|
* Check if Top line of box needs to be filled in
|
2017-07-02 01:37:33 +02:00
|
|
|
*/
|
2018-11-04 11:25:03 +01:00
|
|
|
|
|
|
|
if (ul.row == 0 && (cell_location & (TOP_LEFT|TOP_RIGHT))) { // Only fill in the top line for the top character cells
|
2017-07-13 04:39:37 +02:00
|
|
|
|
|
|
|
if (n_cols == 1) {
|
2018-11-04 11:25:03 +01:00
|
|
|
if (ul.column != brc.column)
|
|
|
|
custom.custom_char_bits[0] = 0xFF; // Single column in middle
|
2017-07-13 04:39:37 +02:00
|
|
|
else
|
2018-11-04 11:25:03 +01:00
|
|
|
for (i = brc.x_pixel_offset; i < HD44780_CHAR_WIDTH; i++) // Single column on right side
|
|
|
|
SBI(custom.custom_char_bits[0], i);
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
2018-11-04 11:25:03 +01:00
|
|
|
else if ((cell_location & TOP_LEFT) || lr.column != brc.column) // Multiple column in the middle or with right cell in middle
|
|
|
|
custom.custom_char_bits[0] = 0xFF;
|
2017-07-13 04:39:37 +02:00
|
|
|
else
|
2018-11-04 11:25:03 +01:00
|
|
|
for (i = brc.x_pixel_offset; i < HD44780_CHAR_WIDTH; i++)
|
|
|
|
SBI(custom.custom_char_bits[0], i);
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
2017-07-02 01:37:33 +02:00
|
|
|
|
|
|
|
/**
|
2017-07-13 04:39:37 +02:00
|
|
|
* Check if left line of box needs to be filled in
|
2017-07-02 01:37:33 +02:00
|
|
|
*/
|
2018-11-04 11:25:03 +01:00
|
|
|
if (cell_location & (TOP_LEFT|LOWER_LEFT)) {
|
|
|
|
if (ul.column == 0) { // Left column of characters on LCD Display
|
|
|
|
k = ul.row == brc.row ? brc.y_pixel_offset : HD44780_CHAR_HEIGHT; // If it isn't the last row... do the full character cell
|
2017-07-13 04:39:37 +02:00
|
|
|
for (i = 0; i < k; i++)
|
2018-11-04 11:25:03 +01:00
|
|
|
SBI(custom.custom_char_bits[i], HD44780_CHAR_WIDTH - 1);
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
/**
|
|
|
|
* Check if bottom line of box needs to be filled in
|
|
|
|
*/
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
// Single row of mesh plot cells
|
2018-11-04 11:25:03 +01:00
|
|
|
if (n_rows == 1 /* && (cell_location & (TOP_LEFT|TOP_RIGHT)) */ && ul.row == brc.row) {
|
2017-07-13 04:39:37 +02:00
|
|
|
if (n_cols == 1) // Single row, single column case
|
2018-11-04 11:25:03 +01:00
|
|
|
k = ul.column == brc.column ? brc.x_pixel_mask : 0x01;
|
2017-07-13 04:39:37 +02:00
|
|
|
else if (cell_location & TOP_RIGHT) // Single row, multiple column case
|
2018-11-04 11:25:03 +01:00
|
|
|
k = lr.column == brc.column ? brc.x_pixel_mask : 0x01;
|
2017-07-13 04:39:37 +02:00
|
|
|
else // Single row, left of multiple columns
|
|
|
|
k = 0x01;
|
2018-11-04 11:25:03 +01:00
|
|
|
while (k < _BV(HD44780_CHAR_WIDTH)) {
|
|
|
|
custom.custom_char_bits[brc.y_pixel_offset] |= k;
|
2017-07-13 04:39:37 +02:00
|
|
|
k <<= 1;
|
2017-07-07 18:05:08 +02:00
|
|
|
}
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
// Double row of characters on LCD Display
|
|
|
|
// And this is a bottom custom character
|
2018-11-04 11:25:03 +01:00
|
|
|
if (n_rows == 2 && (cell_location & (LOWER_LEFT|LOWER_RIGHT)) && lr.row == brc.row) {
|
|
|
|
if (n_cols == 1) // Double row, single column case
|
|
|
|
k = ul.column == brc.column ? brc.x_pixel_mask : 0x01;
|
|
|
|
else if (cell_location & LOWER_RIGHT) // Double row, multiple column case
|
|
|
|
k = lr.column == brc.column ? brc.x_pixel_mask : 0x01;
|
|
|
|
else // Double row, left of multiple columns
|
2017-07-13 04:39:37 +02:00
|
|
|
k = 0x01;
|
2018-11-04 11:25:03 +01:00
|
|
|
while (k < _BV(HD44780_CHAR_WIDTH)) {
|
|
|
|
custom.custom_char_bits[brc.y_pixel_offset] |= k;
|
2017-07-13 04:39:37 +02:00
|
|
|
k <<= 1;
|
|
|
|
}
|
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
/**
|
|
|
|
* Check if right line of box needs to be filled in
|
|
|
|
*/
|
2018-11-04 11:25:03 +01:00
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
// Nothing to do if the lower right part of the mesh pnt isn't in the same column as the box line
|
2018-11-04 11:25:03 +01:00
|
|
|
if (lr.column == brc.column) {
|
2017-07-13 04:39:37 +02:00
|
|
|
// This mesh point is in the same character cell as the right box line
|
2018-11-04 11:25:03 +01:00
|
|
|
if (ul.column == brc.column || (cell_location & (TOP_RIGHT|LOWER_RIGHT))) {
|
2017-07-13 04:39:37 +02:00
|
|
|
// If not the last row... do the full character cell
|
2018-11-04 11:25:03 +01:00
|
|
|
k = ul.row == brc.row ? brc.y_pixel_offset : HD44780_CHAR_HEIGHT;
|
|
|
|
for (i = 0; i < k; i++) custom.custom_char_bits[i] |= brc.x_pixel_mask;
|
2017-07-13 04:39:37 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-07 18:05:08 +02:00
|
|
|
}
|
|
|
|
|
2017-07-13 04:39:37 +02:00
|
|
|
#endif // AUTO_BED_LEVELING_UBL
|
2017-07-07 18:05:08 +02:00
|
|
|
|
2018-10-30 22:34:45 +01:00
|
|
|
#endif // HAS_LCD_MENU
|
2017-06-13 01:26:49 +02:00
|
|
|
|
2018-10-30 22:34:45 +01:00
|
|
|
#endif // HAS_CHARACTER_LCD
|