2018-02-14 21:43:54 +00: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* status_screen_DOGM.h
|
|
|
|
*
|
|
|
|
* Standard Status Screen for Graphical Display
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STATUS_SCREEN_DOGM_H_
|
|
|
|
#define _STATUS_SCREEN_DOGM_H_
|
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#include "../../module/motion.h"
|
|
|
|
|
2018-02-14 21:43:54 +00:00
|
|
|
FORCE_INLINE void _draw_centered_temp(const int16_t temp, const uint8_t x, const uint8_t y) {
|
|
|
|
const char * const str = itostr3(temp);
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(x - (str[0] != ' ' ? 0 : str[1] != ' ' ? 1 : 2) * DOG_CHAR_WIDTH / 2, y);
|
|
|
|
lcd_put_u8str(str);
|
2018-05-26 04:32:37 +00:00
|
|
|
lcd_put_u8str_P(PSTR(LCD_STR_DEGREE " "));
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef HEAT_INDICATOR_X
|
|
|
|
#define HEAT_INDICATOR_X 8
|
|
|
|
#endif
|
|
|
|
|
|
|
|
FORCE_INLINE void _draw_heater_status(const uint8_t x, const int8_t heater, const bool blink) {
|
|
|
|
#if !HEATER_IDLE_HANDLER
|
|
|
|
UNUSED(blink);
|
|
|
|
#endif
|
|
|
|
|
2018-04-23 22:13:01 +00:00
|
|
|
#if HAS_HEATED_BED
|
2018-02-14 21:43:54 +00:00
|
|
|
const bool isBed = heater < 0;
|
|
|
|
#else
|
|
|
|
constexpr bool isBed = false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (PAGE_UNDER(7)) {
|
|
|
|
#if HEATER_IDLE_HANDLER
|
2018-04-23 22:13:01 +00:00
|
|
|
const bool is_idle = (
|
|
|
|
#if HAS_HEATED_BED
|
|
|
|
isBed ? thermalManager.is_bed_idle() :
|
2018-02-14 21:43:54 +00:00
|
|
|
#endif
|
2018-04-23 22:13:01 +00:00
|
|
|
thermalManager.is_heater_idle(heater)
|
2018-02-14 21:43:54 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
if (blink || !is_idle)
|
|
|
|
#endif
|
2018-04-23 22:13:01 +00:00
|
|
|
_draw_centered_temp(0.5 + (
|
|
|
|
#if HAS_HEATED_BED
|
|
|
|
isBed ? thermalManager.degTargetBed() :
|
|
|
|
#endif
|
|
|
|
thermalManager.degTargetHotend(heater)
|
|
|
|
), x, 7
|
|
|
|
);
|
|
|
|
}
|
2018-02-14 21:43:54 +00:00
|
|
|
|
2018-05-13 08:08:55 +00:00
|
|
|
if (PAGE_CONTAINS(21, 28)) {
|
2018-07-01 20:20:28 +00:00
|
|
|
_draw_centered_temp(0.5f + (
|
2018-04-23 22:13:01 +00:00
|
|
|
#if HAS_HEATED_BED
|
|
|
|
isBed ? thermalManager.degBed() :
|
|
|
|
#endif
|
|
|
|
thermalManager.degHotend(heater)
|
|
|
|
), x, 28
|
|
|
|
);
|
2018-02-14 21:43:54 +00:00
|
|
|
|
2018-05-13 08:08:55 +00:00
|
|
|
if (PAGE_CONTAINS(17, 20)) {
|
|
|
|
const uint8_t h = isBed ? 7 : HEAT_INDICATOR_X,
|
|
|
|
y = isBed ? 18 : 17;
|
|
|
|
if (
|
|
|
|
#if HAS_HEATED_BED
|
|
|
|
isBed ? thermalManager.isHeatingBed() :
|
|
|
|
#endif
|
|
|
|
thermalManager.isHeatingHotend(heater)
|
|
|
|
) {
|
|
|
|
u8g.setColorIndex(0); // white on black
|
|
|
|
u8g.drawBox(x + h, y, 2, 2);
|
|
|
|
u8g.setColorIndex(1); // black on white
|
|
|
|
}
|
|
|
|
else
|
|
|
|
u8g.drawBox(x + h, y, 2, 2);
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-10 06:19:20 +00: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) {
|
2018-02-14 21:43:54 +00:00
|
|
|
if (blink)
|
2018-05-10 06:19:20 +00:00
|
|
|
lcd_put_u8str(value);
|
2018-02-14 21:43:54 +00:00
|
|
|
else {
|
2018-06-12 02:29:31 +00:00
|
|
|
if (!TEST(axis_homed, axis))
|
2018-05-10 06:19:20 +00:00
|
|
|
while (const char c = *value++) lcd_put_wchar(c <= '.' ? c : '?');
|
2018-02-14 21:43:54 +00:00
|
|
|
else {
|
|
|
|
#if DISABLED(HOME_AFTER_DEACTIVATE) && DISABLED(DISABLE_REDUCED_ACCURACY_WARNING)
|
2018-06-12 02:29:31 +00:00
|
|
|
if (!TEST(axis_known_position, axis))
|
2018-05-26 04:32:37 +00:00
|
|
|
lcd_put_u8str_P(axis == Z_AXIS ? PSTR(" ") : PSTR(" "));
|
2018-02-14 21:43:54 +00:00
|
|
|
else
|
|
|
|
#endif
|
2018-05-10 06:19:20 +00:00
|
|
|
lcd_put_u8str(value);
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void lcd_implementation_status_message(const bool blink) {
|
|
|
|
#if ENABLED(STATUS_MESSAGE_SCROLLING)
|
|
|
|
static bool last_blink = false;
|
2018-05-26 04:32:37 +00:00
|
|
|
|
|
|
|
// Get the UTF8 character count of the string
|
|
|
|
uint8_t slen = utf8_strlen(lcd_status_message);
|
|
|
|
|
|
|
|
// 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
|
|
|
|
lcd_put_u8str(lcd_status_message);
|
|
|
|
|
|
|
|
// Fill the rest with spaces
|
|
|
|
while (slen < LCD_WIDTH) {
|
|
|
|
lcd_put_wchar(' ');
|
|
|
|
++slen;
|
|
|
|
}
|
|
|
|
}
|
2018-02-14 21:43:54 +00:00
|
|
|
else {
|
2018-05-26 04:32:37 +00:00
|
|
|
// String is larger than the available space in screen.
|
|
|
|
|
|
|
|
// Get a pointer to the next valid UTF8 character
|
|
|
|
const char *stat = lcd_status_message + status_scroll_offset;
|
|
|
|
|
|
|
|
// 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_PIXEL_WIDTH);
|
|
|
|
}
|
2018-02-14 21:43:54 +00:00
|
|
|
else {
|
2018-05-26 04:32:37 +00:00
|
|
|
// The remaining string does not completely fill the screen
|
|
|
|
lcd_put_u8str_max(stat, LCD_PIXEL_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) {
|
|
|
|
// Print a second copy of the message
|
2018-05-31 05:06:26 +00:00
|
|
|
lcd_put_u8str_max(lcd_status_message, LCD_PIXEL_WIDTH - ((rlen+2) * DOG_CHAR_WIDTH));
|
2018-05-26 04:32:37 +00:00
|
|
|
}
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (last_blink != blink) {
|
|
|
|
last_blink = blink;
|
2018-05-26 04:32:37 +00:00
|
|
|
|
|
|
|
// Adjust by complete UTF8 characters
|
|
|
|
if (status_scroll_offset < slen) {
|
|
|
|
status_scroll_offset++;
|
|
|
|
while (!START_OF_UTF8_CHAR(lcd_status_message[status_scroll_offset]))
|
|
|
|
status_scroll_offset++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
status_scroll_offset = 0;
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
UNUSED(blink);
|
2018-05-26 04:32:37 +00:00
|
|
|
|
|
|
|
// Get the UTF8 character count of the string
|
|
|
|
uint8_t slen = utf8_strlen(lcd_status_message);
|
|
|
|
|
|
|
|
// Just print the string to the LCD
|
|
|
|
lcd_put_u8str_max(lcd_status_message, LCD_PIXEL_WIDTH);
|
|
|
|
|
|
|
|
// Fill the rest with spaces if there are missing spaces
|
|
|
|
while (slen < LCD_WIDTH) {
|
|
|
|
lcd_put_wchar(' ');
|
|
|
|
++slen;
|
|
|
|
}
|
2018-02-14 21:43:54 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-10-23 21:00:34 +00:00
|
|
|
void lcd_impl_status_screen_0() {
|
2018-02-14 21:43:54 +00:00
|
|
|
|
|
|
|
const bool blink = lcd_blink();
|
|
|
|
|
|
|
|
#if FAN_ANIM_FRAMES > 2
|
|
|
|
static bool old_blink;
|
|
|
|
static uint8_t fan_frame;
|
|
|
|
if (old_blink != blink) {
|
|
|
|
old_blink = blink;
|
2018-10-07 20:34:41 +00:00
|
|
|
if (!fan_speed[0] || ++fan_frame >= FAN_ANIM_FRAMES) fan_frame = 0;
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Status Menu Font
|
|
|
|
lcd_setFont(FONT_STATUSMENU);
|
|
|
|
|
|
|
|
//
|
|
|
|
// Fan Animation
|
|
|
|
//
|
|
|
|
// Draws the whole heading image as a B/W bitmap rather than
|
|
|
|
// drawing the elements separately.
|
|
|
|
// This was done as an optimization, as it was slower to draw
|
|
|
|
// multiple parts compared to a single bitmap.
|
|
|
|
//
|
|
|
|
// The bitmap:
|
|
|
|
// - May be offset in X
|
|
|
|
// - Includes all nozzle(s), bed(s), and the fan.
|
|
|
|
//
|
|
|
|
// TODO:
|
|
|
|
//
|
|
|
|
// - Only draw the whole header on the first
|
|
|
|
// entry to the status screen. Nozzle, bed, and
|
|
|
|
// fan outline bits don't change.
|
|
|
|
//
|
|
|
|
if (PAGE_UNDER(STATUS_SCREENHEIGHT + 1)) {
|
|
|
|
|
|
|
|
u8g.drawBitmapP(
|
|
|
|
STATUS_SCREEN_X, STATUS_SCREEN_Y,
|
|
|
|
(STATUS_SCREENWIDTH + 7) / 8, STATUS_SCREENHEIGHT,
|
|
|
|
#if HAS_FAN0
|
|
|
|
#if FAN_ANIM_FRAMES > 2
|
|
|
|
fan_frame == 1 ? status_screen1_bmp :
|
|
|
|
fan_frame == 2 ? status_screen2_bmp :
|
|
|
|
#if FAN_ANIM_FRAMES > 3
|
|
|
|
fan_frame == 3 ? status_screen3_bmp :
|
|
|
|
#endif
|
|
|
|
#else
|
2018-10-07 20:34:41 +00:00
|
|
|
blink && fan_speed[0] ? status_screen1_bmp :
|
2018-02-14 21:43:54 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
status_screen0_bmp
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Temperature Graphics and Info
|
|
|
|
//
|
|
|
|
|
|
|
|
if (PAGE_UNDER(28)) {
|
|
|
|
// Extruders
|
|
|
|
HOTEND_LOOP() _draw_heater_status(STATUS_SCREEN_HOTEND_TEXT_X(e), e, blink);
|
|
|
|
|
|
|
|
// Heated bed
|
2018-04-23 22:13:01 +00:00
|
|
|
#if HOTENDS < 4 && HAS_HEATED_BED
|
2018-02-14 21:43:54 +00:00
|
|
|
_draw_heater_status(STATUS_SCREEN_BED_TEXT_X, -1, blink);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_FAN0
|
2018-05-13 08:08:55 +00:00
|
|
|
if (PAGE_CONTAINS(STATUS_SCREEN_FAN_TEXT_Y - 7, STATUS_SCREEN_FAN_TEXT_Y)) {
|
2018-02-14 21:43:54 +00:00
|
|
|
// Fan
|
2018-10-07 20:34:41 +00:00
|
|
|
const uint16_t per = (((uint16_t)fan_speed[0] + 1) * 100) / 256;
|
2018-02-14 21:43:54 +00:00
|
|
|
if (per) {
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(STATUS_SCREEN_FAN_TEXT_X, STATUS_SCREEN_FAN_TEXT_Y);
|
|
|
|
lcd_put_u8str(itostr3(per));
|
|
|
|
lcd_put_wchar('%');
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
//
|
|
|
|
// SD Card Symbol
|
|
|
|
//
|
2018-10-27 18:07:03 +00:00
|
|
|
if (card.isFileOpen() && PAGE_CONTAINS(42, 51)) {
|
2018-02-14 21:43:54 +00:00
|
|
|
// Upper box
|
2018-10-27 18:07:03 +00:00
|
|
|
u8g.drawBox(42, 42, 8, 7); // 42-48 (or 41-47)
|
2018-02-14 21:43:54 +00:00
|
|
|
// Right edge
|
2018-10-27 18:07:03 +00:00
|
|
|
u8g.drawBox(50, 44, 2, 5); // 44-48 (or 43-47)
|
2018-02-14 21:43:54 +00:00
|
|
|
// Bottom hollow box
|
2018-10-27 18:07:03 +00:00
|
|
|
u8g.drawFrame(42, 49, 10, 4); // 49-52 (or 48-51)
|
2018-02-14 21:43:54 +00:00
|
|
|
// Corner pixel
|
2018-10-27 18:07:03 +00:00
|
|
|
u8g.drawPixel(50, 43); // 43 (or 42)
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
#endif // SDSUPPORT
|
|
|
|
|
2018-10-18 16:34:52 +00:00
|
|
|
#if HAS_PRINT_PROGRESS
|
2018-02-14 21:43:54 +00:00
|
|
|
//
|
|
|
|
// Progress bar frame
|
|
|
|
//
|
|
|
|
#define PROGRESS_BAR_X 54
|
|
|
|
#define PROGRESS_BAR_WIDTH (LCD_PIXEL_WIDTH - PROGRESS_BAR_X)
|
|
|
|
|
2018-10-27 18:07:03 +00:00
|
|
|
if (PAGE_CONTAINS(49, 52)) // 49-52 (or 49-51)
|
2018-02-14 21:43:54 +00:00
|
|
|
u8g.drawFrame(
|
|
|
|
PROGRESS_BAR_X, 49,
|
2018-10-27 18:07:03 +00:00
|
|
|
PROGRESS_BAR_WIDTH, 4
|
2018-02-14 21:43:54 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
#if DISABLED(LCD_SET_PROGRESS_MANUALLY)
|
|
|
|
const uint8_t progress_bar_percent = card.percentDone();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (progress_bar_percent > 1) {
|
|
|
|
|
|
|
|
//
|
|
|
|
// Progress bar solid part
|
|
|
|
//
|
|
|
|
|
2018-10-27 18:07:03 +00:00
|
|
|
if (PAGE_CONTAINS(50, 51)) // 50-51 (or just 50)
|
2018-02-14 21:43:54 +00:00
|
|
|
u8g.drawBox(
|
|
|
|
PROGRESS_BAR_X + 1, 50,
|
2018-10-27 18:07:03 +00:00
|
|
|
(uint16_t)((PROGRESS_BAR_WIDTH - 2) * progress_bar_percent * 0.01), 2
|
2018-02-14 21:43:54 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
//
|
|
|
|
// SD Percent Complete
|
|
|
|
//
|
|
|
|
|
|
|
|
#if ENABLED(DOGM_SD_PERCENT)
|
|
|
|
if (PAGE_CONTAINS(41, 48)) {
|
|
|
|
// Percent complete
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(55, 48);
|
|
|
|
lcd_put_u8str(itostr3(progress_bar_percent));
|
|
|
|
lcd_put_wchar('%');
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Elapsed Time
|
|
|
|
//
|
|
|
|
|
|
|
|
#if DISABLED(DOGM_SD_PERCENT)
|
|
|
|
#define SD_DURATION_X (PROGRESS_BAR_X + (PROGRESS_BAR_WIDTH / 2) - len * (DOG_CHAR_WIDTH / 2))
|
|
|
|
#else
|
|
|
|
#define SD_DURATION_X (LCD_PIXEL_WIDTH - len * DOG_CHAR_WIDTH)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (PAGE_CONTAINS(41, 48)) {
|
|
|
|
char buffer[10];
|
|
|
|
duration_t elapsed = print_job_timer.duration();
|
|
|
|
bool has_days = (elapsed.value >= 60*60*24L);
|
|
|
|
uint8_t len = elapsed.toDigital(buffer, has_days);
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(SD_DURATION_X, 48);
|
|
|
|
lcd_put_u8str(buffer);
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SDSUPPORT || LCD_SET_PROGRESS_MANUALLY
|
|
|
|
|
|
|
|
//
|
|
|
|
// XYZ Coordinates
|
|
|
|
//
|
|
|
|
|
|
|
|
#define XYZ_BASELINE (30 + INFO_FONT_HEIGHT)
|
|
|
|
|
|
|
|
#define X_LABEL_POS 3
|
|
|
|
#define X_VALUE_POS 11
|
|
|
|
#define XYZ_SPACING 40
|
|
|
|
|
|
|
|
#if ENABLED(XYZ_HOLLOW_FRAME)
|
|
|
|
#define XYZ_FRAME_TOP 29
|
|
|
|
#define XYZ_FRAME_HEIGHT INFO_FONT_HEIGHT + 3
|
|
|
|
#else
|
|
|
|
#define XYZ_FRAME_TOP 30
|
|
|
|
#define XYZ_FRAME_HEIGHT INFO_FONT_HEIGHT + 1
|
|
|
|
#endif
|
|
|
|
|
2018-10-26 06:43:47 +00:00
|
|
|
static char xstring[5], ystring[5], zstring[8];
|
2018-02-14 21:43:54 +00:00
|
|
|
#if ENABLED(FILAMENT_LCD_DISPLAY)
|
|
|
|
static char wstring[5], mstring[4];
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// At the first page, regenerate the XYZ strings
|
|
|
|
if (page.page == 0) {
|
|
|
|
strcpy(xstring, ftostr4sign(LOGICAL_X_POSITION(current_position[X_AXIS])));
|
|
|
|
strcpy(ystring, ftostr4sign(LOGICAL_Y_POSITION(current_position[Y_AXIS])));
|
2018-04-29 05:51:36 +00:00
|
|
|
strcpy(zstring, ftostr52sp(LOGICAL_Z_POSITION(current_position[Z_AXIS])));
|
2018-02-14 21:43:54 +00:00
|
|
|
#if ENABLED(FILAMENT_LCD_DISPLAY)
|
|
|
|
strcpy(wstring, ftostr12ns(filament_width_meas));
|
|
|
|
strcpy(mstring, itostr3(100.0 * (
|
|
|
|
parser.volumetric_enabled
|
|
|
|
? planner.volumetric_area_nominal / planner.volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]
|
|
|
|
: planner.volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]
|
|
|
|
)
|
|
|
|
));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PAGE_CONTAINS(XYZ_FRAME_TOP, XYZ_FRAME_TOP + XYZ_FRAME_HEIGHT - 1)) {
|
|
|
|
|
|
|
|
#if ENABLED(XYZ_HOLLOW_FRAME)
|
|
|
|
u8g.drawFrame(0, XYZ_FRAME_TOP, LCD_PIXEL_WIDTH, XYZ_FRAME_HEIGHT); // 8: 29-40 7: 29-39
|
|
|
|
#else
|
|
|
|
u8g.drawBox(0, XYZ_FRAME_TOP, LCD_PIXEL_WIDTH, XYZ_FRAME_HEIGHT); // 8: 30-39 7: 30-37
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (PAGE_CONTAINS(XYZ_BASELINE - (INFO_FONT_HEIGHT - 1), XYZ_BASELINE)) {
|
|
|
|
|
|
|
|
#if DISABLED(XYZ_HOLLOW_FRAME)
|
|
|
|
u8g.setColorIndex(0); // white on black
|
|
|
|
#endif
|
|
|
|
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(0 * XYZ_SPACING + X_LABEL_POS, XYZ_BASELINE);
|
2018-05-10 06:19:20 +00:00
|
|
|
lcd_put_wchar('X');
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(0 * XYZ_SPACING + X_VALUE_POS, XYZ_BASELINE);
|
2018-05-10 06:19:20 +00:00
|
|
|
_draw_axis_value(X_AXIS, xstring, blink);
|
2018-02-14 21:43:54 +00:00
|
|
|
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(1 * XYZ_SPACING + X_LABEL_POS, XYZ_BASELINE);
|
2018-05-10 06:19:20 +00:00
|
|
|
lcd_put_wchar('Y');
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(1 * XYZ_SPACING + X_VALUE_POS, XYZ_BASELINE);
|
2018-05-10 06:19:20 +00:00
|
|
|
_draw_axis_value(Y_AXIS, ystring, blink);
|
2018-02-14 21:43:54 +00:00
|
|
|
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(2 * XYZ_SPACING + X_LABEL_POS, XYZ_BASELINE);
|
2018-05-10 06:19:20 +00:00
|
|
|
lcd_put_wchar('Z');
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(2 * XYZ_SPACING + X_VALUE_POS, XYZ_BASELINE);
|
2018-05-10 06:19:20 +00:00
|
|
|
_draw_axis_value(Z_AXIS, zstring, blink);
|
2018-02-14 21:43:54 +00:00
|
|
|
|
|
|
|
#if DISABLED(XYZ_HOLLOW_FRAME)
|
|
|
|
u8g.setColorIndex(1); // black on white
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Feedrate
|
|
|
|
//
|
|
|
|
|
|
|
|
if (PAGE_CONTAINS(51 - INFO_FONT_HEIGHT, 49)) {
|
|
|
|
lcd_setFont(FONT_MENU);
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(3, 50);
|
|
|
|
lcd_put_wchar(LCD_STR_FEEDRATE[0]);
|
2018-02-14 21:43:54 +00:00
|
|
|
|
|
|
|
lcd_setFont(FONT_STATUSMENU);
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(12, 50);
|
|
|
|
lcd_put_u8str(itostr3(feedrate_percentage));
|
|
|
|
lcd_put_wchar('%');
|
2018-02-14 21:43:54 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// Filament sensor display if SD is disabled
|
|
|
|
//
|
|
|
|
#if ENABLED(FILAMENT_LCD_DISPLAY) && DISABLED(SDSUPPORT)
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(56, 50);
|
|
|
|
lcd_put_u8str(wstring);
|
|
|
|
lcd_moveto(102, 50);
|
|
|
|
lcd_put_u8str(mstring);
|
|
|
|
lcd_put_wchar('%');
|
2018-02-14 21:43:54 +00:00
|
|
|
lcd_setFont(FONT_MENU);
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(47, 50);
|
2018-05-26 04:32:37 +00:00
|
|
|
lcd_put_wchar(LCD_STR_FILAM_DIA[0]); // lcd_put_u8str_P(PSTR(LCD_STR_FILAM_DIA));
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(93, 50);
|
|
|
|
lcd_put_wchar(LCD_STR_FILAM_MUL[0]);
|
2018-02-14 21:43:54 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Status line
|
|
|
|
//
|
|
|
|
|
|
|
|
#define STATUS_BASELINE (55 + INFO_FONT_HEIGHT)
|
|
|
|
|
|
|
|
if (PAGE_CONTAINS(STATUS_BASELINE - (INFO_FONT_HEIGHT - 1), STATUS_BASELINE)) {
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_moveto(0, STATUS_BASELINE);
|
2018-02-14 21:43:54 +00:00
|
|
|
|
|
|
|
#if ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
|
|
|
|
if (PENDING(millis(), previous_lcd_status_ms + 5000UL)) { //Display both Status message line and Filament display on the last line
|
|
|
|
lcd_implementation_status_message(blink);
|
|
|
|
}
|
|
|
|
else {
|
2018-05-26 04:32:37 +00:00
|
|
|
lcd_put_u8str_P(PSTR(LCD_STR_FILAM_DIA));
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_put_wchar(':');
|
|
|
|
lcd_put_u8str(wstring);
|
2018-05-26 04:32:37 +00:00
|
|
|
lcd_put_u8str_P(PSTR(" " LCD_STR_FILAM_MUL));
|
2018-04-13 01:14:01 +00:00
|
|
|
lcd_put_wchar(':');
|
|
|
|
lcd_put_u8str(mstring);
|
|
|
|
lcd_put_wchar('%');
|
2018-02-14 21:43:54 +00:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
lcd_implementation_status_message(blink);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // _STATUS_SCREEN_DOGM_H_
|