2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +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/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-10-23 21:00:34 +00:00
|
|
|
#pragma once
|
2012-11-06 11:06:41 +00:00
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#include "../inc/MarlinConfig.h"
|
2016-03-27 11:25:33 +00:00
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#if HAS_GRAPHICAL_LCD
|
|
|
|
|
2018-10-28 03:06:25 +00:00
|
|
|
#ifndef LCD_PIXEL_WIDTH
|
|
|
|
#define LCD_PIXEL_WIDTH 128
|
|
|
|
#endif
|
|
|
|
#ifndef LCD_PIXEL_HEIGHT
|
|
|
|
#define LCD_PIXEL_HEIGHT 64
|
|
|
|
#endif
|
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
// LCD selection
|
|
|
|
#if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
|
|
|
#define U8G_CLASS U8GLIB_ST7920_128X64_4X
|
|
|
|
#if DISABLED(SDSUPPORT) && (LCD_PINS_D4 == SCK_PIN) && (LCD_PINS_ENABLE == MOSI_PIN)
|
|
|
|
#define U8G_PARAM LCD_PINS_RS
|
|
|
|
#else
|
|
|
|
#define U8G_PARAM LCD_PINS_D4, LCD_PINS_ENABLE, LCD_PINS_RS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif ENABLED(U8GLIB_ST7920)
|
|
|
|
// RepRap Discount Full Graphics Smart Controller
|
|
|
|
#if DISABLED(SDSUPPORT) && (LCD_PINS_D4 == SCK_PIN) && (LCD_PINS_ENABLE == MOSI_PIN)
|
|
|
|
#define U8G_CLASS U8GLIB_ST7920_128X64_4X_HAL
|
|
|
|
#define U8G_PARAM LCD_PINS_RS // 2 stripes, HW SPI (shared with SD card, on AVR does not use standard LCD adapter)
|
|
|
|
#else
|
|
|
|
//#define U8G_CLASS U8GLIB_ST7920_128X64_4X
|
|
|
|
//#define U8G_PARAM LCD_PINS_D4, LCD_PINS_ENABLE, LCD_PINS_RS // Original u8glib device. 2 stripes, SW SPI
|
|
|
|
#define U8G_CLASS U8GLIB_ST7920_128X64_RRD
|
|
|
|
#define U8G_PARAM LCD_PINS_D4, LCD_PINS_ENABLE, LCD_PINS_RS // Number of stripes can be adjusted in ultralcd_st7920_u8glib_rrd.h with PAGE_HEIGHT
|
|
|
|
// AVR version ignores these pin settings
|
|
|
|
// HAL version uses these pin settings
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif ENABLED(CARTESIO_UI)
|
|
|
|
// The CartesioUI display
|
|
|
|
//#define U8G_CLASS U8GLIB_DOGM128_2X
|
|
|
|
//#define U8G_PARAM DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, DOGLCD_A0 // 4 stripes
|
|
|
|
#define U8G_CLASS U8GLIB_DOGM128_2X
|
|
|
|
#define U8G_PARAM DOGLCD_CS, DOGLCD_A0 // 4 stripes
|
|
|
|
|
|
|
|
#elif ENABLED(U8GLIB_LM6059_AF)
|
|
|
|
// Based on the Adafruit ST7565 (http://www.adafruit.com/products/250)
|
|
|
|
//#define U8G_CLASS U8GLIB_LM6059
|
|
|
|
//#define U8G_PARAM DOGLCD_CS, DOGLCD_A0 // 8 stripes
|
|
|
|
#define U8G_CLASS U8GLIB_LM6059_2X
|
|
|
|
#define U8G_PARAM DOGLCD_CS, DOGLCD_A0 // 4 stripes
|
|
|
|
|
|
|
|
#elif ENABLED(U8GLIB_ST7565_64128N)
|
|
|
|
// 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
|
|
|
|
#define U8G_CLASS U8GLIB_64128N_2X_HAL
|
|
|
|
#define U8G_PARAM DOGLCD_CS, DOGLCD_A0 // using HW-SPI
|
|
|
|
#else
|
|
|
|
#define U8G_CLASS U8GLIB_64128N_2X_HAL
|
|
|
|
#define U8G_PARAM DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, DOGLCD_A0 // using SW-SPI
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#elif ENABLED(MKS_12864OLED_SSD1306)
|
|
|
|
// MKS 128x64 (SSD1306) OLED I2C LCD
|
|
|
|
#define U8G_CLASS U8GLIB_SSD1306_128X64
|
|
|
|
#define U8G_PARAM DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, DOGLCD_A0 // 8 stripes
|
|
|
|
//#define U8G_CLASS U8GLIB_SSD1306_128X64_2X
|
|
|
|
//#define U8G_PARAM DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, DOGLCD_A0 // 4 stripes
|
|
|
|
|
|
|
|
#elif ENABLED(U8GLIB_SSD1306)
|
|
|
|
// Generic support for SSD1306 OLED I2C LCDs
|
|
|
|
//#define U8G_CLASS U8GLIB_SSD1306_128X64_2X_I2C_2_WIRE
|
|
|
|
//#define U8G_PARAM (U8G_I2C_OPT_NONE | U8G_I2C_OPT_FAST) // 4 stripes
|
|
|
|
#define U8G_CLASS U8GLIB_SSD1306_128X64_2X
|
|
|
|
#define U8G_PARAM (U8G_I2C_OPT_NONE | U8G_I2C_OPT_FAST) // 4 stripes
|
|
|
|
|
|
|
|
#elif ENABLED(MKS_12864OLED)
|
|
|
|
// MKS 128x64 (SH1106) OLED I2C LCD
|
|
|
|
#define U8G_CLASS U8GLIB_SH1106_128X64
|
|
|
|
#define U8G_PARAM DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, DOGLCD_A0 // 8 stripes
|
|
|
|
//#define U8G_CLASS U8GLIB_SH1106_128X64_2X
|
|
|
|
//#define U8G_PARAM DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, DOGLCD_A0 // 4 stripes
|
|
|
|
#elif ENABLED(U8GLIB_SH1106)
|
|
|
|
// Generic support for SH1106 OLED I2C LCDs
|
|
|
|
//#define U8G_CLASS U8GLIB_SH1106_128X64_2X_I2C_2_WIRE
|
|
|
|
//#define U8G_PARAM (U8G_I2C_OPT_NONE | U8G_I2C_OPT_FAST) // 4 stripes
|
|
|
|
#define U8G_CLASS U8GLIB_SH1106_128X64_2X
|
|
|
|
#define U8G_PARAM (U8G_I2C_OPT_NONE | U8G_I2C_OPT_FAST) // 4 stripes
|
|
|
|
#elif ENABLED(U8GLIB_SSD1309)
|
|
|
|
// Generic support for SSD1309 OLED I2C LCDs
|
|
|
|
#define U8G_CLASS U8GLIB_SSD1309_128X64
|
|
|
|
#define U8G_PARAM (U8G_I2C_OPT_NONE | U8G_I2C_OPT_FAST)
|
|
|
|
#elif ENABLED(MINIPANEL)
|
|
|
|
// The MINIPanel display
|
|
|
|
//#define U8G_CLASS U8GLIB_MINI12864
|
|
|
|
//#define U8G_PARAM DOGLCD_CS, DOGLCD_A0 // 8 stripes
|
|
|
|
#define U8G_CLASS U8GLIB_MINI12864_2X
|
|
|
|
#define U8G_PARAM DOGLCD_CS, DOGLCD_A0 // 4 stripes
|
|
|
|
#elif ENABLED(U8GLIB_SH1106_EINSTART)
|
|
|
|
// Connected via motherboard header
|
|
|
|
#define U8G_CLASS U8GLIB_SH1106_128X64
|
|
|
|
#define U8G_PARAM DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, LCD_PINS_DC, LCD_PINS_RS
|
|
|
|
#else
|
|
|
|
// for regular DOGM128 display with HW-SPI
|
|
|
|
//#define U8G_CLASS U8GLIB_DOGM128
|
|
|
|
//#define U8G_PARAM DOGLCD_CS, DOGLCD_A0 // HW-SPI Com: CS, A0 // 8 stripes
|
|
|
|
#define U8G_CLASS U8GLIB_DOGM128_2X
|
|
|
|
#define U8G_PARAM DOGLCD_CS, DOGLCD_A0 // HW-SPI Com: CS, A0 // 4 stripes
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <U8glib.h>
|
|
|
|
#include "dogm/HAL_LCD_class_defines.h"
|
|
|
|
extern U8G_CLASS u8g;
|
|
|
|
|
2018-10-28 03:06:25 +00:00
|
|
|
// DOGM font sizes
|
|
|
|
#define DOG_CHAR_WIDTH 6
|
|
|
|
#define DOG_CHAR_HEIGHT 12
|
|
|
|
#if ENABLED(USE_BIG_EDIT_FONT)
|
|
|
|
#define FONT_MENU_EDIT_NAME u8g_font_9x18
|
|
|
|
#define DOG_CHAR_WIDTH_EDIT 9
|
|
|
|
#define DOG_CHAR_HEIGHT_EDIT 18
|
|
|
|
#else
|
|
|
|
#define FONT_MENU_EDIT_NAME FONT_MENU_NAME
|
|
|
|
#define DOG_CHAR_WIDTH_EDIT DOG_CHAR_WIDTH
|
|
|
|
#define DOG_CHAR_HEIGHT_EDIT DOG_CHAR_HEIGHT
|
|
|
|
#endif
|
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
enum MarlinFont : uint8_t {
|
|
|
|
FONT_STATUSMENU = 1,
|
|
|
|
FONT_SPECIAL,
|
|
|
|
FONT_MENU_EDIT,
|
|
|
|
FONT_MENU,
|
2018-10-23 21:00:34 +00:00
|
|
|
};
|
|
|
|
|
2018-10-28 03:06:25 +00:00
|
|
|
// Only Western languages support big / small fonts
|
|
|
|
#if DISABLED(DISPLAY_CHARSET_ISO10646_1)
|
|
|
|
#undef USE_BIG_EDIT_FONT
|
|
|
|
#undef USE_SMALL_INFOFONT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(USE_SMALL_INFOFONT)
|
|
|
|
extern const u8g_fntpgm_uint8_t u8g_font_6x9[];
|
|
|
|
#define INFO_FONT_HEIGHT 7
|
|
|
|
#else
|
|
|
|
#define INFO_FONT_HEIGHT 8
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// 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))
|
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
void lcd_setFont(const MarlinFont font_nr);
|
|
|
|
|
|
|
|
#if ENABLED(LIGHTWEIGHT_UI)
|
|
|
|
void lcd_in_status(const bool inStatus);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // HAS_GRAPHICAL_LCD
|
|
|
|
|
|
|
|
#if HAS_SPI_LCD || ENABLED(MALYAN_LCD) || ENABLED(EXTENSIBLE_UI)
|
2018-02-04 06:39:01 +00:00
|
|
|
void lcd_init();
|
|
|
|
bool lcd_detected();
|
2018-04-23 15:08:05 +00:00
|
|
|
void lcd_update();
|
2018-10-01 04:44:33 +00:00
|
|
|
void lcd_setalertstatusPGM(PGM_P message);
|
2018-10-23 00:37:48 +00:00
|
|
|
void kill_screen(PGM_P lcd_msg);
|
2018-04-23 15:08:05 +00:00
|
|
|
#else
|
|
|
|
inline void lcd_init() {}
|
|
|
|
inline bool lcd_detected() { return true; }
|
|
|
|
inline void lcd_update() {}
|
2018-10-01 04:44:33 +00:00
|
|
|
inline void lcd_setalertstatusPGM(PGM_P message) { UNUSED(message); }
|
2018-02-04 06:39:01 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#if HAS_SPI_LCD
|
2016-03-27 11:25:33 +00:00
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#include "../Marlin.h"
|
|
|
|
|
2018-01-04 11:06:34 +00:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE)
|
|
|
|
#include "../feature/pause.h"
|
2018-09-11 04:09:26 +00:00
|
|
|
#include "../module/motion.h" // for active_extruder
|
2018-01-04 11:06:34 +00:00
|
|
|
#endif
|
|
|
|
|
2018-09-24 14:40:48 +00:00
|
|
|
void lcd_return_to_status();
|
2015-04-25 03:13:01 +00:00
|
|
|
bool lcd_hasstatus();
|
2015-03-31 01:00:54 +00:00
|
|
|
void lcd_setstatus(const char* message, const bool persist=false);
|
2018-10-01 04:44:33 +00:00
|
|
|
void lcd_setstatusPGM(PGM_P message, const int8_t level=0);
|
|
|
|
void lcd_setalertstatusPGM(PGM_P message);
|
2012-12-12 10:47:03 +00:00
|
|
|
void lcd_reset_alert_level();
|
2018-04-22 05:16:30 +00:00
|
|
|
void lcd_reset_status();
|
2018-10-01 04:44:33 +00:00
|
|
|
void lcd_status_printf_P(const uint8_t level, PGM_P const fmt, ...);
|
2016-07-10 02:50:45 +00:00
|
|
|
void lcd_kill_screen();
|
2018-10-01 04:44:33 +00:00
|
|
|
void kill_screen(PGM_P lcd_msg);
|
2016-11-03 23:03:02 +00:00
|
|
|
|
2018-10-01 10:19:35 +00:00
|
|
|
enum LCDViewAction : uint8_t {
|
|
|
|
LCDVIEW_NONE,
|
|
|
|
LCDVIEW_REDRAW_NOW,
|
|
|
|
LCDVIEW_CALL_REDRAW_NEXT,
|
|
|
|
LCDVIEW_CLEAR_CALL_REDRAW,
|
|
|
|
LCDVIEW_CALL_NO_REDRAW
|
|
|
|
};
|
|
|
|
|
|
|
|
extern LCDViewAction lcdDrawUpdate;
|
2017-05-29 20:15:13 +00:00
|
|
|
inline void lcd_refresh() { lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; }
|
|
|
|
|
2016-08-02 04:10:53 +00:00
|
|
|
#if HAS_BUZZER
|
2017-09-14 20:33:07 +00:00
|
|
|
void lcd_buzz(const long duration, const uint16_t freq);
|
2018-10-23 21:00:34 +00:00
|
|
|
#else
|
|
|
|
inline void lcd_buzz(const long duration, const uint16_t freq) { UNUSED(duration); UNUSED(freq); }
|
2015-06-17 14:31:14 +00:00
|
|
|
#endif
|
|
|
|
|
2018-05-01 02:16:31 +00:00
|
|
|
void lcd_quick_feedback(const bool clear_buttons); // Audible feedback for a button click - could also be visual
|
|
|
|
|
2015-07-31 05:26:53 +00:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
|
2015-03-31 01:00:54 +00:00
|
|
|
void dontExpireStatus();
|
|
|
|
#endif
|
|
|
|
|
2017-10-15 07:15:19 +00:00
|
|
|
#if ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
|
|
|
extern uint8_t progress_bar_percent;
|
|
|
|
#endif
|
|
|
|
|
2017-06-10 05:12:18 +00:00
|
|
|
#if ENABLED(ADC_KEYPAD)
|
|
|
|
uint8_t get_ADC_keyValue();
|
|
|
|
#endif
|
|
|
|
|
2018-10-25 20:17:53 +00:00
|
|
|
#if HAS_LCD_CONTRAST
|
2018-01-10 05:41:14 +00:00
|
|
|
extern int16_t lcd_contrast;
|
|
|
|
void set_lcd_contrast(const int16_t value);
|
2017-07-02 05:35:41 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-25 20:17:53 +00:00
|
|
|
#if ENABLED(DOGLCD)
|
2018-10-27 18:07:03 +00:00
|
|
|
#define SETCURSOR(col, row) lcd_moveto(col * (DOG_CHAR_WIDTH), (row + 1) * (DOG_CHAR_HEIGHT))
|
|
|
|
#define SETCURSOR_RJ(len, row) lcd_moveto(LCD_PIXEL_WIDTH - len * (DOG_CHAR_WIDTH), (row + 1) * (DOG_CHAR_HEIGHT))
|
2018-10-25 20:17:53 +00:00
|
|
|
#else
|
|
|
|
#define SETCURSOR(col, row) lcd_moveto(col, row)
|
|
|
|
#define SETCURSOR_RJ(len, row) lcd_moveto(LCD_WIDTH - len, row)
|
|
|
|
#endif
|
|
|
|
|
2017-07-02 05:35:41 +00:00
|
|
|
#if ENABLED(SHOW_BOOTSCREEN)
|
|
|
|
void lcd_bootscreen();
|
2015-03-20 09:50:28 +00:00
|
|
|
#endif
|
2013-07-14 08:28:26 +00:00
|
|
|
|
2012-12-03 11:52:00 +00:00
|
|
|
#define LCD_UPDATE_INTERVAL 100
|
2018-02-27 04:52:57 +00:00
|
|
|
#define BUTTON_EXISTS(BN) (defined(BTN_## BN) && BTN_## BN >= 0)
|
|
|
|
#define BUTTON_PRESSED(BN) !READ(BTN_## BN)
|
2012-12-03 11:52:00 +00:00
|
|
|
|
2018-10-23 21:00:34 +00:00
|
|
|
#if HAS_LCD_MENU
|
2016-10-27 07:12:54 +00:00
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
typedef void (*screenFunc_t)();
|
2017-10-03 04:33:57 +00:00
|
|
|
typedef void (*menuAction_t)();
|
2018-10-23 21:00:34 +00:00
|
|
|
extern screenFunc_t currentScreen;
|
|
|
|
void lcd_goto_screen(screenFunc_t screen, const uint32_t encoder=0);
|
|
|
|
|
|
|
|
extern bool lcd_clicked, defer_return_to_status;
|
2017-09-06 11:28:32 +00:00
|
|
|
|
2018-10-07 20:34:41 +00:00
|
|
|
extern int16_t lcd_preheat_hotend_temp[2], lcd_preheat_bed_temp[2];
|
|
|
|
extern uint8_t lcd_preheat_fan_speed[2];
|
2018-05-01 02:16:31 +00:00
|
|
|
|
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(G26_MESH_VALIDATION)
|
|
|
|
extern bool lcd_external_control;
|
|
|
|
#else
|
|
|
|
constexpr bool lcd_external_control = false;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(LCD_BED_LEVELING)
|
|
|
|
extern bool lcd_wait_for_move;
|
|
|
|
#else
|
|
|
|
constexpr bool lcd_wait_for_move = false;
|
|
|
|
#endif
|
|
|
|
|
2018-10-23 21:00:34 +00:00
|
|
|
// Manual Movement
|
|
|
|
constexpr float manual_feedrate_mm_m[XYZE] = MANUAL_FEEDRATE;
|
|
|
|
#if IS_KINEMATIC
|
|
|
|
extern bool processing_manual_move;
|
|
|
|
#else
|
|
|
|
constexpr bool processing_manual_move = false;
|
|
|
|
#endif
|
2016-04-28 16:57:21 +00:00
|
|
|
|
2017-05-26 18:01:02 +00:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE)
|
2018-01-04 11:06:34 +00:00
|
|
|
void lcd_advanced_pause_show_message(const AdvancedPauseMessage message,
|
|
|
|
const AdvancedPauseMode mode=ADVANCED_PAUSE_MODE_PAUSE_PRINT,
|
|
|
|
const uint8_t extruder=active_extruder);
|
2018-05-22 01:32:16 +00:00
|
|
|
#endif
|
2017-09-06 11:28:32 +00:00
|
|
|
|
2017-11-23 23:59:43 +00:00
|
|
|
#if ENABLED(G26_MESH_VALIDATION)
|
|
|
|
void lcd_chirp();
|
|
|
|
#endif
|
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
2018-02-04 06:39:01 +00:00
|
|
|
void lcd_mesh_edit_setup(const float &initial);
|
2017-09-06 11:28:32 +00:00
|
|
|
float lcd_mesh_edit();
|
2018-02-04 06:39:01 +00:00
|
|
|
void lcd_z_offset_edit_setup(const float &initial);
|
2017-09-06 11:28:32 +00:00
|
|
|
float lcd_z_offset_edit();
|
|
|
|
#endif
|
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#if ENABLED(SCROLL_LONG_FILENAMES)
|
|
|
|
extern uint8_t filename_scroll_pos, filename_scroll_max;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // ULTIPANEL
|
2015-03-20 09:50:28 +00:00
|
|
|
|
2016-12-27 20:38:36 +00:00
|
|
|
#if ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
|
2015-04-13 01:07:08 +00:00
|
|
|
extern millis_t previous_lcd_status_ms;
|
2014-11-11 03:43:58 +00:00
|
|
|
#endif
|
2016-06-11 21:12:00 +00:00
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#if ENABLED(STATUS_MESSAGE_SCROLLING)
|
|
|
|
extern uint8_t status_scroll_offset;
|
2016-07-28 21:23:21 +00:00
|
|
|
#endif
|
2013-07-14 13:35:54 +00:00
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
bool lcd_blink();
|
|
|
|
|
2017-11-23 23:59:43 +00:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(G26_MESH_VALIDATION)
|
|
|
|
bool is_lcd_clicked();
|
2017-12-07 03:28:04 +00:00
|
|
|
void wait_for_release();
|
2017-11-23 23:59:43 +00:00
|
|
|
#endif
|
|
|
|
|
2018-10-08 20:44:05 +00:00
|
|
|
#elif ENABLED(EXTENSIBLE_UI)
|
2018-10-24 07:27:19 +00:00
|
|
|
|
2018-10-08 20:44:05 +00:00
|
|
|
// These functions are defined elsewhere
|
|
|
|
void lcd_setstatus(const char* const message, const bool persist=false);
|
|
|
|
void lcd_setstatusPGM(const char* const message, const int8_t level=0);
|
|
|
|
void lcd_status_printf_P(const uint8_t level, const char * const fmt, ...);
|
|
|
|
void lcd_reset_status();
|
|
|
|
void lcd_refresh();
|
|
|
|
void lcd_reset_alert_level();
|
|
|
|
bool lcd_hasstatus();
|
2018-10-24 07:27:19 +00:00
|
|
|
|
2018-04-23 15:08:05 +00:00
|
|
|
#else // MALYAN_LCD or no LCD
|
2017-05-30 01:12:10 +00:00
|
|
|
|
2017-12-05 07:57:29 +00:00
|
|
|
constexpr bool lcd_wait_for_move = false;
|
|
|
|
|
2018-02-04 06:39:01 +00:00
|
|
|
inline void lcd_refresh() {}
|
2016-10-27 07:12:54 +00:00
|
|
|
inline bool lcd_hasstatus() { return false; }
|
2016-11-24 06:54:21 +00:00
|
|
|
inline void lcd_setstatus(const char* const message, const bool persist=false) { UNUSED(message); UNUSED(persist); }
|
2018-10-01 04:44:33 +00:00
|
|
|
inline void lcd_setstatusPGM(PGM_P const message, const int8_t level=0) { UNUSED(message); UNUSED(level); }
|
|
|
|
inline void lcd_status_printf_P(const uint8_t level, PGM_P const fmt, ...) { UNUSED(level); UNUSED(fmt); }
|
2016-10-27 07:12:54 +00:00
|
|
|
inline void lcd_reset_alert_level() {}
|
2018-04-22 05:16:30 +00:00
|
|
|
inline void lcd_reset_status() {}
|
2012-12-03 11:52:00 +00:00
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#endif
|
2012-12-03 11:52:00 +00:00
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#if HAS_LCD_MENU
|
2018-05-22 01:32:16 +00:00
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
#if HAS_DIGITAL_ENCODER
|
2018-05-22 01:32:16 +00:00
|
|
|
|
|
|
|
// Wheel spin pins where BA is 00, 10, 11, 01 (1 bit always changes)
|
|
|
|
#define BLEN_A 0
|
|
|
|
#define BLEN_B 1
|
|
|
|
|
|
|
|
#define EN_A _BV(BLEN_A)
|
|
|
|
#define EN_B _BV(BLEN_B)
|
|
|
|
|
|
|
|
#if BUTTON_EXISTS(ENC)
|
|
|
|
#define BLEN_C 2
|
|
|
|
#define EN_C _BV(BLEN_C)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if BUTTON_EXISTS(BACK)
|
|
|
|
#define BLEN_D 3
|
|
|
|
#define EN_D _BV(BLEN_D)
|
|
|
|
#define LCD_BACK_CLICKED (buttons & EN_D)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // NEWPANEL
|
|
|
|
|
|
|
|
extern volatile uint8_t buttons; // The last-checked buttons in a bit array.
|
|
|
|
void lcd_buttons_update();
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
inline void lcd_buttons_update() {}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2018-10-23 21:00:34 +00:00
|
|
|
#if ENABLED(LCD_HAS_SLOW_BUTTONS)
|
|
|
|
extern volatile uint8_t slow_buttons;
|
|
|
|
#endif
|
|
|
|
|
2018-05-23 01:34:59 +00:00
|
|
|
#if ENABLED(REPRAPWORLD_KEYPAD)
|
|
|
|
#ifdef EN_C
|
|
|
|
#define LCD_CLICKED ((buttons & EN_C) || REPRAPWORLD_KEYPAD_MOVE_MENU)
|
|
|
|
#else
|
|
|
|
#define LCD_CLICKED REPRAPWORLD_KEYPAD_MOVE_MENU
|
|
|
|
#endif
|
|
|
|
#elif defined(EN_C)
|
|
|
|
#define LCD_CLICKED (buttons & EN_C)
|
|
|
|
#else
|
|
|
|
#define LCD_CLICKED false
|
|
|
|
#endif
|
|
|
|
|
2018-10-24 07:27:19 +00:00
|
|
|
extern uint8_t lcd_status_update_delay;
|
|
|
|
extern char lcd_status_message[];
|
|
|
|
|
2017-05-30 01:12:10 +00:00
|
|
|
#define LCD_MESSAGEPGM(x) lcd_setstatusPGM(PSTR(x))
|
|
|
|
#define LCD_ALERTMESSAGEPGM(x) lcd_setalertstatusPGM(PSTR(x))
|
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
// For i2c define BUZZ to use lcd_buzz
|
|
|
|
#if ENABLED(LCD_USE_I2C_BUZZER)
|
|
|
|
#define BUZZ(d,f) lcd_buzz(d, f)
|
2017-07-03 15:06:23 +00:00
|
|
|
#endif
|
|
|
|
|
2017-10-27 04:39:51 +00:00
|
|
|
#if ENABLED(SD_REPRINT_LAST_SELECTED_FILE)
|
|
|
|
void lcd_reselect_last_file();
|
|
|
|
#endif
|
|
|
|
|
2018-10-23 21:00:34 +00:00
|
|
|
// LCD implementations
|
|
|
|
void lcd_implementation_clear();
|
|
|
|
void lcd_implementation_init();
|
2018-10-24 07:27:19 +00:00
|
|
|
|
|
|
|
#if HAS_GRAPHICAL_LCD
|
|
|
|
extern bool drawing_screen, first_page;
|
|
|
|
#elif HAS_SPI_LCD
|
|
|
|
constexpr bool first_page = true;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if HAS_CHARACTER_LCD
|
|
|
|
|
|
|
|
enum HD44780CharSet : uint8_t {
|
|
|
|
CHARSET_MENU,
|
|
|
|
CHARSET_INFO,
|
|
|
|
CHARSET_BOOT
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|