2020-06-16 02:05:33 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (c) 2020 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
|
2020-07-23 03:20:14 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-06-16 02:05:33 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
#include "../../../../inc/MarlinConfigPre.h"
|
|
|
|
|
2020-07-25 05:52:07 +00:00
|
|
|
#if HAS_TFT_LVGL_UI
|
2020-06-16 02:05:33 +00:00
|
|
|
|
|
|
|
#include "draw_ui.h"
|
2020-10-21 17:45:27 +00:00
|
|
|
#include <lv_conf.h>
|
2020-06-16 02:05:33 +00:00
|
|
|
|
2020-10-21 17:45:27 +00:00
|
|
|
#include "../../../../MarlinCore.h" // for marlin_state
|
2020-06-16 02:05:33 +00:00
|
|
|
#include "../../../../module/temperature.h"
|
|
|
|
#include "../../../../module/motion.h"
|
|
|
|
#include "../../../../sd/cardreader.h"
|
|
|
|
#include "../../../../gcode/queue.h"
|
2020-09-21 01:55:02 +00:00
|
|
|
#include "../../../../gcode/gcode.h"
|
2020-10-21 17:45:27 +00:00
|
|
|
#include "../../../../inc/MarlinConfig.h"
|
2020-06-16 02:05:33 +00:00
|
|
|
|
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
|
|
|
#include "../../../../feature/powerloss.h"
|
|
|
|
#endif
|
2020-10-21 17:45:27 +00:00
|
|
|
|
2020-06-16 19:33:17 +00:00
|
|
|
#if BOTH(LCD_SET_PROGRESS_MANUALLY, USE_M73_REMAINING_TIME)
|
2020-10-17 00:36:25 +00:00
|
|
|
#include "../../../marlinui.h"
|
2020-06-16 19:33:17 +00:00
|
|
|
#endif
|
2020-06-16 02:05:33 +00:00
|
|
|
|
2020-10-23 01:22:17 +00:00
|
|
|
extern lv_group_t *g;
|
|
|
|
static lv_obj_t *scr;
|
|
|
|
static lv_obj_t *labelExt1, *labelFan, *labelZpos, *labelTime;
|
|
|
|
static lv_obj_t *labelPause, *labelStop, *labelOperat;
|
|
|
|
static lv_obj_t *bar1, *bar1ValueText;
|
2021-03-29 08:19:38 +00:00
|
|
|
static lv_obj_t *buttonPause, *buttonOperat, *buttonStop, *buttonExt1, *buttonExt2, *buttonBedstate, *buttonFanstate, *buttonZpos;
|
2020-10-23 01:22:17 +00:00
|
|
|
|
2021-03-24 10:40:28 +00:00
|
|
|
#if ENABLED(HAS_MULTI_EXTRUDER)
|
|
|
|
static lv_obj_t *labelExt2;
|
|
|
|
#endif
|
2020-06-16 02:05:33 +00:00
|
|
|
|
|
|
|
#if HAS_HEATED_BED
|
|
|
|
static lv_obj_t* labelBed;
|
|
|
|
#endif
|
|
|
|
|
2020-10-24 04:37:45 +00:00
|
|
|
enum {
|
|
|
|
ID_PAUSE = 1,
|
|
|
|
ID_STOP,
|
2021-03-29 08:19:38 +00:00
|
|
|
ID_OPTION,
|
|
|
|
ID_TEMP_EXT,
|
|
|
|
ID_TEMP_BED,
|
|
|
|
ID_BABYSTEP,
|
|
|
|
ID_FAN
|
2020-10-24 04:37:45 +00:00
|
|
|
};
|
2020-06-16 02:05:33 +00:00
|
|
|
|
2020-10-21 17:45:27 +00:00
|
|
|
bool once_flag; // = false
|
|
|
|
extern bool flash_preview_begin, default_preview_flg, gcode_preview_over;
|
2020-06-16 02:05:33 +00:00
|
|
|
extern uint32_t To_pre_view;
|
|
|
|
|
2020-10-24 04:37:45 +00:00
|
|
|
static void event_handler(lv_obj_t *obj, lv_event_t event) {
|
|
|
|
if (event != LV_EVENT_RELEASED) return;
|
|
|
|
if (gcode_preview_over) return;
|
2020-06-16 02:05:33 +00:00
|
|
|
switch (obj->mks_obj_id) {
|
|
|
|
case ID_PAUSE:
|
2020-10-24 04:37:45 +00:00
|
|
|
if (uiCfg.print_state == WORKING) {
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
card.pauseSDPrint();
|
|
|
|
stop_print_time();
|
|
|
|
uiCfg.print_state = PAUSING;
|
|
|
|
#endif
|
|
|
|
lv_imgbtn_set_src_both(buttonPause, "F:/bmp_resume.bin");
|
|
|
|
lv_label_set_text(labelPause, printing_menu.resume);
|
|
|
|
lv_obj_align(labelPause, buttonPause, LV_ALIGN_CENTER, 30, 0);
|
2020-06-16 02:05:33 +00:00
|
|
|
}
|
2020-10-24 04:37:45 +00:00
|
|
|
else if (uiCfg.print_state == PAUSED) {
|
|
|
|
uiCfg.print_state = RESUMING;
|
|
|
|
lv_imgbtn_set_src_both(obj, "F:/bmp_pause.bin");
|
|
|
|
lv_label_set_text(labelPause, printing_menu.pause);
|
|
|
|
lv_obj_align(labelPause, buttonPause, LV_ALIGN_CENTER, 30, 0);
|
2020-06-16 02:05:33 +00:00
|
|
|
}
|
2020-10-24 04:37:45 +00:00
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
|
|
|
else if (uiCfg.print_state == REPRINTING) {
|
|
|
|
uiCfg.print_state = REPRINTED;
|
|
|
|
lv_imgbtn_set_src_both(obj, "F:/bmp_pause.bin");
|
|
|
|
lv_label_set_text(labelPause, printing_menu.pause);
|
|
|
|
lv_obj_align(labelPause, buttonPause, LV_ALIGN_CENTER, 30, 0);
|
|
|
|
print_time.minutes = recovery.info.print_job_elapsed / 60;
|
|
|
|
print_time.seconds = recovery.info.print_job_elapsed % 60;
|
|
|
|
print_time.hours = print_time.minutes / 60;
|
|
|
|
}
|
|
|
|
#endif
|
2020-06-16 02:05:33 +00:00
|
|
|
break;
|
|
|
|
case ID_STOP:
|
2020-10-24 04:37:45 +00:00
|
|
|
lv_clear_printing();
|
|
|
|
lv_draw_dialog(DIALOG_TYPE_STOP);
|
2020-06-16 02:05:33 +00:00
|
|
|
break;
|
|
|
|
case ID_OPTION:
|
2020-10-24 04:37:45 +00:00
|
|
|
lv_clear_printing();
|
|
|
|
lv_draw_operation();
|
2020-06-16 02:05:33 +00:00
|
|
|
break;
|
2021-03-29 08:19:38 +00:00
|
|
|
case ID_TEMP_EXT:
|
|
|
|
uiCfg.curTempType = 0;
|
|
|
|
lv_clear_printing();
|
|
|
|
lv_draw_preHeat();
|
|
|
|
break;
|
|
|
|
case ID_TEMP_BED:
|
|
|
|
uiCfg.curTempType = 1;
|
|
|
|
lv_clear_printing();
|
|
|
|
lv_draw_preHeat();
|
|
|
|
break;
|
|
|
|
case ID_BABYSTEP:
|
|
|
|
lv_clear_printing();
|
|
|
|
lv_draw_baby_stepping();
|
|
|
|
break;
|
|
|
|
case ID_FAN:
|
|
|
|
lv_clear_printing();
|
|
|
|
lv_draw_fan();
|
|
|
|
break;
|
2020-06-16 02:05:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-14 06:23:56 +00:00
|
|
|
void lv_draw_printing() {
|
2020-06-16 02:05:33 +00:00
|
|
|
disp_state_stack._disp_index = 0;
|
|
|
|
ZERO(disp_state_stack._disp_state);
|
2020-10-24 22:28:31 +00:00
|
|
|
scr = lv_screen_create(PRINTING_UI);
|
2020-06-16 02:05:33 +00:00
|
|
|
|
2020-09-21 01:55:02 +00:00
|
|
|
// Create image buttons
|
2021-03-29 08:19:38 +00:00
|
|
|
buttonExt1 = lv_imgbtn_create(scr, "F:/bmp_ext1_state.bin", 206, 136, event_handler, ID_TEMP_EXT);
|
2020-10-23 01:22:17 +00:00
|
|
|
|
2020-09-21 01:55:02 +00:00
|
|
|
#if HAS_MULTI_EXTRUDER
|
2021-03-29 08:19:38 +00:00
|
|
|
buttonExt2 = lv_imgbtn_create(scr, "F:/bmp_ext2_state.bin", 350, 136, event_handler, ID_TEMP_EXT);
|
2020-09-21 01:55:02 +00:00
|
|
|
#endif
|
2020-10-23 01:22:17 +00:00
|
|
|
|
2020-06-16 02:05:33 +00:00
|
|
|
#if HAS_HEATED_BED
|
2021-03-29 08:19:38 +00:00
|
|
|
buttonBedstate = lv_imgbtn_create(scr, "F:/bmp_bed_state.bin", 206, 186, event_handler, ID_TEMP_BED);
|
2020-06-16 02:05:33 +00:00
|
|
|
#endif
|
2020-09-21 01:55:02 +00:00
|
|
|
|
2021-03-29 08:19:38 +00:00
|
|
|
buttonFanstate = lv_imgbtn_create(scr, "F:/bmp_fan_state.bin", 350, 186, event_handler, ID_FAN);
|
2020-07-25 05:52:07 +00:00
|
|
|
|
2020-10-24 04:37:45 +00:00
|
|
|
lv_obj_t *buttonTime = lv_img_create(scr, nullptr);
|
2020-10-23 01:22:17 +00:00
|
|
|
lv_img_set_src(buttonTime, "F:/bmp_time_state.bin");
|
2021-03-29 08:19:38 +00:00
|
|
|
lv_obj_set_pos(buttonTime, 206, 86);
|
2020-07-25 05:52:07 +00:00
|
|
|
|
2021-03-29 08:19:38 +00:00
|
|
|
buttonZpos = lv_imgbtn_create(scr, "F:/bmp_zpos_state.bin", 350, 86, event_handler, ID_BABYSTEP);
|
2020-09-21 01:55:02 +00:00
|
|
|
|
2020-10-23 01:22:17 +00:00
|
|
|
buttonPause = lv_imgbtn_create(scr, uiCfg.print_state == WORKING ? "F:/bmp_pause.bin" : "F:/bmp_resume.bin", 5, 240, event_handler, ID_PAUSE);
|
|
|
|
buttonStop = lv_imgbtn_create(scr, "F:/bmp_stop.bin", 165, 240, event_handler, ID_STOP);
|
|
|
|
buttonOperat = lv_imgbtn_create(scr, "F:/bmp_operate.bin", 325, 240, event_handler, ID_OPTION);
|
2020-06-16 02:05:33 +00:00
|
|
|
|
2020-09-21 01:55:02 +00:00
|
|
|
#if HAS_ROTARY_ENCODER
|
|
|
|
if (gCfgItems.encoder_enable) {
|
|
|
|
lv_group_add_obj(g, buttonPause);
|
|
|
|
lv_group_add_obj(g, buttonStop);
|
|
|
|
lv_group_add_obj(g, buttonOperat);
|
2021-03-29 08:19:38 +00:00
|
|
|
lv_group_add_obj(g, buttonPause);
|
|
|
|
lv_group_add_obj(g, buttonPause);
|
|
|
|
lv_group_add_obj(g, buttonPause);
|
2020-09-21 01:55:02 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-10-24 04:37:45 +00:00
|
|
|
labelExt1 = lv_label_create(scr, 250, 146, nullptr);
|
2020-06-16 02:05:33 +00:00
|
|
|
|
2020-09-20 23:29:08 +00:00
|
|
|
#if HAS_MULTI_EXTRUDER
|
2020-10-24 04:37:45 +00:00
|
|
|
labelExt2 = lv_label_create(scr, 395, 146, nullptr);
|
2020-09-20 23:29:08 +00:00
|
|
|
#endif
|
2020-06-16 02:05:33 +00:00
|
|
|
|
|
|
|
#if HAS_HEATED_BED
|
2020-10-24 04:37:45 +00:00
|
|
|
labelBed = lv_label_create(scr, 250, 196, nullptr);
|
2020-06-16 02:05:33 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-24 04:37:45 +00:00
|
|
|
labelFan = lv_label_create(scr, 395, 196, nullptr);
|
|
|
|
labelTime = lv_label_create(scr, 250, 96, nullptr);
|
|
|
|
labelZpos = lv_label_create(scr, 395, 96, nullptr);
|
2020-09-21 01:55:02 +00:00
|
|
|
|
2020-10-23 01:22:17 +00:00
|
|
|
labelPause = lv_label_create_empty(buttonPause);
|
|
|
|
labelStop = lv_label_create_empty(buttonStop);
|
|
|
|
labelOperat = lv_label_create_empty(buttonOperat);
|
2020-06-16 02:05:33 +00:00
|
|
|
|
2020-10-21 17:45:27 +00:00
|
|
|
if (gCfgItems.multiple_language) {
|
2020-09-21 01:55:02 +00:00
|
|
|
lv_label_set_text(labelPause, uiCfg.print_state == WORKING ? printing_menu.pause : printing_menu.resume);
|
2020-07-01 06:30:24 +00:00
|
|
|
lv_obj_align(labelPause, buttonPause, LV_ALIGN_CENTER, 20, 0);
|
2020-06-16 02:05:33 +00:00
|
|
|
|
|
|
|
lv_label_set_text(labelStop, printing_menu.stop);
|
2020-07-01 06:30:24 +00:00
|
|
|
lv_obj_align(labelStop, buttonStop, LV_ALIGN_CENTER, 20, 0);
|
2020-06-16 02:05:33 +00:00
|
|
|
|
|
|
|
lv_label_set_text(labelOperat, printing_menu.option);
|
2020-07-01 06:30:24 +00:00
|
|
|
lv_obj_align(labelOperat, buttonOperat, LV_ALIGN_CENTER, 20, 0);
|
2020-06-16 02:05:33 +00:00
|
|
|
}
|
|
|
|
|
2020-10-24 04:37:45 +00:00
|
|
|
bar1 = lv_bar_create(scr, nullptr);
|
2020-06-16 02:05:33 +00:00
|
|
|
lv_obj_set_pos(bar1, 205, 36);
|
|
|
|
lv_obj_set_size(bar1, 270, 40);
|
|
|
|
lv_bar_set_style(bar1, LV_BAR_STYLE_INDIC, &lv_bar_style_indic);
|
|
|
|
lv_bar_set_anim_time(bar1, 1000);
|
|
|
|
lv_bar_set_value(bar1, 0, LV_ANIM_ON);
|
2020-10-23 01:22:17 +00:00
|
|
|
bar1ValueText = lv_label_create_empty(bar1);
|
2020-09-21 01:55:02 +00:00
|
|
|
lv_label_set_text(bar1ValueText,"0%");
|
|
|
|
lv_obj_align(bar1ValueText, bar1, LV_ALIGN_CENTER, 0, 0);
|
2020-06-16 02:05:33 +00:00
|
|
|
|
|
|
|
disp_ext_temp();
|
|
|
|
disp_bed_temp();
|
|
|
|
disp_fan_speed();
|
|
|
|
disp_print_time();
|
|
|
|
disp_fan_Zpos();
|
|
|
|
}
|
|
|
|
|
|
|
|
void disp_ext_temp() {
|
2021-04-06 01:55:00 +00:00
|
|
|
sprintf(public_buf_l, printing_menu.temp1, (int)thermalManager.degHotend(0), (int)thermalManager.degTargetHotend(0));
|
2020-06-16 02:05:33 +00:00
|
|
|
lv_label_set_text(labelExt1, public_buf_l);
|
|
|
|
|
2020-09-20 23:29:08 +00:00
|
|
|
#if HAS_MULTI_EXTRUDER
|
2021-04-06 01:55:00 +00:00
|
|
|
sprintf(public_buf_l, printing_menu.temp1, (int)thermalManager.degHotend(1), (int)thermalManager.degTargetHotend(1));
|
2020-06-16 02:05:33 +00:00
|
|
|
lv_label_set_text(labelExt2, public_buf_l);
|
2020-09-20 23:29:08 +00:00
|
|
|
#endif
|
2020-06-16 02:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void disp_bed_temp() {
|
|
|
|
#if HAS_HEATED_BED
|
2021-04-06 01:55:00 +00:00
|
|
|
sprintf(public_buf_l, printing_menu.bed_temp, (int)thermalManager.degBed(), (int)thermalManager.degTargetBed());
|
2020-06-16 02:05:33 +00:00
|
|
|
lv_label_set_text(labelBed, public_buf_l);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void disp_fan_speed() {
|
2021-04-24 00:06:55 +00:00
|
|
|
sprintf_P(public_buf_l, PSTR("%d%%"), (int)thermalManager.fanSpeedPercent(0));
|
2020-06-16 02:05:33 +00:00
|
|
|
lv_label_set_text(labelFan, public_buf_l);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disp_print_time() {
|
2020-06-16 19:33:17 +00:00
|
|
|
#if BOTH(LCD_SET_PROGRESS_MANUALLY, USE_M73_REMAINING_TIME)
|
|
|
|
const uint32_t r = ui.get_remaining_time();
|
2020-07-25 05:52:07 +00:00
|
|
|
sprintf_P(public_buf_l, PSTR("%02d:%02d R"), r / 3600, (r % 3600) / 60);
|
2020-06-16 19:33:17 +00:00
|
|
|
#else
|
2020-07-25 05:52:07 +00:00
|
|
|
sprintf_P(public_buf_l, PSTR("%d%d:%d%d:%d%d"), print_time.hours / 10, print_time.hours % 10, print_time.minutes / 10, print_time.minutes % 10, print_time.seconds / 10, print_time.seconds % 10);
|
2020-06-16 19:33:17 +00:00
|
|
|
#endif
|
2020-06-16 02:05:33 +00:00
|
|
|
lv_label_set_text(labelTime, public_buf_l);
|
|
|
|
}
|
|
|
|
|
|
|
|
void disp_fan_Zpos() {
|
2021-04-13 04:40:32 +00:00
|
|
|
dtostrf(current_position.z, 1, 3, public_buf_l);
|
2020-06-16 02:05:33 +00:00
|
|
|
lv_label_set_text(labelZpos, public_buf_l);
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset_print_time() {
|
2020-07-25 05:52:07 +00:00
|
|
|
print_time.hours = 0;
|
2020-06-16 02:05:33 +00:00
|
|
|
print_time.minutes = 0;
|
|
|
|
print_time.seconds = 0;
|
2020-07-25 05:52:07 +00:00
|
|
|
print_time.ms_10 = 0;
|
2020-06-16 02:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void start_print_time() { print_time.start = 1; }
|
|
|
|
|
|
|
|
void stop_print_time() { print_time.start = 0; }
|
|
|
|
|
|
|
|
void setProBarRate() {
|
|
|
|
int rate;
|
|
|
|
volatile long long rate_tmp_r;
|
|
|
|
|
2020-10-21 17:45:27 +00:00
|
|
|
if (!gCfgItems.from_flash_pic) {
|
2020-06-16 02:05:33 +00:00
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
rate_tmp_r = (long long)card.getIndex() * 100;
|
|
|
|
#endif
|
|
|
|
rate = rate_tmp_r / gCfgItems.curFilesize;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
#if ENABLED(SDSUPPORT)
|
|
|
|
rate_tmp_r = (long long)card.getIndex();
|
|
|
|
#endif
|
|
|
|
rate = (rate_tmp_r - (PREVIEW_SIZE + To_pre_view)) * 100 / (gCfgItems.curFilesize - (PREVIEW_SIZE + To_pre_view));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rate <= 0) return;
|
|
|
|
|
|
|
|
if (disp_state == PRINTING_UI) {
|
|
|
|
lv_bar_set_value(bar1, rate, LV_ANIM_ON);
|
2020-09-21 01:55:02 +00:00
|
|
|
sprintf_P(public_buf_l, "%d%%", rate);
|
|
|
|
lv_label_set_text(bar1ValueText,public_buf_l);
|
|
|
|
lv_obj_align(bar1ValueText, bar1, LV_ALIGN_CENTER, 0, 0);
|
2020-06-16 02:05:33 +00:00
|
|
|
|
|
|
|
if (marlin_state == MF_SD_COMPLETE) {
|
|
|
|
if (once_flag == 0) {
|
|
|
|
stop_print_time();
|
|
|
|
|
2020-10-21 17:45:27 +00:00
|
|
|
flash_preview_begin = false;
|
|
|
|
default_preview_flg = false;
|
2020-06-16 02:05:33 +00:00
|
|
|
lv_clear_printing();
|
|
|
|
lv_draw_dialog(DIALOG_TYPE_FINISH_PRINT);
|
|
|
|
|
2020-10-21 17:45:27 +00:00
|
|
|
once_flag = true;
|
2020-06-16 02:05:33 +00:00
|
|
|
|
|
|
|
#if HAS_SUICIDE
|
2020-10-21 17:45:27 +00:00
|
|
|
if (gCfgItems.finish_power_off) {
|
2020-09-21 01:55:02 +00:00
|
|
|
gcode.process_subcommands_now_P(PSTR("M1001"));
|
|
|
|
queue.inject_P(PSTR("M81"));
|
|
|
|
marlin_state = MF_RUNNING;
|
|
|
|
}
|
2020-06-16 02:05:33 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-21 01:55:02 +00:00
|
|
|
void lv_clear_printing() {
|
|
|
|
#if HAS_ROTARY_ENCODER
|
|
|
|
if (gCfgItems.encoder_enable) lv_group_remove_all_objs(g);
|
|
|
|
#endif
|
|
|
|
lv_obj_del(scr);
|
|
|
|
}
|
2020-06-16 02:05:33 +00:00
|
|
|
|
2020-07-25 05:52:07 +00:00
|
|
|
#endif // HAS_TFT_LVGL_UI
|