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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-06-02 20:44:17 +02:00
|
|
|
#ifndef ULTRALCD_H
|
|
|
|
#define ULTRALCD_H
|
2012-11-06 12:06:41 +01:00
|
|
|
|
2017-12-07 00:14:54 +01:00
|
|
|
#include "MarlinConfig.h"
|
2016-03-27 13:25:33 +02:00
|
|
|
|
2018-02-05 00:02:45 +01:00
|
|
|
#if ENABLED(ULTRA_LCD) || ENABLED(MALYAN_LCD)
|
|
|
|
void lcd_init();
|
|
|
|
bool lcd_detected();
|
2018-04-23 23:50:33 +02:00
|
|
|
void lcd_update();
|
|
|
|
void lcd_setalertstatusPGM(const char* message);
|
|
|
|
#else
|
|
|
|
inline void lcd_init() {}
|
|
|
|
inline bool lcd_detected() { return true; }
|
|
|
|
inline void lcd_update() {}
|
|
|
|
inline void lcd_setalertstatusPGM(const char* message) { UNUSED(message); }
|
2018-02-05 00:02:45 +01:00
|
|
|
#endif
|
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#if ENABLED(ULTRA_LCD)
|
2016-03-27 13:25:33 +02:00
|
|
|
|
2017-12-07 00:14:54 +01:00
|
|
|
#include "Marlin.h"
|
|
|
|
|
2017-06-20 05:39:23 +02:00
|
|
|
int16_t lcd_strlen(const char* s);
|
|
|
|
int16_t lcd_strlen_P(const char* s);
|
2015-04-25 05:13:01 +02:00
|
|
|
bool lcd_hasstatus();
|
2015-03-31 03:00:54 +02:00
|
|
|
void lcd_setstatus(const char* message, const bool persist=false);
|
2017-05-29 18:51:29 +02:00
|
|
|
void lcd_setstatusPGM(const char* message, const int8_t level=0);
|
2017-05-30 03:12:10 +02:00
|
|
|
void lcd_setalertstatusPGM(const char* message);
|
2012-12-12 11:47:03 +01:00
|
|
|
void lcd_reset_alert_level();
|
2018-04-22 07:15:57 +02:00
|
|
|
void lcd_reset_status();
|
2018-02-05 00:02:45 +01:00
|
|
|
void lcd_status_printf_P(const uint8_t level, const char * const fmt, ...);
|
2016-07-10 04:50:45 +02:00
|
|
|
void lcd_kill_screen();
|
|
|
|
void kill_screen(const char* lcd_msg);
|
2016-11-04 00:03:02 +01:00
|
|
|
|
2017-05-29 22:15:13 +02:00
|
|
|
extern uint8_t lcdDrawUpdate;
|
|
|
|
inline void lcd_refresh() { lcdDrawUpdate = LCDVIEW_CLEAR_CALL_REDRAW; }
|
|
|
|
|
2016-08-02 06:10:53 +02:00
|
|
|
#if HAS_BUZZER
|
2017-12-07 00:14:54 +01:00
|
|
|
void lcd_buzz(const long duration, const uint16_t freq);
|
2015-06-17 16:31:14 +02:00
|
|
|
#endif
|
|
|
|
|
2018-05-01 00:31:48 +02:00
|
|
|
void lcd_quick_feedback(const bool clear_buttons); // Audible feedback for a button click - could also be visual
|
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#if ENABLED(LCD_PROGRESS_BAR) && PROGRESS_MSG_EXPIRE > 0
|
2015-03-31 03:00:54 +02:00
|
|
|
void dontExpireStatus();
|
|
|
|
#endif
|
|
|
|
|
2018-02-05 00:02:45 +01:00
|
|
|
#if ENABLED(LCD_SET_PROGRESS_MANUALLY)
|
|
|
|
extern uint8_t progress_bar_percent;
|
|
|
|
#endif
|
|
|
|
|
2017-06-10 07:12:18 +02:00
|
|
|
#if ENABLED(ADC_KEYPAD)
|
|
|
|
uint8_t get_ADC_keyValue();
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#if ENABLED(DOGLCD)
|
2018-01-12 01:32:41 +01:00
|
|
|
extern int16_t lcd_contrast;
|
|
|
|
void set_lcd_contrast(const int16_t value);
|
2017-07-02 07:35:41 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(SHOW_BOOTSCREEN)
|
|
|
|
void lcd_bootscreen();
|
2015-03-20 10:50:28 +01:00
|
|
|
#endif
|
2013-07-14 10:28:26 +02:00
|
|
|
|
2012-12-03 12:52:00 +01:00
|
|
|
#define LCD_UPDATE_INTERVAL 100
|
2018-02-27 05:53:08 +01:00
|
|
|
#define BUTTON_EXISTS(BN) (defined(BTN_## BN) && BTN_## BN >= 0)
|
|
|
|
#define BUTTON_PRESSED(BN) !READ(BTN_## BN)
|
2012-12-03 12:52:00 +01:00
|
|
|
|
2015-07-31 07:26:53 +02:00
|
|
|
#if ENABLED(ULTIPANEL)
|
2016-10-27 09:12:54 +02:00
|
|
|
|
2018-02-05 00:23:39 +01:00
|
|
|
extern bool defer_return_to_status;
|
|
|
|
|
|
|
|
// Function pointer to menu functions.
|
|
|
|
typedef void (*screenFunc_t)();
|
|
|
|
typedef void (*menuAction_t)();
|
|
|
|
|
2018-05-01 00:31:48 +02:00
|
|
|
extern int16_t lcd_preheat_hotend_temp[2], lcd_preheat_bed_temp[2], lcd_preheat_fan_speed[2];
|
|
|
|
|
|
|
|
#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-02-05 00:23:39 +01:00
|
|
|
void lcd_goto_screen(screenFunc_t screen, const uint32_t encoder=0);
|
|
|
|
|
2018-02-27 05:53:08 +01:00
|
|
|
// Encoder click is directly connected
|
|
|
|
|
2016-10-27 09:12:54 +02:00
|
|
|
#define BLEN_A 0
|
|
|
|
#define BLEN_B 1
|
2018-02-27 05:53:08 +01:00
|
|
|
|
|
|
|
#define EN_A (_BV(BLEN_A))
|
|
|
|
#define EN_B (_BV(BLEN_B))
|
|
|
|
|
2016-10-27 09:12:54 +02:00
|
|
|
#if BUTTON_EXISTS(ENC)
|
|
|
|
#define BLEN_C 2
|
2018-02-27 05:53:08 +01:00
|
|
|
#define EN_C (_BV(BLEN_C))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if BUTTON_EXISTS(BACK)
|
|
|
|
#define BLEN_D 3
|
2018-02-28 10:27:36 +01:00
|
|
|
#define EN_D _BV(BLEN_D)
|
2018-02-27 05:53:08 +01:00
|
|
|
#define LCD_BACK_CLICKED (buttons & EN_D)
|
2016-10-27 09:12:54 +02:00
|
|
|
#endif
|
|
|
|
|
2017-03-20 12:10:31 +01:00
|
|
|
extern volatile uint8_t buttons; // The last-checked buttons in a bit array.
|
2016-06-11 23:12:00 +02:00
|
|
|
void lcd_buttons_update();
|
2017-03-20 12:10:31 +01:00
|
|
|
void lcd_completion_feedback(const bool good=true);
|
2016-04-28 18:57:21 +02:00
|
|
|
|
2017-05-26 20:01:02 +02:00
|
|
|
#if ENABLED(ADVANCED_PAUSE_FEATURE)
|
2018-02-05 00:23:39 +01:00
|
|
|
extern uint8_t active_extruder;
|
2017-12-27 05:51:55 +01:00
|
|
|
void lcd_advanced_pause_show_message(const AdvancedPauseMessage message,
|
|
|
|
const AdvancedPauseMode mode=ADVANCED_PAUSE_MODE_PAUSE_PRINT,
|
|
|
|
const uint8_t extruder=active_extruder);
|
2017-05-26 20:01:02 +02:00
|
|
|
#endif // ADVANCED_PAUSE_FEATURE
|
2016-04-28 18:57:21 +02:00
|
|
|
|
2018-02-05 00:23:39 +01:00
|
|
|
#if ENABLED(G26_MESH_VALIDATION)
|
|
|
|
void lcd_chirp();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
|
|
|
void lcd_mesh_edit_setup(const float &initial);
|
|
|
|
float lcd_mesh_edit();
|
|
|
|
void lcd_z_offset_edit_setup(const float &initial);
|
|
|
|
float lcd_z_offset_edit();
|
|
|
|
#endif
|
|
|
|
|
2012-12-12 11:47:03 +01:00
|
|
|
#else
|
2012-12-03 12:52:00 +01:00
|
|
|
|
2016-10-27 09:12:54 +02:00
|
|
|
inline void lcd_buttons_update() {}
|
|
|
|
|
|
|
|
#endif
|
2015-03-20 10:50:28 +01:00
|
|
|
|
2016-12-27 21:38:36 +01:00
|
|
|
#if ENABLED(FILAMENT_LCD_DISPLAY) && ENABLED(SDSUPPORT)
|
2015-04-13 03:07:08 +02:00
|
|
|
extern millis_t previous_lcd_status_ms;
|
2014-11-11 04:43:58 +01:00
|
|
|
#endif
|
2016-06-11 23:12:00 +02:00
|
|
|
|
2016-03-29 04:33:04 +02:00
|
|
|
bool lcd_blink();
|
2014-11-25 01:56:37 +01:00
|
|
|
|
2016-07-28 23:23:21 +02:00
|
|
|
#if ENABLED(REPRAPWORLD_KEYPAD) // is also ULTIPANEL and NEWPANEL
|
2016-04-08 02:39:16 +02:00
|
|
|
|
|
|
|
#define REPRAPWORLD_BTN_OFFSET 0 // bit offset into buttons for shift register values
|
|
|
|
|
|
|
|
#define BLEN_REPRAPWORLD_KEYPAD_F3 0
|
|
|
|
#define BLEN_REPRAPWORLD_KEYPAD_F2 1
|
|
|
|
#define BLEN_REPRAPWORLD_KEYPAD_F1 2
|
|
|
|
#define BLEN_REPRAPWORLD_KEYPAD_DOWN 3
|
|
|
|
#define BLEN_REPRAPWORLD_KEYPAD_RIGHT 4
|
|
|
|
#define BLEN_REPRAPWORLD_KEYPAD_MIDDLE 5
|
|
|
|
#define BLEN_REPRAPWORLD_KEYPAD_UP 6
|
|
|
|
#define BLEN_REPRAPWORLD_KEYPAD_LEFT 7
|
|
|
|
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_F3 (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_F3))
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_F2 (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_F2))
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_F1 (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_F1))
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_DOWN (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_DOWN))
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_RIGHT (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_RIGHT))
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_MIDDLE (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_MIDDLE))
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_UP (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_UP))
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_LEFT (_BV(REPRAPWORLD_BTN_OFFSET + BLEN_REPRAPWORLD_KEYPAD_LEFT))
|
|
|
|
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_Z_DOWN (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_F3)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_Z_UP (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_F2)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_Y_DOWN (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_DOWN)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_X_RIGHT (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_RIGHT)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_Y_UP (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_UP)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_X_LEFT (buttons_reprapworld_keypad & EN_REPRAPWORLD_KEYPAD_LEFT)
|
|
|
|
|
2017-06-10 07:12:18 +02:00
|
|
|
#if ENABLED(ADC_KEYPAD)
|
2017-11-14 00:09:09 +01:00
|
|
|
#define KEYPAD_HOME EN_REPRAPWORLD_KEYPAD_F1
|
|
|
|
#define KEYPAD_EN_C EN_REPRAPWORLD_KEYPAD_MIDDLE
|
2017-06-10 07:12:18 +02:00
|
|
|
#else
|
2017-11-14 00:09:09 +01:00
|
|
|
#define KEYPAD_HOME EN_REPRAPWORLD_KEYPAD_MIDDLE
|
|
|
|
#define KEYPAD_EN_C EN_REPRAPWORLD_KEYPAD_F1
|
2017-06-10 07:12:18 +02:00
|
|
|
#endif
|
2017-11-14 00:09:09 +01:00
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_HOME (buttons_reprapworld_keypad & KEYPAD_HOME)
|
2017-06-10 07:12:18 +02:00
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_MENU (buttons_reprapworld_keypad & KEYPAD_EN_C)
|
|
|
|
|
|
|
|
#if BUTTON_EXISTS(ENC)
|
|
|
|
#define LCD_CLICKED ((buttons & EN_C) || REPRAPWORLD_KEYPAD_MOVE_MENU)
|
|
|
|
#else
|
|
|
|
#define LCD_CLICKED REPRAPWORLD_KEYPAD_MOVE_MENU
|
|
|
|
#endif
|
|
|
|
|
2016-06-04 10:10:51 +02:00
|
|
|
#define REPRAPWORLD_KEYPAD_PRESSED (buttons_reprapworld_keypad & ( \
|
|
|
|
EN_REPRAPWORLD_KEYPAD_F3 | \
|
|
|
|
EN_REPRAPWORLD_KEYPAD_F2 | \
|
|
|
|
EN_REPRAPWORLD_KEYPAD_F1 | \
|
|
|
|
EN_REPRAPWORLD_KEYPAD_DOWN | \
|
|
|
|
EN_REPRAPWORLD_KEYPAD_RIGHT | \
|
|
|
|
EN_REPRAPWORLD_KEYPAD_MIDDLE | \
|
|
|
|
EN_REPRAPWORLD_KEYPAD_UP | \
|
|
|
|
EN_REPRAPWORLD_KEYPAD_LEFT) \
|
|
|
|
)
|
|
|
|
|
2016-07-28 23:23:21 +02:00
|
|
|
#elif ENABLED(NEWPANEL)
|
2018-02-27 05:53:08 +01:00
|
|
|
|
2016-07-28 23:23:21 +02:00
|
|
|
#define LCD_CLICKED (buttons & EN_C)
|
2018-02-27 05:53:08 +01:00
|
|
|
|
2016-10-26 08:42:52 +02:00
|
|
|
#else
|
2018-02-27 05:53:08 +01:00
|
|
|
|
2016-10-26 08:42:52 +02:00
|
|
|
#define LCD_CLICKED false
|
2018-02-27 05:53:08 +01:00
|
|
|
|
2016-07-28 23:23:21 +02:00
|
|
|
#endif
|
2013-07-14 15:35:54 +02:00
|
|
|
|
2017-11-24 01:13:17 +01:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL) || ENABLED(G26_MESH_VALIDATION)
|
|
|
|
bool is_lcd_clicked();
|
2017-12-06 23:08:37 +01:00
|
|
|
void wait_for_release();
|
2017-11-24 01:13:17 +01:00
|
|
|
#endif
|
|
|
|
|
2018-04-23 23:50:33 +02:00
|
|
|
#else // MALYAN_LCD or no LCD
|
2017-05-30 03:12:10 +02:00
|
|
|
|
2018-02-05 00:02:45 +01:00
|
|
|
constexpr bool lcd_wait_for_move = false;
|
|
|
|
|
|
|
|
inline void lcd_refresh() {}
|
|
|
|
inline void lcd_buttons_update() {}
|
2016-10-27 09:12:54 +02:00
|
|
|
inline bool lcd_hasstatus() { return false; }
|
2016-11-24 07:54:21 +01:00
|
|
|
inline void lcd_setstatus(const char* const message, const bool persist=false) { UNUSED(message); UNUSED(persist); }
|
2017-05-29 18:51:29 +02:00
|
|
|
inline void lcd_setstatusPGM(const char* const message, const int8_t level=0) { UNUSED(message); UNUSED(level); }
|
2017-04-02 07:46:37 +02:00
|
|
|
inline void lcd_status_printf_P(const uint8_t level, const char * const fmt, ...) { UNUSED(level); UNUSED(fmt); }
|
2016-10-27 09:12:54 +02:00
|
|
|
inline void lcd_reset_alert_level() {}
|
2018-04-22 07:15:57 +02:00
|
|
|
inline void lcd_reset_status() {}
|
2012-12-03 12:52:00 +01:00
|
|
|
|
2016-10-27 09:12:54 +02:00
|
|
|
#endif // ULTRA_LCD
|
2012-12-03 12:52:00 +01:00
|
|
|
|
2017-05-30 03:12:10 +02:00
|
|
|
#define LCD_MESSAGEPGM(x) lcd_setstatusPGM(PSTR(x))
|
|
|
|
#define LCD_ALERTMESSAGEPGM(x) lcd_setalertstatusPGM(PSTR(x))
|
|
|
|
|
2017-10-27 06:54:01 +02:00
|
|
|
#if ENABLED(SD_REPRINT_LAST_SELECTED_FILE)
|
|
|
|
void lcd_reselect_last_file();
|
|
|
|
#endif
|
|
|
|
|
2018-04-16 01:26:25 +02:00
|
|
|
#if ENABLED(ULTIPANEL) && ENABLED(SDSUPPORT)
|
|
|
|
extern bool abort_sd_printing;
|
|
|
|
#else
|
|
|
|
constexpr bool abort_sd_printing = false;
|
|
|
|
#endif
|
|
|
|
|
2016-10-27 09:12:54 +02:00
|
|
|
#endif // ULTRALCD_H
|